diff --git a/01_Getting_&_Knowing_Your_Data/Chipotle/Exercise_with_Solutions.ipynb b/01_Getting_&_Knowing_Your_Data/Chipotle/Exercise_with_Solutions.ipynb index 32d1e7df8..3f4dcff3e 100644 --- a/01_Getting_&_Knowing_Your_Data/Chipotle/Exercise_with_Solutions.ipynb +++ b/01_Getting_&_Knowing_Your_Data/Chipotle/Exercise_with_Solutions.ipynb @@ -610,11 +610,23 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 1, "metadata": { "collapsed": true }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'chipo' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32md:\\pandas_exercises\\01_Getting_&_Knowing_Your_Data\\Chipotle\\Exercise_with_Solutions.ipynb Cell 30'\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m dollarizer \u001b[39m=\u001b[39m \u001b[39mlambda\u001b[39;00m x: \u001b[39mfloat\u001b[39m(x[\u001b[39m1\u001b[39m:\u001b[39m-\u001b[39m\u001b[39m1\u001b[39m])\n\u001b[1;32m----> 2\u001b[0m chipo\u001b[39m.\u001b[39mitem_price \u001b[39m=\u001b[39m chipo\u001b[39m.\u001b[39mitem_price\u001b[39m.\u001b[39mapply(dollarizer)\n", + "\u001b[1;31mNameError\u001b[0m: name 'chipo' is not defined" + ] + } + ], "source": [ "dollarizer = lambda x: float(x[1:-1])\n", "chipo.item_price = chipo.item_price.apply(dollarizer)" @@ -796,22 +808,25 @@ ], "metadata": { "anaconda-cloud": {}, + "interpreter": { + "hash": "d2c53a8514c79cc148d46934bc8b056e82de35c7c8040deceb29a5f5195a57bb" + }, "kernelspec": { "display_name": "Python [default]", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.12" + "pygments_lexer": "ipython3", + "version": "3.10.2" } }, "nbformat": 4, diff --git a/01_Getting_&_Knowing_Your_Data/Chipotle/Exercises.ipynb b/01_Getting_&_Knowing_Your_Data/Chipotle/Exercises.ipynb index 03e1fc603..3faec6a5b 100644 --- a/01_Getting_&_Knowing_Your_Data/Chipotle/Exercises.ipynb +++ b/01_Getting_&_Knowing_Your_Data/Chipotle/Exercises.ipynb @@ -19,12 +19,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [], - "source": [] + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] }, { "cell_type": "markdown", @@ -42,12 +45,49 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " order_id quantity item_name \\\n", + "0 1 1 Chips and Fresh Tomato Salsa \n", + "1 1 1 Izze \n", + "2 1 1 Nantucket Nectar \n", + "3 1 1 Chips and Tomatillo-Green Chili Salsa \n", + "4 2 2 Chicken Bowl \n", + "... ... ... ... \n", + "4617 1833 1 Steak Burrito \n", + "4618 1833 1 Steak Burrito \n", + "4619 1834 1 Chicken Salad Bowl \n", + "4620 1834 1 Chicken Salad Bowl \n", + "4621 1834 1 Chicken Salad Bowl \n", + "\n", + " choice_description item_price \n", + "0 NaN $2.39 \n", + "1 [Clementine] $3.39 \n", + "2 [Apple] $3.39 \n", + "3 NaN $2.39 \n", + "4 [Tomatillo-Red Chili Salsa (Hot), [Black Beans... $16.98 \n", + "... ... ... \n", + "4617 [Fresh Tomato Salsa, [Rice, Black Beans, Sour ... $11.75 \n", + "4618 [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese... $11.75 \n", + "4619 [Fresh Tomato Salsa, [Fajita Vegetables, Pinto... $11.25 \n", + "4620 [Fresh Tomato Salsa, [Fajita Vegetables, Lettu... $8.75 \n", + "4621 [Fresh Tomato Salsa, [Fajita Vegetables, Pinto... $8.75 \n", + "\n", + "[4622 rows x 5 columns]\n" + ] + } + ], + "source": [ + "chipo = pd.read_csv(\"chipotle.tsv\", sep='\\t')\n", + "print(chipo)" + ] }, { "cell_type": "markdown", @@ -58,13 +98,159 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": { "collapsed": false, "scrolled": false }, - "outputs": [], - "source": [] + "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", + "
order_idquantityitem_namechoice_descriptionitem_price
011Chips and Fresh Tomato SalsaNaN$2.39
111Izze[Clementine]$3.39
211Nantucket Nectar[Apple]$3.39
311Chips and Tomatillo-Green Chili SalsaNaN$2.39
422Chicken Bowl[Tomatillo-Red Chili Salsa (Hot), [Black Beans...$16.98
531Chicken Bowl[Fresh Tomato Salsa (Mild), [Rice, Cheese, Sou...$10.98
631Side of ChipsNaN$1.69
741Steak Burrito[Tomatillo Red Chili Salsa, [Fajita Vegetables...$11.75
841Steak Soft Tacos[Tomatillo Green Chili Salsa, [Pinto Beans, Ch...$9.25
951Steak Burrito[Fresh Tomato Salsa, [Rice, Black Beans, Pinto...$9.25
\n", + "
" + ], + "text/plain": [ + " order_id quantity item_name \\\n", + "0 1 1 Chips and Fresh Tomato Salsa \n", + "1 1 1 Izze \n", + "2 1 1 Nantucket Nectar \n", + "3 1 1 Chips and Tomatillo-Green Chili Salsa \n", + "4 2 2 Chicken Bowl \n", + "5 3 1 Chicken Bowl \n", + "6 3 1 Side of Chips \n", + "7 4 1 Steak Burrito \n", + "8 4 1 Steak Soft Tacos \n", + "9 5 1 Steak Burrito \n", + "\n", + " choice_description item_price \n", + "0 NaN $2.39 \n", + "1 [Clementine] $3.39 \n", + "2 [Apple] $3.39 \n", + "3 NaN $2.39 \n", + "4 [Tomatillo-Red Chili Salsa (Hot), [Black Beans... $16.98 \n", + "5 [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sou... $10.98 \n", + "6 NaN $1.69 \n", + "7 [Tomatillo Red Chili Salsa, [Fajita Vegetables... $11.75 \n", + "8 [Tomatillo Green Chili Salsa, [Pinto Beans, Ch... $9.25 \n", + "9 [Fresh Tomato Salsa, [Rice, Black Beans, Pinto... $9.25 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.head(10)" + ] }, { "cell_type": "markdown", @@ -75,26 +261,64 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": { "collapsed": false }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(4622, 5)\n" + ] + }, + { + "data": { + "text/plain": [ + "4622" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Solution 1\n", - "\n" + "print(chipo.shape)\n", + "chipo.shape[0] # the 0th index of chipo.shape is the row.\n" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 6, "metadata": { "collapsed": false }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 4622 entries, 0 to 4621\n", + "Data columns (total 5 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 order_id 4622 non-null int64 \n", + " 1 quantity 4622 non-null int64 \n", + " 2 item_name 4622 non-null object\n", + " 3 choice_description 3376 non-null object\n", + " 4 item_price 4622 non-null object\n", + "dtypes: int64(2), object(3)\n", + "memory usage: 180.7+ KB\n" + ] + } + ], "source": [ "# Solution 2\n", - "\n" + "chipo.info() # get info\n" ] }, { @@ -106,12 +330,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "5" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.shape[1] # print the 1st index of shape, which is the number of columns" + ] }, { "cell_type": "markdown", @@ -122,12 +359,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['order_id', 'quantity', 'item_name', 'choice_description',\n", + " 'item_price'],\n", + " dtype='object')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.columns" + ] }, { "cell_type": "markdown", @@ -138,12 +390,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "RangeIndex(start=0, stop=4622, step=1)" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.index" + ] }, { "cell_type": "markdown", @@ -154,12 +419,68 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "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", + "
order_idquantity
item_name
Chicken Bowl713926761
\n", + "
" + ], + "text/plain": [ + " order_id quantity\n", + "item_name \n", + "Chicken Bowl 713926 761" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m = chipo.groupby('item_name') # fetch only item_name and group them for every item\n", + "m = m.sum() # sum each group\n", + "m = m.sort_values(['quantity'], ascending=False) # set the m with descending order so the most ordered will be on top\n", + "m.head(1) # fetch the 1st row (the most ordered items)" + ] }, { "cell_type": "markdown", @@ -170,12 +491,68 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "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", + "
order_idquantity
item_name
Chicken Bowl713926761
\n", + "
" + ], + "text/plain": [ + " order_id quantity\n", + "item_name \n", + "Chicken Bowl 713926 761" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m = chipo.groupby('item_name') # fetch only item_name and group them for every item\n", + "m = m.sum() # sum each group\n", + "m = m.sort_values(['quantity'], ascending=False) # set the m with descending order so the most ordered will be on top\n", + "m.head(1) # fetch the 1st row (the most ordered items)" + ] }, { "cell_type": "markdown", @@ -186,12 +563,66 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "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", + "
order_idquantity
choice_description
[Diet Coke]123455159
\n", + "
" + ], + "text/plain": [ + " order_id quantity\n", + "choice_description \n", + "[Diet Coke] 123455 159" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "c = chipo.groupby('choice_description').sum().sort_values(['quantity'], ascending=False).head(1)\n", + "c" + ] }, { "cell_type": "markdown", @@ -202,12 +633,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "4972" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "total_items_ordered = chipo.quantity.sum() # sum all the values in the 'quantity' column\n", + "total_items_ordered" + ] }, { "cell_type": "markdown", @@ -216,6 +661,24 @@ "### Step 13. Turn the item price into a float" ] }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4972.0\n" + ] + } + ], + "source": [ + "float_total_items_ordered = float(total_items_ordered)\n", + "print(float_total_items_ordered)" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -225,12 +688,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "dtype('O')" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.item_price.dtype" + ] }, { "cell_type": "markdown", @@ -241,12 +717,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": { "collapsed": true }, "outputs": [], - "source": [] + "source": [ + "pryce = lambda x: float(x[1:-1])\n", + "chipo.item_price = chipo.item_price.apply(pryce)" + ] }, { "cell_type": "markdown", @@ -257,12 +736,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "dtype('float64')" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.item_price.dtype" + ] }, { "cell_type": "markdown", @@ -273,12 +765,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Revenue was: $39237.02\n" + ] + } + ], + "source": [ + "revenue = ((chipo.quantity)*chipo.item_price).sum()\n", + "# other way: (chipo['quantity']*chipo['item_price']).sum()\n", + "print(\"Revenue was: $\" + str(np.round_(revenue,2))) # convert `revenue` to string & add 2 digits behind the comma.\n", + "# other way: print(\"Revenue was: $\" + str(np.round(revenue,2)))" + ] }, { "cell_type": "markdown", @@ -289,12 +794,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "1834" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "oo = chipo.order_id.value_counts() # count values from each order_id.\n", + "o = oo.count()\n", + "o" + ] }, { "cell_type": "markdown", @@ -305,26 +825,50 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 33, "metadata": { "collapsed": false }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "21.39423118865867" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Solution 1\n", - "\n" + "chipo['revenue'] = chipo['quantity']*chipo['item_price'] # calculate each revenue for each item\n", + "order_grouped = chipo.groupby(by=['order_id']).sum() # group chipo by the order_id & then sum each of them\n", + "order_grouped.mean()['revenue']" ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 34, "metadata": { "collapsed": false }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "21.39423118865867" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Solution 2\n", - "\n" + "chipo.groupby(by=['order_id']).sum().mean()['revenue']" ] }, { @@ -336,32 +880,48 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 39, "metadata": { "collapsed": false }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "50" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chipo.item_name.value_counts().count() # count different value on `item_name`" + ] } ], "metadata": { "anaconda-cloud": {}, + "interpreter": { + "hash": "d2c53a8514c79cc148d46934bc8b056e82de35c7c8040deceb29a5f5195a57bb" + }, "kernelspec": { "display_name": "Python [default]", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.12" + "pygments_lexer": "ipython3", + "version": "3.10.2" } }, "nbformat": 4, diff --git a/01_Getting_&_Knowing_Your_Data/Chipotle/Solutions.ipynb b/01_Getting_&_Knowing_Your_Data/Chipotle/Solutions.ipynb index b497173bf..5fd40304a 100644 --- a/01_Getting_&_Knowing_Your_Data/Chipotle/Solutions.ipynb +++ b/01_Getting_&_Knowing_Your_Data/Chipotle/Solutions.ipynb @@ -21,12 +21,15 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [], - "source": [] + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] }, { "cell_type": "markdown", @@ -35,6 +38,182 @@ "### Step 2. Import the dataset from this [address](https://raw.githubusercontent.com/justmarkham/DAT8/master/data/chipotle.tsv). " ] }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\rosat\\AppData\\Roaming\\Python\\Python310\\site-packages\\IPython\\core\\interactiveshell.py:3251: FutureWarning: In a future version of pandas all arguments of read_csv except for the argument 'filepath_or_buffer' will be keyword-only.\n", + " exec(code_obj, self.user_global_ns, self.user_ns)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
order_idquantityitem_namechoice_descriptionitem_price
011Chips and Fresh Tomato SalsaNaN$2.39
111Izze[Clementine]$3.39
211Nantucket Nectar[Apple]$3.39
311Chips and Tomatillo-Green Chili SalsaNaN$2.39
422Chicken Bowl[Tomatillo-Red Chili Salsa (Hot), [Black Beans...$16.98
..................
461718331Steak Burrito[Fresh Tomato Salsa, [Rice, Black Beans, Sour ...$11.75
461818331Steak Burrito[Fresh Tomato Salsa, [Rice, Sour Cream, Cheese...$11.75
461918341Chicken Salad Bowl[Fresh Tomato Salsa, [Fajita Vegetables, Pinto...$11.25
462018341Chicken Salad Bowl[Fresh Tomato Salsa, [Fajita Vegetables, Lettu...$8.75
462118341Chicken Salad Bowl[Fresh Tomato Salsa, [Fajita Vegetables, Pinto...$8.75
\n", + "

4622 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " order_id quantity item_name \\\n", + "0 1 1 Chips and Fresh Tomato Salsa \n", + "1 1 1 Izze \n", + "2 1 1 Nantucket Nectar \n", + "3 1 1 Chips and Tomatillo-Green Chili Salsa \n", + "4 2 2 Chicken Bowl \n", + "... ... ... ... \n", + "4617 1833 1 Steak Burrito \n", + "4618 1833 1 Steak Burrito \n", + "4619 1834 1 Chicken Salad Bowl \n", + "4620 1834 1 Chicken Salad Bowl \n", + "4621 1834 1 Chicken Salad Bowl \n", + "\n", + " choice_description item_price \n", + "0 NaN $2.39 \n", + "1 [Clementine] $3.39 \n", + "2 [Apple] $3.39 \n", + "3 NaN $2.39 \n", + "4 [Tomatillo-Red Chili Salsa (Hot), [Black Beans... $16.98 \n", + "... ... ... \n", + "4617 [Fresh Tomato Salsa, [Rice, Black Beans, Sour ... $11.75 \n", + "4618 [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese... $11.75 \n", + "4619 [Fresh Tomato Salsa, [Fajita Vegetables, Pinto... $11.25 \n", + "4620 [Fresh Tomato Salsa, [Fajita Vegetables, Lettu... $8.75 \n", + "4621 [Fresh Tomato Salsa, [Fajita Vegetables, Pinto... $8.75 \n", + "\n", + "[4622 rows x 5 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/chipotle.tsv'\n", + "df = pd.read_csv(url, \"\\t\")\n", + "df" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -44,12 +223,14 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 6, "metadata": { "collapsed": false }, "outputs": [], - "source": [] + "source": [ + "chipo = df" + ] }, { "cell_type": "markdown", @@ -197,7 +378,9 @@ "output_type": "execute_result" } ], - "source": [] + "source": [ + "chipo.head(10)" + ] }, { "cell_type": "markdown", @@ -208,54 +391,56 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 7, "metadata": { "collapsed": false }, "outputs": [ { - "data": { - "text/plain": [ - "4622" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 4622 entries, 0 to 4621\n", + "Data columns (total 5 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 order_id 4622 non-null int64 \n", + " 1 quantity 4622 non-null int64 \n", + " 2 item_name 4622 non-null object\n", + " 3 choice_description 3376 non-null object\n", + " 4 item_price 4622 non-null object\n", + "dtypes: int64(2), object(3)\n", + "memory usage: 180.7+ KB\n" + ] } ], "source": [ "# Solution 1\n", - "\n" + "chipo.info()\n" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 9, "metadata": { "collapsed": false }, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "RangeIndex: 4622 entries, 0 to 4621\n", - "Data columns (total 5 columns):\n", - "order_id 4622 non-null int64\n", - "quantity 4622 non-null int64\n", - "item_name 4622 non-null object\n", - "choice_description 3376 non-null object\n", - "item_price 4622 non-null object\n", - "dtypes: int64(2), object(3)\n", - "memory usage: 180.6+ KB\n" - ] + "data": { + "text/plain": [ + "(4622, 5)" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ "# Solution 2\n", - "\n" + "chipo.shape # will tell us the size of the matrix `chipo`, which is 4622x5\n" ] }, { @@ -741,22 +926,25 @@ ], "metadata": { "anaconda-cloud": {}, + "interpreter": { + "hash": "d2c53a8514c79cc148d46934bc8b056e82de35c7c8040deceb29a5f5195a57bb" + }, "kernelspec": { "display_name": "Python [default]", "language": "python", - "name": "python2" + "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", - "version": 2 + "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.12" + "pygments_lexer": "ipython3", + "version": "3.10.2" } }, "nbformat": 4, diff --git a/01_Getting_&_Knowing_Your_Data/Chipotle/chipotle.tsv b/01_Getting_&_Knowing_Your_Data/Chipotle/chipotle.tsv new file mode 100644 index 000000000..1ba6958ff --- /dev/null +++ b/01_Getting_&_Knowing_Your_Data/Chipotle/chipotle.tsv @@ -0,0 +1,4623 @@ +order_id quantity item_name choice_description item_price +1 1 Chips and Fresh Tomato Salsa NULL $2.39 +1 1 Izze [Clementine] $3.39 +1 1 Nantucket Nectar [Apple] $3.39 +1 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +2 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $16.98 +3 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +3 1 Side of Chips NULL $1.69 +4 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +4 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +5 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +5 1 Chips and Guacamole NULL $4.45 +6 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +6 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +7 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +7 1 Chips and Guacamole NULL $4.45 +8 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +8 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Cheese, Sour Cream]] $8.49 +9 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +9 2 Canned Soda [Sprite] $2.18 +10 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +10 1 Chips and Guacamole NULL $4.45 +11 1 Barbacoa Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +11 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +12 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +12 1 Izze [Grapefruit] $3.39 +13 1 Chips and Fresh Tomato Salsa NULL $2.39 +13 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +14 1 Carnitas Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Sour Cream, Lettuce]] $8.99 +14 1 Canned Soda [Dr. Pepper] $1.09 +15 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +15 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +16 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Sour Cream]] $8.99 +16 1 Side of Chips NULL $1.69 +17 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +17 1 Bottled Water NULL $1.09 +18 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, Rice] $8.75 +18 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +18 1 Chips and Guacamole NULL $4.45 +18 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +19 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +19 1 Chips NULL $2.15 +20 1 Chips and Guacamole NULL $4.45 +20 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +20 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +20 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +21 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +21 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese]] $8.99 +21 1 Izze [Blackberry] $3.39 +22 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +22 1 Chips and Guacamole NULL $3.99 +23 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +23 2 Canned Soda [Mountain Dew] $2.18 +24 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +24 1 Canned Soda [Sprite] $1.09 +25 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +25 1 Chips and Fresh Tomato Salsa NULL $2.39 +26 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Lettuce]] $9.25 +26 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +27 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +27 1 Chips NULL $2.15 +28 1 Chips and Guacamole NULL $4.45 +28 1 Steak Soft Tacos [Fresh Tomato Salsa, Cheese] $9.25 +28 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +28 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +29 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +29 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +30 1 Izze [Blackberry] $3.39 +30 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese]] $8.99 +30 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +31 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +31 1 Side of Chips NULL $1.69 +32 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +32 1 Chips and Guacamole NULL $3.99 +33 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +33 1 Chips and Guacamole NULL $4.45 +34 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +34 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +34 1 Chips NULL $2.15 +34 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +35 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +35 1 Chips NULL $2.15 +36 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +36 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +37 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +37 1 Steak Soft Tacos [Tomatillo Red Chili Salsa] $9.25 +38 1 Veggie Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +38 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +38 1 Bottled Water NULL $1.09 +39 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +39 1 Chips and Fresh Tomato Salsa NULL $2.95 +40 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +40 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole]] $11.75 +40 1 Steak Crispy Tacos [Fresh Tomato Salsa, Sour Cream] $9.25 +41 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Sour Cream, Guacamole]] $11.75 +41 1 Chips and Guacamole NULL $4.45 +42 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +42 1 Chips and Guacamole NULL $4.45 +43 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +43 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +44 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Lettuce]] $8.75 +44 1 Chips and Guacamole NULL $4.45 +45 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +45 1 Steak Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +45 1 Chips and Guacamole NULL $3.99 +46 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +46 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +47 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies, Sour Cream]] $8.99 +47 1 Canned Soda [Dr. Pepper] $1.09 +48 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +48 1 Chips and Guacamole NULL $4.45 +49 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +49 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +49 1 Chips and Guacamole NULL $4.45 +50 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +50 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +51 1 Barbacoa Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +51 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Cheese, Lettuce]] $8.49 +51 1 Canned Soda [Diet Dr. Pepper] $1.09 +52 1 Steak Soft Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream, Lettuce]] $8.99 +52 1 Chips and Guacamole NULL $3.99 +53 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +53 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +53 1 Chips and Guacamole NULL $4.45 +54 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Sour Cream, Fajita Vegetables, Rice]] $11.25 +54 1 Chips and Guacamole NULL $4.45 +55 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies, Sour Cream]] $8.99 +55 1 Canned Soda [Coca Cola] $1.09 +56 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +56 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +56 1 Chips and Guacamole NULL $4.45 +57 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +57 1 Chips and Guacamole NULL $4.45 +58 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +58 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +59 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $10.98 +60 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $22.50 +61 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +61 1 Chips and Guacamole NULL $4.45 +62 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +62 1 Chips and Guacamole NULL $4.45 +63 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +63 1 Chips and Guacamole NULL $4.45 +64 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +64 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +65 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.75 +65 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +65 1 Chips and Guacamole NULL $4.45 +66 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +67 2 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $17.98 +67 1 Side of Chips NULL $1.69 +68 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $17.50 +68 1 Chips and Guacamole NULL $4.45 +69 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +69 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +70 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +70 1 Chips and Guacamole NULL $4.45 +71 1 Chips and Guacamole NULL $4.45 +71 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +71 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +72 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +73 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +73 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +73 2 Canned Soda [Diet Coke] $2.18 +74 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +74 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +74 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +75 1 Chips and Guacamole NULL $4.45 +75 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +75 1 Barbacoa Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +75 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +76 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +76 2 Canned Soda [Diet Dr. Pepper] $2.18 +77 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +77 1 Nantucket Nectar [Apple] $3.39 +78 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), Lettuce] $8.49 +78 1 Steak Soft Tacos [Roasted Chili Corn Salsa (Medium), Lettuce] $8.99 +79 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +80 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +81 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +81 1 Canned Soda [Coca Cola] $1.09 +81 1 Canned Soda [Dr. Pepper] $1.09 +82 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +82 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +82 1 Chips and Fresh Tomato Salsa NULL $2.95 +83 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +83 1 Chips and Guacamole NULL $4.45 +83 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +84 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Guacamole, Lettuce]] $11.48 +84 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +84 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +85 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Fajita Veggies, Cheese, Lettuce, Sour Cream, Rice]] $8.99 +85 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +86 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +86 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +86 1 Chips and Fresh Tomato Salsa NULL $2.95 +87 1 Canned Soda [Coca Cola] $1.09 +87 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +88 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +88 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +89 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +89 1 Canned Soda [Diet Coke] $1.09 +89 1 Chips and Guacamole NULL $3.99 +90 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +90 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +91 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +91 1 Nantucket Nectar [Peach Orange] $3.39 +92 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +92 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +92 1 Chips NULL $2.15 +93 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +93 1 Chips and Guacamole NULL $4.45 +94 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole]] $22.50 +95 1 Chips and Guacamole NULL $4.45 +95 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +96 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +96 2 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Lettuce]] $17.50 +96 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +97 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +97 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +97 1 Chips NULL $2.15 +98 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +98 2 Chips NULL $4.30 +98 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +99 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +99 1 Chips NULL $2.15 +100 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +100 1 Canned Soda [Mountain Dew] $1.09 +101 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +101 1 Chips and Guacamole NULL $3.99 +102 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +102 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +102 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +103 2 Chips and Tomatillo Green Chili Salsa NULL $5.90 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +103 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Cheese]] $9.25 +103 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +104 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +104 1 Chips and Fresh Tomato Salsa NULL $2.95 +105 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +106 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +106 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +107 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +108 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +108 1 Canned Soda [Mountain Dew] $1.09 +108 1 Canned Soda [Dr. Pepper] $1.09 +108 1 Canned Soda [Mountain Dew] $1.09 +108 1 Barbacoa Burrito [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Cheese]] $8.99 +109 1 Chicken Salad [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +109 1 Canned Soda [Diet Dr. Pepper] $1.09 +110 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +110 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +110 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +110 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $9.25 +111 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +111 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +112 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +112 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +113 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +113 1 Canned Soda [Mountain Dew] $1.09 +114 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +114 1 Canned Soft Drink [Coke] $1.25 +115 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice]] $8.99 +115 1 Chips and Fresh Tomato Salsa NULL $2.39 +116 1 Steak Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +116 1 Chips and Fresh Tomato Salsa NULL $2.95 +117 1 Barbacoa Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +117 1 Chips and Guacamole NULL $3.99 +118 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +118 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +119 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +119 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +120 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +120 1 Side of Chips NULL $1.69 +121 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +121 1 Chips and Guacamole NULL $3.99 +122 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Lettuce]] $8.99 +122 1 Side of Chips NULL $1.69 +122 1 Canned Soda [Coca Cola] $1.09 +123 2 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Guacamole]] $23.78 +124 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +124 1 Chips NULL $2.15 +124 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +125 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Lettuce]] $9.25 +125 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +125 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +125 1 Chips and Guacamole NULL $4.45 +126 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +126 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +127 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +127 1 Canned Soft Drink [Sprite] $1.25 +128 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +128 1 Chips and Guacamole NULL $4.45 +128 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce, Guacamole, Sour Cream, Cheese, Black Beans, Rice]] $11.25 +129 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +129 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +129 1 6 Pack Soft Drink [Sprite] $6.49 +130 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Lettuce] $8.99 +130 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +131 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +131 1 Chips and Fresh Tomato Salsa NULL $2.39 +132 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +132 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +132 1 Chips NULL $2.15 +133 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +133 1 Side of Chips NULL $1.69 +134 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +134 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +134 1 Chips NULL $2.15 +135 1 Chips and Guacamole NULL $4.45 +135 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +136 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Fajita Veggies] $8.49 +136 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Cheese, Lettuce]] $8.99 +137 2 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $17.50 +138 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +138 1 Canned Soda [Diet Coke] $1.09 +138 1 Bottled Water NULL $1.09 +139 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream]] $8.75 +139 1 Canned Soft Drink [Coke] $1.25 +139 1 Chips NULL $2.15 +140 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $11.08 +141 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +141 1 Chicken Soft Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +142 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), Rice] $8.99 +142 1 Chips and Fresh Tomato Salsa NULL $2.39 +143 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +143 1 Chips NULL $2.15 +143 1 Bottled Water NULL $1.50 +144 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +144 1 Chips NULL $2.15 +145 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +145 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream]] $8.49 +146 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +146 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +147 1 Steak Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Cheese, Guacamole, Lettuce]] $11.75 +147 1 Canned Soft Drink [Coke] $1.25 +148 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +148 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +148 1 Chips and Guacamole NULL $4.45 +148 1 6 Pack Soft Drink [Diet Coke] $6.49 +149 1 Steak Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +149 1 Chips and Fresh Tomato Salsa NULL $2.95 +149 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Guacamole, Lettuce]] $11.25 +149 1 Chips and Guacamole NULL $4.45 +149 1 Canned Soft Drink [Lemonade] $1.25 +149 1 Canned Soft Drink [Sprite] $1.25 +150 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +150 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +150 2 Canned Soda [Diet Coke] $2.18 +151 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +151 2 Canned Soda [Coca Cola] $2.18 +152 2 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $22.16 +153 2 Chicken Soft Tacos [Fresh Tomato Salsa, Sour Cream] $17.50 +154 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +154 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +154 1 6 Pack Soft Drink [Coke] $6.49 +155 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream]] $8.99 +155 1 Izze [Blackberry] $3.39 +155 1 Izze [Grapefruit] $3.39 +156 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.99 +156 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +157 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +157 1 Chips NULL $2.15 +158 1 Chicken Crispy Tacos [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +158 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +159 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +159 1 Canned Soft Drink [Diet Coke] $1.25 +160 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.99 +160 1 Canned Soda [Diet Coke] $1.09 +161 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +161 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +162 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +162 1 Chips and Fresh Tomato Salsa NULL $2.95 +163 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +163 1 Bottled Water NULL $1.50 +164 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +164 1 Canned Soda [Mountain Dew] $1.09 +165 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +165 1 Canned Soft Drink [Coke] $1.25 +165 1 Canned Soft Drink [Coke] $1.25 +166 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +166 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +166 1 Chips NULL $2.15 +167 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +167 1 Side of Chips NULL $1.69 +168 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +168 1 6 Pack Soft Drink [Diet Coke] $6.49 +169 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream]] $8.75 +169 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +170 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +170 1 Chips and Guacamole NULL $4.45 +170 1 Canned Soft Drink [Coke] $1.25 +171 1 Veggie Burrito [Tomatillo Green Chili Salsa, Guacamole] $11.25 +171 1 Chips and Guacamole NULL $4.45 +172 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +172 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +173 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +173 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Lettuce]] $8.99 +174 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +174 1 Canned Soft Drink [Sprite] $1.25 +175 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +175 1 Canned Soft Drink [Coke] $1.25 +176 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +176 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +176 1 Chips and Guacamole NULL $4.45 +177 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +177 1 Chips NULL $2.15 +178 3 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $32.94 +179 1 Canned Soft Drink [Coke] $1.25 +179 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +180 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +180 1 Side of Chips NULL $1.69 +180 1 Canned Soda [Dr. Pepper] $1.09 +181 2 Chicken Bowl [Tomatillo Red Chili Salsa] $17.50 +182 1 Chips and Guacamole NULL $4.45 +182 1 6 Pack Soft Drink [Diet Coke] $6.49 +182 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +183 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +183 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +184 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +184 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Lettuce]] $8.75 +184 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +184 1 Chips NULL $2.15 +184 1 Chips and Fresh Tomato Salsa NULL $2.95 +185 2 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $17.50 +186 1 Chicken Soft Tacos [[Tomatillo-Red Chili Salsa (Hot), Roasted Chili Corn Salsa (Medium)], [Guacamole, Cheese, Sour Cream]] $10.98 +186 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +186 1 Barbacoa Crispy Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream, Guacamole]] $11.48 +186 1 Izze [Grapefruit] $3.39 +187 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +187 1 Side of Chips NULL $1.69 +188 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +188 1 Canned Soda [Coca Cola] $1.09 +189 1 Veggie Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Pinto Beans, Fajita Veggies, Guacamole, Lettuce]] $10.98 +189 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +190 1 Steak Crispy Tacos [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Sour Cream]] $8.99 +190 1 Canned Soda [Dr. Pepper] $1.09 +191 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +191 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +192 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +192 1 Chips and Guacamole NULL $4.45 +192 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +192 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +193 3 Bowl [Braised Carnitas, Pinto Beans, [Sour Cream, Cheese, Cilantro-Lime Rice]] $22.20 +194 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +194 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +195 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +195 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $8.75 +195 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +195 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $9.25 +195 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +195 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +196 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +196 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +196 1 Chips and Fresh Tomato Salsa NULL $2.95 +196 1 Canned Soft Drink [Coke] $1.25 +197 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +197 1 Side of Chips NULL $1.69 +198 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +198 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +199 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +199 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +199 1 Chips and Guacamole NULL $4.45 +200 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +200 1 Chips and Guacamole NULL $3.99 +201 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Cheese]] $8.49 +201 1 Chips and Guacamole NULL $3.99 +202 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Guacamole]] $11.48 +202 1 Side of Chips NULL $1.69 +202 1 Canned Soda [Diet Dr. Pepper] $1.09 +203 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +203 1 Bottled Water NULL $1.50 +204 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Fajita Veggies, Sour Cream, Cheese]] $10.58 +204 1 Side of Chips NULL $1.69 +205 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +205 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +205 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +205 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +205 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +205 1 Chicken Burrito [Fresh Tomato Salsa, Cheese] $8.75 +205 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +205 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +205 1 Chips NULL $2.15 +206 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +206 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +206 2 Canned Soft Drink [Diet Coke] $2.50 +206 1 Chips and Guacamole NULL $4.45 +207 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese]] $9.25 +207 1 Chips and Guacamole NULL $4.45 +207 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Rice, Lettuce, Guacamole, Fajita Vegetables, Cheese, Sour Cream, Black Beans]] $11.25 +208 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese]] $8.49 +208 1 Chips and Guacamole NULL $3.99 +209 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Lettuce]] $9.25 +209 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +210 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +210 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +211 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +211 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +212 1 Canned Soft Drink [Lemonade] $1.25 +212 2 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +212 1 Canned Soft Drink [Coke] $1.25 +213 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), Rice] $8.99 +213 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), Rice] $8.49 +214 1 Burrito [Adobo-Marinated and Grilled Chicken, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +214 1 Burrito [Braised Barbacoa, Vegetarian Black Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice]] $7.40 +215 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +215 1 Canned Soft Drink [Diet Coke] $1.25 +215 1 Chips and Guacamole NULL $4.45 +215 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +215 1 Chips NULL $2.15 +216 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +216 1 Chips and Guacamole NULL $4.45 +217 1 Burrito [Braised Barbacoa, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +217 1 Crispy Tacos [Adobo-Marinated and Grilled Steak] $7.40 +217 1 Crispy Tacos [Adobo-Marinated and Grilled Chicken] $7.40 +218 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream]] $8.99 +218 1 Chips and Guacamole NULL $3.99 +219 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +219 1 Side of Chips NULL $1.69 +220 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +220 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +221 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Lettuce]] $8.75 +221 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +222 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +222 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +222 1 Chips and Fresh Tomato Salsa NULL $2.95 +223 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +223 2 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Lettuce, Cheese, Rice]] $18.50 +224 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +224 1 Chips and Guacamole NULL $3.99 +225 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +225 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Pinto Beans, Black Beans]] $9.25 +225 1 Steak Burrito [Tomatillo Green Chili Salsa, Cheese] $9.25 +225 2 Bottled Water NULL $3.00 +225 1 Canned Soft Drink [Diet Coke] $1.25 +226 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +226 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +226 1 Chips and Guacamole NULL $4.45 +227 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +227 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Lettuce, Guacamole]] $11.25 +227 1 Chips and Guacamole NULL $4.45 +228 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +229 2 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Rice, Cheese]] $22.16 +230 1 Chips and Guacamole NULL $4.45 +230 1 Chicken Burrito [Tomatillo Red Chili Salsa] $8.75 +230 1 Steak Burrito [Tomatillo Green Chili Salsa] $9.25 +230 1 6 Pack Soft Drink [Diet Coke] $6.49 +230 1 Carnitas Crispy Tacos [Roasted Chili Corn Salsa] $9.25 +231 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +231 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +231 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +231 1 Chips NULL $2.15 +231 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +231 1 Chips and Guacamole NULL $4.45 +232 1 Barbacoa Burrito [Roasted Chili Corn Salsa] $9.25 +232 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +233 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +233 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +233 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese]] $9.25 +233 1 Canned Soft Drink [Diet Coke] $1.25 +233 1 Canned Soft Drink [Diet Coke] $1.25 +234 1 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +234 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $8.75 +234 1 Steak Soft Tacos [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese]] $9.25 +234 1 Chips and Guacamole NULL $4.45 +235 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Lettuce, Guacamole]] $11.75 +235 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +235 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +236 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +236 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +237 2 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $16.98 +237 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +237 1 Izze [Clementine] $3.39 +237 1 Izze [Grapefruit] $3.39 +238 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Lettuce]] $9.25 +238 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +239 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +239 1 Chips NULL $2.15 +240 1 Chicken Salad Bowl [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +240 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +240 1 Chips and Guacamole NULL $4.45 +241 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +242 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +242 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa] $9.25 +243 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $22.50 +244 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $9.25 +244 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +244 1 Bottled Water NULL $1.50 +245 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +246 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +246 1 Side of Chips NULL $1.69 +247 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +247 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +247 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +247 2 Nantucket Nectar [Pineapple Orange Banana] $6.78 +248 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.75 +248 1 Chips and Guacamole NULL $4.45 +249 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +249 1 Chips and Guacamole NULL $4.45 +250 1 Steak Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Guacamole, Lettuce]] $11.89 +250 1 Steak Salad Bowl [Fresh Tomato Salsa, Lettuce] $9.39 +251 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +251 1 Chips and Fresh Tomato Salsa NULL $2.95 +251 1 Canned Soft Drink [Nestea] $1.25 +252 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +252 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +253 2 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $23.78 +254 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +254 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +254 1 Chips NULL $2.15 +254 1 Chips NULL $2.15 +254 1 Canned Soft Drink [Diet Coke] $1.25 +255 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +255 1 Chips and Guacamole NULL $3.99 +256 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +256 1 Canned Soda [Dr. Pepper] $1.09 +257 1 Veggie Burrito [Tomatillo Green Chili Salsa] $8.75 +257 1 Chips and Guacamole NULL $4.45 +258 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +258 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.75 +258 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +258 1 Chips and Guacamole NULL $4.45 +259 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +259 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +260 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +260 1 Chips and Guacamole NULL $3.99 +261 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +262 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Guacamole]] $11.25 +262 1 Canned Soft Drink [Coke] $1.25 +263 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +263 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +264 2 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $18.50 +264 1 6 Pack Soft Drink [Diet Coke] $6.49 +265 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +265 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +265 1 Chips and Guacamole NULL $4.45 +266 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +266 1 Chips and Guacamole NULL $3.99 +267 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream]] $8.99 +267 1 Canned Soda [Sprite] $1.09 +268 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +268 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +269 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +269 1 Side of Chips NULL $1.69 +270 2 Canned Soft Drink [Coke] $2.50 +270 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +270 1 Bottled Water NULL $1.50 +271 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +271 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +272 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +272 1 Chips and Guacamole NULL $4.45 +273 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +273 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +274 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +274 1 Side of Chips NULL $1.69 +275 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +275 1 Chips and Guacamole NULL $3.99 +276 1 Steak Salad [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +276 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +276 1 Chips and Guacamole NULL $3.99 +276 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +277 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +277 1 Chips and Guacamole NULL $4.45 +277 1 Canned Soft Drink [Lemonade] $1.25 +278 1 Chips and Guacamole NULL $3.99 +278 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +279 1 Bowl [Adobo-Marinated and Grilled Steak, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice, Guacamole]] $7.40 +279 1 Chips and Mild Fresh Tomato Salsa NULL $3.00 +279 1 Burrito [Adobo-Marinated and Grilled Chicken, [Sour Cream, Cheese, Cilantro-Lime Rice]] $7.40 +279 1 Chips and Guacamole NULL $4.00 +280 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +280 1 Chips and Guacamole NULL $3.99 +281 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +281 1 Chips and Guacamole NULL $4.45 +282 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Guacamole, Cheese]] $11.25 +282 1 Canned Soft Drink [Coke] $1.25 +282 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.75 +282 1 Canned Soft Drink [Coke] $1.25 +283 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +283 1 Chips NULL $2.15 +284 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +284 1 Chips and Guacamole NULL $4.45 +284 3 Canned Soft Drink [Diet Coke] $3.75 +284 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +285 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +285 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +286 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce]] $8.75 +286 1 Chips and Guacamole NULL $4.45 +286 1 Canned Soft Drink [Diet Coke] $1.25 +287 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +287 1 Chicken Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.49 +287 2 Canned Soda [Coca Cola] $2.18 +288 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +288 2 Canned Soda [Coca Cola] $2.18 +288 1 Bottled Water NULL $1.09 +289 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Lettuce]] $8.75 +289 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +289 1 Canned Soft Drink [Lemonade] $1.25 +290 1 Bottled Water NULL $1.50 +290 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +291 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +291 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +291 1 Canned Soft Drink [Lemonade] $1.25 +292 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +292 1 Chips and Guacamole NULL $3.99 +293 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +294 1 Chips and Guacamole NULL $3.99 +294 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +295 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +295 1 Canned Soft Drink [Diet Coke] $1.25 +296 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +296 1 Side of Chips NULL $1.69 +297 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +297 1 Canned Soft Drink [Coke] $1.25 +298 1 6 Pack Soft Drink [Nestea] $6.49 +298 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +299 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +299 1 Chicken Burrito [Fresh Tomato Salsa] $8.75 +299 1 Chips and Fresh Tomato Salsa NULL $2.95 +300 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +300 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +301 1 Steak Burrito [Roasted Chili Corn (Medium), [Sour Cream, Cheese]] $8.69 +301 1 Steak Crispy Tacos [Fresh Tomato (Mild), [Lettuce, Cheese]] $8.69 +301 1 Chips and Fresh Tomato Salsa NULL $2.29 +302 1 Chips and Guacamole NULL $3.99 +302 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +303 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +303 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +304 1 Canned Soft Drink [Sprite] $1.25 +304 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +304 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +304 1 Veggie Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +305 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Guacamole, Cheese]] $11.25 +305 1 Canned Soft Drink [Coke] $1.25 +305 1 Steak Burrito [Roasted Chili Corn Salsa] $9.25 +306 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +306 1 6 Pack Soft Drink [Coke] $6.49 +307 1 Chips and Guacamole NULL $3.99 +307 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +308 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +308 1 Chips NULL $2.15 +309 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +309 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.89 +310 1 Barbacoa Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +310 1 Side of Chips NULL $1.69 +311 1 Steak Salad [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +311 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Cheese, Fajita Veggies, Lettuce, Sour Cream, Rice, Black Beans]] $8.99 +311 1 Chips and Guacamole NULL $3.99 +311 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce, Black Beans]] $8.99 +312 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +312 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +312 1 Chips NULL $2.15 +313 1 Burrito [White Rice, Adobo-Marinated and Grilled Steak, [Salsa, Cheese]] $7.40 +313 1 Burrito [White Rice, Adobo-Marinated and Grilled Steak, Pinto Beans, [Sour Cream, Salsa, Cheese, Cilantro-Lime Rice]] $7.40 +314 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +314 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +315 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $9.25 +315 1 Chips and Guacamole NULL $4.45 +316 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +316 1 Canned Soft Drink [Sprite] $1.25 +317 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.75 +317 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.25 +317 1 Canned Soft Drink [Coke] $1.25 +318 1 Chips and Guacamole NULL $3.99 +318 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +319 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), Black Beans] $8.49 +319 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), Black Beans] $8.49 +319 1 Steak Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), Pinto Beans] $8.99 +320 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +320 1 Chips NULL $2.15 +320 1 Canned Soft Drink [Sprite] $1.25 +321 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +321 1 Canned Soda [Diet Coke] $1.09 +321 1 Bottled Water NULL $1.09 +322 1 Veggie Soft Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +322 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +322 1 Canned Soft Drink [Nestea] $1.25 +323 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $9.25 +323 1 Canned Soft Drink [Lemonade] $1.25 +323 1 Chips NULL $2.15 +324 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +324 1 Canned Soft Drink [Diet Coke] $1.25 +325 1 Chips and Guacamole NULL $4.45 +325 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +325 2 Canned Soft Drink [Coke] $2.50 +326 2 Chips and Guacamole NULL $8.90 +326 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +326 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +326 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +327 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +327 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +328 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Sour Cream, Guacamole, Lettuce]] $10.98 +328 1 Chips and Guacamole NULL $3.99 +329 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +329 1 Chips and Guacamole NULL $3.99 +330 1 Side of Chips NULL $1.69 +330 1 Barbacoa Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +331 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +331 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $8.75 +332 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Sour Cream, Lettuce]] $8.99 +332 1 Canned Soda [Mountain Dew] $1.09 +333 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +333 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +334 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +334 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +335 1 Chips and Guacamole NULL $3.99 +335 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.49 +336 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +336 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +337 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +338 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +338 3 Bottled Water NULL $3.27 +338 1 Chips and Guacamole NULL $3.99 +338 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Sour Cream]] $8.99 +338 1 Canned Soda [Coca Cola] $1.09 +339 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Sour Cream, Cheese]] $11.08 +340 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +340 1 Chips and Guacamole NULL $4.45 +341 1 Steak Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +342 1 Chips and Guacamole NULL $3.99 +342 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Cheese, Pinto Beans, Sour Cream, Rice]] $8.49 +343 2 Chips NULL $4.30 +343 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese]] $9.25 +343 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +343 1 Veggie Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +343 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +343 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +344 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Sour Cream]] $8.49 +344 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Sour Cream]] $8.99 +344 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream]] $8.49 +345 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +345 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +345 1 Chips and Guacamole NULL $4.45 +346 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +346 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +346 1 Steak Bowl [Tomatillo Green Chili Salsa] $9.25 +346 1 Veggie Bowl [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +347 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +347 1 Chips and Guacamole NULL $4.45 +348 2 Veggie Bowl [Fresh Tomato Salsa (Mild), [Rice, Sour Cream, Cheese, Pinto Beans]] $16.98 +349 1 Veggie Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +349 1 Chips and Fresh Tomato Salsa NULL $2.39 +350 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +350 3 Canned Soft Drink [Sprite] $3.75 +351 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Lettuce]] $9.25 +351 1 Chips and Guacamole NULL $4.45 +352 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese]] $9.25 +352 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +352 1 Chips and Guacamole NULL $4.45 +353 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +353 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +354 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +354 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +355 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +355 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese]] $9.25 +356 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Sour Cream, Guacamole, Lettuce]] $11.48 +356 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Sour Cream, Lettuce]] $8.99 +357 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +358 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Cheese, Rice, Guacamole]] $11.75 +358 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole]] $11.25 +358 1 Canned Soft Drink [Coke] $1.25 +359 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +359 1 Chips NULL $2.15 +359 1 Canned Soft Drink [Diet Coke] $1.25 +360 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +360 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +360 1 Canned Soft Drink [Sprite] $1.25 +361 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +361 1 Bottled Water NULL $1.50 +362 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +362 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Guacamole]] $11.25 +363 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +363 1 6 Pack Soft Drink [Coke] $6.49 +363 2 Chips and Guacamole NULL $8.90 +364 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +364 1 Chips and Guacamole NULL $4.45 +365 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +365 1 Canned Soft Drink [Diet Coke] $1.25 +366 2 Chicken Crispy Tacos [Tomatillo Red Chili Salsa] $17.50 +366 1 Steak Burrito [Tomatillo Red Chili Salsa] $9.25 +367 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +367 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +367 2 Bottled Water NULL $3.00 +368 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +368 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +369 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Sour Cream, Guacamole]] $10.98 +369 1 Steak Salad [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +369 1 Chips and Guacamole NULL $3.99 +370 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +370 1 Chips and Guacamole NULL $4.45 +371 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +371 1 Side of Chips NULL $1.69 +372 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +372 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +373 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +373 1 Chips and Guacamole NULL $4.45 +374 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +374 1 Canned Soft Drink [Coke] $1.25 +375 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +375 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +376 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +376 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +376 2 Canned Soda [Mountain Dew] $2.18 +377 2 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $17.98 +377 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +378 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +378 1 Side of Chips NULL $1.69 +379 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +379 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +379 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +379 3 Canned Soft Drink [Lemonade] $3.75 +379 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +380 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +380 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +380 1 Chips NULL $2.15 +380 1 Bottled Water NULL $1.50 +381 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Cheese] $8.49 +381 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), Cheese] $8.49 +381 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +382 1 Steak Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice, Cheese]] $8.69 +382 1 Chips and Guacamole NULL $3.89 +383 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +383 1 Chips and Guacamole NULL $4.45 +384 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +384 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +384 1 Chips NULL $2.15 +384 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +385 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +385 1 Side of Chips NULL $1.69 +386 1 Veggie Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese]] $8.49 +386 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +387 1 Canned Soft Drink [Lemonade] $1.25 +387 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +387 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +387 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Lettuce, Guacamole]] $11.75 +388 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +388 1 Bottled Water NULL $1.09 +389 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream]] $8.75 +389 1 Chips and Guacamole NULL $4.45 +389 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Lettuce] $8.75 +389 1 Chips and Fresh Tomato Salsa NULL $2.95 +389 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +389 1 Chips NULL $2.15 +390 1 Chips and Guacamole NULL $3.99 +390 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +391 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +391 1 Chips and Guacamole NULL $3.99 +392 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +392 1 Side of Chips NULL $1.69 +392 1 Canned Soda [Coca Cola] $1.09 +393 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +393 1 Canned Soda [Sprite] $1.09 +394 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +394 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +395 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.99 +395 1 Chips and Fresh Tomato Salsa NULL $2.39 +396 1 Canned Soft Drink [Diet Coke] $1.25 +396 1 Canned Soft Drink [Coke] $1.25 +396 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +396 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +397 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +397 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +398 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +398 1 Bottled Water NULL $1.50 +399 1 Chips and Guacamole NULL $3.99 +399 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Sour Cream]] $8.49 +400 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +400 1 Carnitas Burrito [Tomatillo Red Chili Salsa] $9.25 +400 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +401 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +402 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +402 2 Chips and Guacamole NULL $8.90 +402 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +402 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +403 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +403 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +404 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +404 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +404 1 Chips NULL $2.15 +405 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Cheese, Guacamole]] $11.25 +405 1 Canned Soft Drink [Diet Coke] $1.25 +406 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +406 1 Canned Soft Drink [Diet Coke] $1.25 +407 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +407 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.75 +408 1 Canned Soft Drink [Coke] $1.25 +408 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +408 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +409 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +409 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +410 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +410 1 Canned Soft Drink [Diet Coke] $1.25 +410 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Lettuce]] $8.75 +411 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.49 +411 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +412 1 Bottled Water NULL $1.50 +412 1 Bottled Water NULL $1.50 +412 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +412 1 Chips and Guacamole NULL $4.45 +413 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +413 1 Canned Soft Drink [Coke] $1.25 +413 1 Carnitas Crispy Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +414 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +414 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +415 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +415 1 Chips and Guacamole NULL $4.45 +416 1 Steak Burrito [Tomatillo Red Chili Salsa] $9.25 +416 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +417 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +417 1 Side of Chips NULL $1.69 +418 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Black Beans]] $17.50 +419 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +419 1 Barbacoa Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.99 +419 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +420 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +420 1 Chips and Guacamole NULL $4.45 +421 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +421 1 Chips and Guacamole NULL $4.45 +422 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +422 1 6 Pack Soft Drink [Sprite] $6.49 +423 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +423 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +424 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese]] $8.49 +424 1 Canned Soda [Diet Dr. Pepper] $1.09 +424 1 Side of Chips NULL $1.69 +425 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +425 1 Chips and Guacamole NULL $4.45 +426 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +426 1 Canned Soft Drink [Coke] $1.25 +426 1 Chips and Fresh Tomato Salsa NULL $2.95 +427 1 Chips and Guacamole NULL $3.99 +427 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Cheese]] $8.49 +428 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.75 +428 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Guacamole]] $11.75 +428 1 Chips NULL $2.15 +429 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Guacamole]] $11.48 +430 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +430 1 Chips NULL $2.15 +430 1 Canned Soft Drink [Diet Coke] $1.25 +431 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +431 1 Chips NULL $2.15 +431 1 Canned Soft Drink [Sprite] $1.25 +432 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +432 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +432 1 6 Pack Soft Drink [Coke] $6.49 +433 1 Side of Chips NULL $1.69 +433 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +434 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +434 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +435 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +435 1 Canned Soda [Mountain Dew] $1.09 +436 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +436 1 Izze [Clementine] $3.39 +437 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +437 1 Chips NULL $2.15 +437 1 Canned Soft Drink [Diet Coke] $1.25 +438 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.48 +438 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +439 1 Chicken Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +439 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +440 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +440 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +440 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +441 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +441 1 Chips and Guacamole NULL $4.45 +442 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream, Guacamole]] $11.48 +443 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +443 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +443 1 Chips and Guacamole NULL $4.45 +444 1 Side of Chips NULL $1.69 +444 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +445 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +445 1 Chips and Guacamole NULL $4.45 +445 1 Bottled Water NULL $1.50 +446 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.75 +446 1 Chips NULL $2.15 +447 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Sour Cream]] $8.99 +447 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +448 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +448 1 Chips and Fresh Tomato Salsa NULL $2.95 +448 1 Canned Soft Drink [Coke] $1.25 +449 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +449 1 Chips NULL $2.15 +449 1 Canned Soft Drink [Diet Coke] $1.25 +450 2 Canned Soda [Dr. Pepper] $2.18 +450 2 Canned Soda [Coca Cola] $2.18 +450 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Guacamole]] $11.48 +451 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +451 1 Chips and Fresh Tomato Salsa NULL $2.95 +451 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +452 1 Carnitas Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +452 1 Canned Soft Drink [Diet Coke] $1.25 +453 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Fajita Veggies, Cheese]] $10.58 +454 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +454 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +455 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +455 1 Chips and Guacamole NULL $4.45 +456 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +456 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +457 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $17.50 +457 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +458 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +458 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +459 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +460 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +460 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +460 1 Chips and Guacamole NULL $4.45 +461 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +461 1 Canned Soft Drink [Diet Coke] $1.25 +462 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +462 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +462 1 Chips and Fresh Tomato Salsa NULL $2.95 +463 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +463 1 Side of Chips NULL $1.69 +464 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +464 1 Chips and Guacamole NULL $4.45 +465 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +465 1 6 Pack Soft Drink [Coke] $6.49 +466 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +466 1 Chips and Guacamole NULL $4.45 +466 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +467 1 Chips and Guacamole NULL $4.45 +467 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +467 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +468 1 Chips and Guacamole NULL $4.45 +468 1 Carnitas Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.89 +468 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +469 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +469 1 Chips and Fresh Tomato Salsa NULL $2.95 +469 1 Bottled Water NULL $1.50 +470 1 Chips and Guacamole NULL $4.45 +470 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +471 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +471 1 Bottled Water NULL $1.09 +471 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +471 1 Canned Soda [Dr. Pepper] $1.09 +471 1 Chips and Guacamole NULL $3.99 +472 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Fajita Veggies, Cheese, Guacamole]] $11.48 +472 1 Veggie Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +473 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +473 1 Chips and Guacamole NULL $4.45 +474 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +475 1 Barbacoa Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Lettuce]] $9.25 +475 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +475 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +476 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +476 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +477 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream]] $8.99 +477 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +478 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +478 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +478 1 Chips and Guacamole NULL $4.45 +478 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +479 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Fajita Veggies, Sour Cream, Cheese]] $10.58 +479 1 Chicken Burrito [Fresh Tomato (Mild), [Lettuce, Rice, Fajita Veggies, Sour Cream, Cheese]] $8.19 +479 1 Side of Chips NULL $1.69 +480 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +480 1 Chips NULL $2.15 +480 1 Canned Soft Drink [Diet Coke] $1.25 +481 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +481 1 6 Pack Soft Drink [Coke] $6.49 +481 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, Rice] $9.25 +481 1 Chips NULL $2.15 +482 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +482 1 Chips and Guacamole NULL $4.45 +482 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +482 1 Canned Soft Drink [Coke] $1.25 +483 1 Barbacoa Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole]] $11.48 +483 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +484 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +484 2 Bottled Water NULL $2.18 +485 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies]] $8.49 +485 1 Barbacoa Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies]] $8.99 +485 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +485 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +485 2 Bottled Water NULL $2.18 +486 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +486 1 Chips and Guacamole NULL $4.45 +487 1 Chicken Burrito [Fresh Tomato Salsa, [Lettuce, Guacamole, Rice, Cheese, Fajita Vegetables, Sour Cream]] $11.25 +487 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa] $9.25 +488 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +488 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +488 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +488 1 Chips and Guacamole NULL $4.45 +488 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +488 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +489 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +489 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Sour Cream]] $8.49 +490 1 Carnitas Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), [Fajita Veggies, Cheese, Lettuce]] $8.99 +490 1 Side of Chips NULL $1.69 +491 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +491 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +491 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +491 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +491 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +491 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +491 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +491 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +492 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +493 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +493 1 Chips and Guacamole NULL $4.45 +494 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +494 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream]] $8.49 +495 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +495 1 Izze [Clementine] $3.39 +496 1 Chips and Guacamole NULL $3.99 +496 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +496 1 Canned Soda [Diet Coke] $1.09 +496 1 Canned Soda [Diet Dr. Pepper] $1.09 +496 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +497 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Rice, Black Beans]] $17.50 +497 1 Chips and Guacamole NULL $4.45 +498 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +498 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +498 1 Chips and Guacamole NULL $4.45 +499 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +499 1 Chips and Guacamole NULL $4.45 +500 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +500 1 Chips NULL $2.15 +500 1 Canned Soft Drink [Diet Coke] $1.25 +501 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +501 1 Chips and Fresh Tomato Salsa NULL $2.95 +502 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +502 1 Canned Soft Drink [Diet Coke] $1.25 +503 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +503 1 Chips and Guacamole NULL $4.45 +504 1 Barbacoa Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole]] $11.48 +504 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +505 1 Chips and Fresh Tomato Salsa NULL $2.95 +505 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +506 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +506 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +506 1 Chips and Fresh Tomato Salsa NULL $2.95 +507 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +507 1 Canned Soft Drink [Lemonade] $1.25 +507 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +507 1 Canned Soft Drink [Lemonade] $1.25 +508 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese]] $8.99 +508 1 Chips and Fresh Tomato Salsa NULL $2.39 +509 1 Canned Soft Drink [Diet Coke] $1.25 +509 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +509 1 Canned Soft Drink [Coke] $1.25 +509 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +510 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +510 1 Chips and Guacamole NULL $3.99 +511 4 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $35.00 +511 3 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $27.75 +511 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +511 4 Chips and Fresh Tomato Salsa NULL $11.80 +511 2 Chips and Guacamole NULL $8.90 +511 2 Chips and Tomatillo Green Chili Salsa NULL $5.90 +511 1 6 Pack Soft Drink [Coke] $6.49 +512 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +513 2 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Sour Cream]] $17.98 +513 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +514 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +514 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +514 1 Chips NULL $2.15 +515 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +515 1 Chips and Guacamole NULL $4.45 +516 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +516 1 Side of Chips NULL $1.69 +517 1 Chicken Burrito [Tomatillo Red Chili (Hot), [Lettuce, Rice, Cheese]] $8.19 +517 1 Steak Burrito [Tomatillo Red Chili (Hot), [Lettuce, Rice, Sour Cream, Cheese]] $8.69 +518 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +519 1 Chips and Guacamole NULL $3.99 +519 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +519 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +520 1 Chips and Guacamole NULL $4.45 +520 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +520 1 6 Pack Soft Drink [Sprite] $6.49 +521 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +521 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +522 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +522 1 Canned Soft Drink [Diet Coke] $1.25 +522 1 Chips and Guacamole NULL $4.45 +523 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +523 1 Side of Chips NULL $1.69 +524 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +524 1 Chips and Guacamole NULL $4.45 +525 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Lettuce, Black Beans, Sour Cream, Cheese, Rice, Fajita Veggies, Pinto Beans]] $8.99 +525 1 Canned Soda [Sprite] $1.09 +526 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +526 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +527 1 Steak Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +527 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Lettuce, Rice, Sour Cream, Cheese]] $11.08 +527 1 Chips and Guacamole NULL $3.89 +528 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +529 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +529 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +529 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Guacamole]] $11.25 +530 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +530 2 Chips NULL $4.30 +530 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +531 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +531 1 Chips and Guacamole NULL $3.99 +532 1 Side of Chips NULL $1.69 +532 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Lettuce, Cheese, Sour Cream]] $8.99 +533 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +533 1 Side of Chips NULL $1.69 +534 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +534 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +534 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +535 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +535 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +535 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +535 1 Chips and Fresh Tomato Salsa NULL $2.95 +536 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +536 1 Chips and Guacamole NULL $4.45 +537 1 Chips and Guacamole NULL $4.45 +537 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +538 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +539 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +539 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese]] $8.49 +540 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +540 1 Chips and Guacamole NULL $4.45 +541 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +541 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.89 +542 1 Steak Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.99 +542 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +543 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +543 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +544 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +544 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +545 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +545 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +545 1 Chips and Guacamole NULL $4.45 +546 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +546 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +546 2 Canned Soft Drink [Coke] $2.50 +547 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +547 1 Side of Chips NULL $1.69 +548 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole]] $11.75 +548 1 Chips NULL $2.15 +549 1 Canned Soft Drink [Coke] $1.25 +549 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +549 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +549 2 Chips and Guacamole NULL $8.90 +550 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +550 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +551 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +551 1 Chicken Burrito [Tomatillo Green Chili Salsa, Guacamole] $11.25 +552 2 Chips and Guacamole NULL $8.90 +552 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +552 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +553 1 Steak Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +553 1 Side of Chips NULL $1.69 +553 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +554 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +554 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +555 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +555 1 Side of Chips NULL $1.69 +555 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Sour Cream, Lettuce]] $8.49 +556 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +557 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +557 1 Chips and Fresh Tomato Salsa NULL $2.95 +558 1 Steak Soft Tacos [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +558 1 Side of Chips NULL $1.69 +559 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +559 1 Chips NULL $2.15 +559 1 Canned Soft Drink [Diet Coke] $1.25 +560 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +560 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +560 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +560 2 Canned Soft Drink [Coke] $2.50 +561 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +561 1 Canned Soft Drink [Coke] $1.25 +561 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +561 2 Canned Soft Drink [Lemonade] $2.50 +561 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +561 1 Bottled Water NULL $1.50 +561 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +561 1 Canned Soft Drink [Coke] $1.25 +561 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +562 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Guacamole, Lettuce]] $11.48 +562 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +563 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +563 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +563 1 Chips NULL $2.15 +564 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $11.75 +564 1 Canned Soft Drink [Diet Coke] $1.25 +565 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +565 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +566 1 6 Pack Soft Drink [Diet Coke] $6.49 +566 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +567 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +567 1 Veggie Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +567 1 Canned Soda [Coca Cola] $1.09 +568 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +569 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +569 1 Canned Soft Drink [Diet Coke] $1.25 +569 1 Chips NULL $2.15 +570 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +570 1 Bottled Water NULL $1.50 +571 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +571 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +572 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.49 +572 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +573 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +573 1 Bottled Water NULL $1.50 +573 1 Canned Soft Drink [Diet Coke] $1.25 +573 1 Bottled Water NULL $1.50 +574 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +574 2 Canned Soft Drink [Diet Coke] $2.50 +574 1 Chips NULL $2.15 +575 1 Salad [Brown Rice, Adobo-Marinated and Grilled Chicken, Vegetarian Black Beans] $7.40 +575 1 Salad [White Rice, Adobo-Marinated and Grilled Chicken, Vegetarian Black Beans] $7.40 +575 1 Chips and Guacamole NULL $4.00 +576 1 Barbacoa Bowl [Tomatillo Red Chili Salsa] $9.25 +576 1 Barbacoa Salad Bowl [Roasted Chili Corn Salsa] $9.39 +576 1 Barbacoa Bowl [Roasted Chili Corn Salsa] $9.25 +576 1 Barbacoa Bowl [Roasted Chili Corn Salsa] $9.25 +576 1 Barbacoa Salad Bowl [Roasted Chili Corn Salsa] $9.39 +577 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +577 2 Chips and Guacamole NULL $8.90 +577 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +577 4 Bottled Water NULL $6.00 +577 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Guacamole]] $11.25 +577 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +577 1 Veggie Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +578 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $22.50 +579 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +579 1 Canned Soda [Sprite] $1.09 +580 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +580 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.49 +581 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +582 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +582 1 Bottled Water NULL $1.50 +583 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +583 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +584 1 Chips and Guacamole NULL $3.99 +584 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +585 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +585 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +585 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +586 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables]] $8.75 +586 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream]] $8.75 +587 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +587 1 Bottled Water NULL $1.50 +588 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +588 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +588 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +589 1 Steak Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese]] $8.99 +589 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +590 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +590 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese]] $8.75 +590 1 Chips and Guacamole NULL $4.45 +591 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +591 1 Canned Soda [Sprite] $1.09 +591 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +592 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +592 1 Chicken Salad Bowl [Fresh Tomato Salsa, Lettuce] $8.75 +593 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +594 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +594 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +595 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +595 1 Chips and Fresh Tomato Salsa NULL $2.39 +596 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +596 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +596 1 Chips and Guacamole NULL $3.99 +597 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +597 1 Chips and Guacamole NULL $4.45 +598 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +598 1 Chips NULL $2.15 +598 1 Canned Soft Drink [Diet Coke] $1.25 +599 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +599 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese]] $8.99 +600 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.25 +600 1 Bottled Water NULL $1.50 +601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +601 1 Chips NULL $2.15 +601 1 Canned Soft Drink [Diet Coke] $1.25 +602 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +602 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +602 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +603 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +603 1 Bottled Water NULL $1.50 +604 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +604 1 Canned Soft Drink [Coke] $1.25 +604 1 Chips and Guacamole NULL $4.45 +605 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +606 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +606 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +606 1 Canned Soft Drink [Nestea] $1.25 +607 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +607 1 Chips and Fresh Tomato Salsa NULL $2.95 +607 1 Canned Soft Drink [Sprite] $1.25 +608 1 Chicken Soft Tacos [Roasted Chili Corn Salsa (Medium), Cheese] $8.49 +608 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +608 1 Chips and Fresh Tomato Salsa NULL $2.39 +609 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +609 1 Canned Soft Drink [Diet Coke] $1.25 +610 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +610 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +611 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +611 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +612 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +612 1 Canned Soft Drink [Diet Coke] $1.25 +613 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +613 1 Chips NULL $2.15 +613 1 Canned Soft Drink [Lemonade] $1.25 +614 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream]] $8.99 +614 1 Canned Soda [Mountain Dew] $1.09 +615 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +615 1 Chips and Guacamole NULL $4.45 +616 3 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $26.25 +617 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Lettuce, Rice, Cheese]] $8.75 +617 1 Chips and Guacamole NULL $4.45 +618 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +618 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +619 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +619 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +620 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +620 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +621 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +621 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +622 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +622 1 Chips and Guacamole NULL $4.45 +622 1 Canned Soft Drink [Coke] $1.25 +623 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +623 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +624 1 Barbacoa Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +624 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +624 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +624 1 Chips and Guacamole NULL $3.99 +625 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +625 1 Chips and Guacamole NULL $4.45 +626 1 Chips NULL $2.15 +626 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +626 1 Canned Soft Drink [Sprite] $1.25 +627 1 Chicken Burrito [Fresh Tomato Salsa, [Guacamole, Lettuce, Sour Cream, Fajita Vegetables, Cheese, Rice]] $11.25 +627 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +628 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +628 1 Chips and Guacamole NULL $4.45 +628 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +628 1 Chips NULL $2.15 +628 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream]] $8.75 +628 1 Chips and Guacamole NULL $4.45 +629 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +629 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +629 1 Canned Soft Drink [Diet Coke] $1.25 +630 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Guacamole, Lettuce]] $11.25 +630 1 Chips NULL $2.15 +631 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Lettuce, Black Beans]] $8.75 +631 2 Chips and Roasted Chili Corn Salsa NULL $5.90 +632 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +632 1 Canned Soft Drink [Coke] $1.25 +633 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +633 3 Canned Soft Drink [Coke] $3.75 +634 1 Chicken Soft Tacos [Fresh Tomato Salsa] $8.75 +634 1 Canned Soft Drink [Lemonade] $1.25 +634 1 Chips and Guacamole NULL $4.45 +635 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +635 1 Chips and Guacamole NULL $4.45 +635 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +635 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $23.50 +636 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +636 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +636 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +637 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +637 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +637 1 Chips and Guacamole NULL $4.45 +637 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +637 1 Canned Soft Drink [Diet Coke] $1.25 +638 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +638 1 Chips and Guacamole NULL $4.45 +638 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +638 1 Canned Soft Drink [Sprite] $1.25 +639 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +639 1 Chips NULL $2.15 +639 1 Canned Soft Drink [Diet Coke] $1.25 +640 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +640 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +641 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +641 1 Nantucket Nectar [Peach Orange] $3.39 +642 1 Steak Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +642 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +643 2 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $17.50 +643 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +644 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +644 1 Bottled Water NULL $1.50 +645 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +645 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +646 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +646 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +647 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.25 +647 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +648 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +648 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +648 2 Chips NULL $4.30 +649 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +649 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +649 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +649 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans]] $8.75 +649 2 Chips NULL $4.30 +650 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +650 1 Canned Soft Drink [Diet Coke] $1.25 +650 1 Chips NULL $2.15 +651 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +651 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +651 1 Izze [Blackberry] $3.39 +651 1 Izze [Blackberry] $3.39 +652 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +652 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +652 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +653 1 Chicken Burrito [Fresh Tomato Salsa, [Guacamole, Cheese, Rice, Sour Cream, Fajita Vegetables, Lettuce]] $11.25 +653 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole, Rice, Fajita Vegetables]] $11.75 +654 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +654 1 Canned Soft Drink [Lemonade] $1.25 +654 2 Chips and Tomatillo Red Chili Salsa NULL $5.90 +654 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +654 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +655 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +655 1 Chips and Guacamole NULL $4.45 +655 1 Bottled Water NULL $1.50 +656 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +656 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +656 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +657 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +657 1 Chips NULL $2.15 +658 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +658 1 Carnitas Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +659 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +659 1 Chips and Guacamole NULL $4.45 +660 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +660 1 Chips and Guacamole NULL $4.45 +661 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +661 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +662 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +662 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +663 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +663 1 Barbacoa Soft Tacos [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +664 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +664 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +665 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +665 1 Chips and Guacamole NULL $3.99 +666 1 Chips and Guacamole NULL $3.89 +666 1 Barbacoa Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Black Beans]] $11.08 +667 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +667 1 Barbacoa Bowl [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +667 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +668 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +668 1 Veggie Crispy Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +669 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +669 1 Chips NULL $2.15 +670 2 Chicken Burrito [Tomatillo Red Chili Salsa, Rice] $17.50 +670 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Rice] $8.75 +670 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +671 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +671 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +672 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Fajita Veggies, Guacamole, Lettuce]] $10.98 +672 1 Canned Soda [Diet Coke] $1.09 +673 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +673 1 Chips NULL $2.15 +674 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +674 1 Canned Soft Drink [Sprite] $1.25 +674 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +675 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +675 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +676 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +676 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +677 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +677 1 Chips NULL $2.15 +677 1 Canned Soft Drink [Lemonade] $1.25 +678 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +678 1 Chips and Guacamole NULL $3.99 +679 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +679 1 Chips NULL $2.15 +680 1 Carnitas Bowl [Tomatillo-Red Chili Salsa (Hot), [Lettuce, Sour Cream, Cheese, Fajita Veggies, Rice, Black Beans]] $8.99 +680 1 Izze [Clementine] $3.39 +681 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +681 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +682 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +682 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +682 1 Chips and Guacamole NULL $4.45 +683 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +683 1 Chips NULL $2.15 +683 1 Canned Soft Drink [Diet Coke] $1.25 +684 1 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Guacamole, Rice, Lettuce]] $11.75 +684 1 Chips and Guacamole NULL $4.45 +685 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +685 1 Chips and Fresh Tomato Salsa NULL $2.95 +686 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +686 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.49 +687 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.25 +687 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +687 1 Chips and Guacamole NULL $4.45 +688 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +688 1 Veggie Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +688 1 Chips and Guacamole NULL $4.45 +689 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +689 1 Side of Chips NULL $1.69 +690 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +690 1 Nantucket Nectar [Apple] $3.39 +691 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +691 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +691 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +691 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +691 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +691 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +691 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +691 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +692 2 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Lettuce, Guacamole, Sour Cream, Cheese, Rice, Black Beans]] $21.96 +693 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +693 1 Side of Chips NULL $1.69 +694 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +694 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +695 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +695 1 Side of Chips NULL $1.69 +696 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +696 1 Chips NULL $2.15 +696 1 Bottled Water NULL $1.50 +697 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +697 1 Bottled Water NULL $1.50 +698 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Cheese]] $8.75 +698 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +698 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +699 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +699 1 Side of Chips NULL $1.69 +700 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +700 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +700 1 Canned Soft Drink [Lemonade] $1.25 +701 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +701 1 Chips NULL $2.15 +702 1 Carnitas Bowl [Fresh Tomato (Mild), [Guacamole, Sour Cream, Cheese]] $11.08 +703 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese]] $8.49 +703 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $8.49 +703 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese]] $8.49 +704 1 Steak Bowl [Fresh Tomato Salsa, Guacamole] $11.75 +704 1 Canned Soft Drink [Sprite] $1.25 +705 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +705 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Black Beans, Lettuce]] $8.75 +706 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +706 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +706 1 Chips and Guacamole NULL $4.45 +707 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +707 1 Bottled Water NULL $1.50 +708 2 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +708 1 Barbacoa Soft Tacos [Tomatillo Green Chili Salsa, [Pinto Beans, Sour Cream, Guacamole]] $11.75 +708 1 6 Pack Soft Drink [Coke] $6.49 +709 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +709 1 Chips and Guacamole NULL $4.45 +709 1 6 Pack Soft Drink [Diet Coke] $6.49 +710 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +710 2 Canned Soft Drink [Diet Coke] $2.50 +710 1 Chips NULL $2.15 +711 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +711 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +712 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +712 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +712 1 Chips and Guacamole NULL $4.45 +713 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream]] $8.99 +713 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +714 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +714 1 Chips and Fresh Tomato Salsa NULL $2.95 +715 1 Steak Burrito [Roasted Chili Corn Salsa, [Lettuce, Black Beans, Cheese]] $9.25 +715 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +716 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +716 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +717 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +717 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +718 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +719 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +719 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +720 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +720 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +720 1 Chips NULL $2.15 +721 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +721 1 Chips NULL $2.15 +722 1 Chips and Guacamole NULL $4.45 +722 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +723 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +723 1 Chips and Fresh Tomato Salsa NULL $2.39 +724 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +724 1 Canned Soft Drink [Coke] $1.25 +724 1 Canned Soft Drink [Coke] $1.25 +724 1 Canned Soft Drink [Coke] $1.25 +725 1 Canned Soft Drink [Coke] $1.25 +725 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +725 1 Chips NULL $2.15 +726 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +726 1 Side of Chips NULL $1.69 +727 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +727 1 Bottled Water NULL $1.50 +728 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +728 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +729 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +729 1 Chips and Guacamole NULL $3.99 +730 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +730 1 Canned Soda [Sprite] $1.09 +731 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +731 1 Canned Soft Drink [Diet Coke] $1.25 +732 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +732 1 Chips and Fresh Tomato Salsa NULL $2.39 +732 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.49 +733 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +733 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +734 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole]] $11.25 +734 1 Chips and Guacamole NULL $4.45 +734 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +734 1 Steak Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.89 +735 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +735 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +736 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +736 1 Chips and Guacamole NULL $4.45 +737 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +737 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +737 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +737 2 Chips and Guacamole NULL $8.90 +738 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.39 +738 1 Chips and Fresh Tomato Salsa NULL $2.95 +739 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +739 1 Chips and Guacamole NULL $3.99 +740 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +740 1 Chips NULL $2.15 +740 1 Canned Soft Drink [Diet Coke] $1.25 +741 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Sour Cream, Cheese, Fajita Veggies, Guacamole, Rice, Pinto Beans]] $21.96 +742 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +742 1 Side of Chips NULL $1.69 +743 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +743 1 Chips and Guacamole NULL $4.45 +744 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +744 1 Carnitas Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +745 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.49 +745 1 Chips and Guacamole NULL $3.99 +746 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +746 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +746 1 Chips and Fresh Tomato Salsa NULL $2.95 +746 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +747 2 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $17.50 +748 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +748 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +749 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +749 1 6 Pack Soft Drink [Coke] $6.49 +750 2 Chips NULL $4.30 +750 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +751 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +751 1 Chips NULL $2.15 +751 1 Bottled Water NULL $1.50 +752 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +752 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Lettuce]] $8.49 +752 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +753 1 Steak Burrito [Tomatillo Red Chili Salsa, Sour Cream] $9.25 +753 1 Chips and Guacamole NULL $4.45 +754 1 6 Pack Soft Drink [Diet Coke] $6.49 +754 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +754 1 Chips and Guacamole NULL $4.45 +755 1 Veggie Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +755 1 Side of Chips NULL $1.69 +756 1 Carnitas Salad Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.39 +756 1 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +757 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +757 1 Chips and Fresh Tomato Salsa NULL $2.95 +758 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +758 1 Chips NULL $2.15 +758 1 Canned Soft Drink [Sprite] $1.25 +759 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +759 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +759 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +759 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +759 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +759 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +759 2 Canned Soft Drink [Coke] $2.50 +759 2 Canned Soft Drink [Diet Coke] $2.50 +759 4 Bottled Water NULL $6.00 +759 2 Chips and Guacamole NULL $8.90 +759 2 Chips and Fresh Tomato Salsa NULL $5.90 +760 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +760 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +761 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +761 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +762 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +762 1 Chips NULL $2.15 +762 1 Bottled Water NULL $1.50 +763 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +763 1 Canned Soft Drink [Coke] $1.25 +763 1 Bottled Water NULL $1.50 +763 1 Chips NULL $2.15 +764 1 Canned Soft Drink [Lemonade] $1.25 +764 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +764 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +765 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.49 +765 1 Chips and Guacamole NULL $3.99 +766 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +766 2 Chips NULL $4.30 +767 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.75 +767 1 Chips NULL $2.15 +768 2 Barbacoa Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Rice]] $18.50 +769 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +769 1 Chips and Fresh Tomato Salsa NULL $2.39 +770 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +770 1 Chips and Guacamole NULL $4.45 +770 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +771 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +771 1 Chips and Guacamole NULL $3.99 +772 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +772 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +773 1 Bottled Water NULL $1.50 +773 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +773 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +774 1 6 Pack Soft Drink [Diet Coke] $6.49 +774 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +775 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +775 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +776 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +776 1 Chips and Guacamole NULL $4.45 +776 1 6 Pack Soft Drink [Coke] $6.49 +777 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +778 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +778 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +779 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +779 1 Side of Chips NULL $1.69 +780 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Guacamole, Lettuce]] $10.98 +781 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +781 1 Chips and Guacamole NULL $4.45 +782 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole]] $11.25 +782 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +783 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +783 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +783 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +784 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +784 1 6 Pack Soft Drink [Diet Coke] $6.49 +784 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Sour Cream, Guacamole]] $11.25 +785 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Lettuce, Guacamole]] $11.75 +785 1 Chips and Fresh Tomato Salsa NULL $2.95 +786 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +786 1 Side of Chips NULL $1.69 +787 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +787 2 Canned Soda [Dr. Pepper] $2.18 +787 1 Canned Soda [Coca Cola] $1.09 +787 1 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +787 1 Carnitas Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +788 1 Canned Soda [Dr. Pepper] $1.09 +788 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +789 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +789 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +790 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Sour Cream, Guacamole]] $10.98 +790 1 Canned Soda [Diet Coke] $1.09 +791 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.75 +791 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +791 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +791 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +791 1 Chips NULL $2.15 +792 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.25 +792 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +792 1 Chips and Guacamole NULL $4.45 +792 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +793 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Guacamole]] $11.75 +793 1 Bottled Water NULL $1.50 +794 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +794 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +794 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +795 1 Chicken Burrito [Tomatillo Red Chili Salsa, Lettuce] $8.75 +795 1 Chips NULL $2.15 +795 1 Barbacoa Bowl [Tomatillo Red Chili Salsa] $9.25 +796 1 Bottled Water NULL $1.50 +796 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +796 1 Chips NULL $2.15 +797 1 Chips and Guacamole NULL $3.99 +797 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.99 +798 1 6 Pack Soft Drink [Diet Coke] $6.49 +798 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +798 2 Chips and Guacamole NULL $8.90 +799 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.99 +799 1 Chips and Guacamole NULL $3.99 +800 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +801 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +801 1 Canned Soft Drink [Diet Coke] $1.25 +802 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $10.98 +803 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Lettuce]] $9.25 +803 1 Chips and Guacamole NULL $4.45 +803 1 Canned Soft Drink [Coke] $1.25 +803 2 Bottled Water NULL $3.00 +804 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +804 1 Chips and Guacamole NULL $4.45 +805 1 Chips and Guacamole NULL $4.45 +805 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +805 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +806 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +806 1 Chips NULL $2.15 +806 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +806 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +806 1 Chips and Guacamole NULL $4.45 +807 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +807 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Lettuce]] $9.25 +807 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +807 1 Canned Soft Drink [Coke] $1.25 +808 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +808 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +808 1 Canned Soft Drink [Sprite] $1.25 +809 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +809 1 Chips and Guacamole NULL $4.45 +810 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Guacamole, Lettuce]] $11.48 +810 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $11.48 +811 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +811 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +812 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole]] $11.25 +812 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +812 1 Chips NULL $2.15 +813 1 Bottled Water NULL $1.50 +813 1 Chips NULL $2.15 +813 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +814 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +814 2 Chips and Guacamole NULL $8.90 +814 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +815 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +815 1 Canned Soft Drink [Diet Coke] $1.25 +816 1 Chips and Guacamole NULL $4.45 +816 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +816 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +816 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +817 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +817 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +817 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +818 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +818 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +818 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +818 1 Carnitas Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +818 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +818 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +818 2 Chips and Guacamole NULL $8.90 +818 1 Chips and Fresh Tomato Salsa NULL $2.95 +819 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +820 1 Veggie Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +820 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +821 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Guacamole]] $10.98 +822 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +822 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +823 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +823 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +823 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +824 1 Chips and Guacamole NULL $3.99 +824 1 Chicken Soft Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream]] $8.49 +825 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Guacamole]] $10.98 +825 1 Side of Chips NULL $1.69 +826 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +827 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +827 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +828 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +828 1 Chips and Fresh Tomato Salsa NULL $2.39 +829 1 Canned Soft Drink [Sprite] $1.25 +829 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $8.75 +829 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +830 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole, Lettuce, Rice]] $11.75 +830 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Guacamole, Sour Cream]] $11.25 +831 2 Chicken Burrito [Fresh Tomato Salsa, [Lettuce, Rice, Black Beans, Cheese]] $17.50 +832 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +832 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $8.49 +832 1 Chips and Fresh Tomato Salsa NULL $2.39 +833 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Guacamole, Lettuce]] $11.25 +833 1 Bottled Water NULL $1.50 +834 1 Veggie Burrito [Fresh Tomato Salsa, [Cheese, Rice, Pinto Beans]] $8.75 +834 2 Bottled Water NULL $3.00 +834 1 Canned Soft Drink [Diet Coke] $1.25 +835 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +835 1 Chips and Guacamole NULL $4.45 +836 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +836 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.75 +836 1 Chips and Guacamole NULL $4.45 +837 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Rice, Fajita Veggies, Guacamole]] $21.96 +838 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +838 1 Chips and Guacamole NULL $4.45 +838 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +839 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole]] $11.25 +839 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa] $9.25 +840 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +840 1 Chips and Fresh Tomato Salsa NULL $2.39 +841 1 Barbacoa Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +841 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +842 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +842 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +842 1 Chips and Guacamole NULL $3.99 +842 1 Izze [Clementine] $3.39 +843 1 Steak Bowl [Tomatillo Red Chili Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +843 1 Bottled Water NULL $1.50 +844 1 Chips and Guacamole NULL $4.45 +844 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +844 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +845 1 Canned Soft Drink [Coke] $1.25 +845 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +846 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +846 1 Bottled Water NULL $1.50 +846 1 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +847 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +847 1 Chips NULL $2.15 +847 1 Bottled Water NULL $1.50 +848 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +848 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +848 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans]] $8.75 +848 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +848 2 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $17.50 +848 1 Chicken Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $8.75 +849 1 6 Pack Soft Drink [Coke] $6.49 +849 1 Chips and Guacamole NULL $4.45 +849 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +850 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Black Beans, Lettuce, Guacamole]] $11.25 +850 2 Chips NULL $4.30 +850 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +851 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +851 1 Chips and Guacamole NULL $4.45 +852 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.99 +852 1 Chips and Fresh Tomato Salsa NULL $2.39 +853 1 Steak Burrito [Roasted Chili Corn Salsa, [Cheese, Black Beans, Lettuce]] $9.25 +853 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Lettuce, Cheese]] $9.25 +854 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +854 1 Chips and Guacamole NULL $4.45 +855 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +855 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +855 1 Chips and Fresh Tomato Salsa NULL $2.95 +855 1 Chips NULL $2.15 +856 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +856 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +857 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +857 1 Chips NULL $2.15 +857 1 Bottled Water NULL $1.50 +858 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +858 1 Chips and Guacamole NULL $4.45 +859 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Guacamole]] $10.98 +859 1 Steak Burrito [Fresh Tomato Salsa (Mild), Black Beans] $8.99 +859 2 Canned Soda [Diet Coke] $2.18 +860 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +860 1 Chips and Guacamole NULL $4.45 +860 1 Canned Soft Drink [Diet Coke] $1.25 +861 1 Steak Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +861 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +862 1 Chips and Guacamole NULL $4.45 +862 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +863 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Guacamole]] $10.98 +864 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +864 1 Bottled Water NULL $1.50 +865 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Guacamole, Rice, Black Beans, Cheese, Sour Cream]] $10.98 +866 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +866 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +866 1 Chips and Guacamole NULL $3.99 +867 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +867 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +868 1 Chips and Guacamole NULL $3.99 +868 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +868 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +868 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +869 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +869 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +870 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +871 1 Chicken Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +872 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +872 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +872 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +873 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +873 1 Canned Soft Drink [Sprite] $1.25 +873 1 Chips and Fresh Tomato Salsa NULL $2.95 +874 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +874 1 Bottled Water NULL $1.50 +875 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Cheese, Guacamole]] $10.98 +875 1 Side of Chips NULL $1.69 +876 1 Chips and Guacamole NULL $4.45 +876 1 Chicken Burrito [Roasted Chili Corn Salsa] $8.75 +877 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $8.75 +877 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +878 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +878 1 Chips and Guacamole NULL $4.45 +879 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $9.25 +879 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +879 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +879 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +880 1 Chips and Guacamole NULL $3.99 +880 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +880 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +881 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +881 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +881 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +882 1 Chips and Guacamole NULL $4.45 +882 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +883 1 Chips and Guacamole NULL $4.45 +883 1 Canned Soft Drink [Diet Coke] $1.25 +883 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +884 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +884 1 Bottled Water NULL $1.50 +884 1 Chips NULL $2.15 +885 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +885 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.75 +886 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +886 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +887 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.75 +887 1 Bottled Water NULL $1.50 +888 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +888 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +888 1 Canned Soft Drink [Sprite] $1.25 +888 1 Chicken Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +888 1 Chips NULL $2.15 +889 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +889 1 Canned Soda [Mountain Dew] $1.09 +890 1 Chips and Guacamole NULL $4.45 +890 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +890 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +891 1 Chips NULL $2.15 +891 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +891 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans]] $8.75 +892 1 Canned Soft Drink [Lemonade] $1.25 +892 1 Steak Bowl [Fresh Tomato Salsa] $9.25 +892 1 Chips NULL $2.15 +893 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +893 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +894 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +894 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +894 1 Chips and Guacamole NULL $4.45 +895 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +895 1 Side of Chips NULL $1.69 +896 1 Veggie Salad Bowl [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +896 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Sour Cream, Cheese]] $8.75 +897 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +897 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +898 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +898 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +898 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +899 1 Chips and Guacamole NULL $4.45 +899 1 Steak Crispy Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +899 1 6 Pack Soft Drink [Coke] $6.49 +900 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Guacamole, Lettuce]] $11.48 +900 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream]] $8.99 +901 4 Canned Soda [Sprite] $4.36 +901 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Sour Cream, Guacamole, Lettuce]] $11.48 +901 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +901 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +902 1 Carnitas Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.48 +903 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +903 1 Chips NULL $2.15 +903 1 Bottled Water NULL $1.50 +904 1 Barbacoa Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +904 1 Side of Chips NULL $1.69 +905 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +905 1 Canned Soft Drink [Nestea] $1.25 +906 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +906 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +907 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +907 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Lettuce]] $9.25 +907 2 Chips and Guacamole NULL $8.90 +907 1 Chips NULL $2.15 +907 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream]] $9.25 +908 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +908 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +909 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +909 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +909 2 Chips NULL $4.30 +910 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +910 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +911 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +911 1 Chips NULL $2.15 +911 1 Canned Soft Drink [Diet Coke] $1.25 +912 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +912 1 Canned Soft Drink [Lemonade] $1.25 +912 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +912 2 Chips and Fresh Tomato Salsa NULL $5.90 +913 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +913 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +913 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +913 1 Chips and Guacamole NULL $4.45 +914 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +914 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +915 2 Canned Soft Drink [Coke] $2.50 +915 1 Steak Bowl [Fresh Tomato Salsa, Rice] $9.25 +915 1 Chips NULL $2.15 +916 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +916 1 Bottled Water NULL $1.50 +916 1 Canned Soft Drink [Coke] $1.25 +916 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +916 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +916 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +916 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +916 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +917 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +918 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +918 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +919 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +919 1 Chips NULL $2.15 +919 1 Canned Soft Drink [Sprite] $1.25 +920 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +921 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +921 1 Chips NULL $2.15 +921 1 Bottled Water NULL $1.50 +922 1 Chicken Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce, Fajita Vegetables, Rice]] $8.75 +922 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +922 1 Canned Soft Drink [Sprite] $1.25 +923 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +923 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +924 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +924 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +925 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +925 1 Chips and Guacamole NULL $4.45 +926 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce]] $9.25 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +926 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Sour Cream]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +926 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream]] $9.25 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +926 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +926 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +926 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +926 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +926 1 Veggie Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +927 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +927 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +928 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +928 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +928 1 Canned Soft Drink [Nestea] $1.25 +929 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +929 1 Bottled Water NULL $1.50 +930 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +930 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +931 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +931 1 Bottled Water NULL $1.50 +931 1 Chips NULL $2.15 +932 2 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies]] $16.98 +933 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +933 1 Bottled Water NULL $1.50 +934 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +934 2 Chips NULL $4.30 +934 1 Bottled Water NULL $1.50 +935 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +935 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +935 1 Canned Soft Drink [Nestea] $1.25 +936 1 Canned Soft Drink [Coke] $1.25 +936 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +936 1 Chips and Guacamole NULL $4.45 +937 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +937 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +937 1 Chips and Guacamole NULL $4.45 +938 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +938 1 Chips NULL $2.15 +938 1 Canned Soft Drink [Sprite] $1.25 +939 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +939 1 Side of Chips NULL $1.69 +940 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +940 1 Canned Soft Drink [Coke] $1.25 +940 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +940 1 Canned Soft Drink [Coke] $1.25 +941 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +941 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +941 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +942 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +942 1 Side of Chips NULL $1.69 +943 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +943 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +944 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +944 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +945 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +945 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +945 1 6 Pack Soft Drink [Sprite] $6.49 +945 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +946 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +946 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +946 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +947 2 Nantucket Nectar [Peach Orange] $6.78 +947 2 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Cheese, Lettuce]] $17.98 +947 1 Nantucket Nectar [Apple] $3.39 +948 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +948 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +948 1 Veggie Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +949 1 Chips and Guacamole NULL $4.45 +949 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce, Guacamole]] $11.75 +949 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $9.25 +949 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese]] $8.75 +949 1 6 Pack Soft Drink [Coke] $6.49 +950 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +950 1 Chips and Fresh Tomato Salsa NULL $2.39 +951 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +951 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +952 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +952 1 Chips and Guacamole NULL $4.45 +952 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +952 1 Chips NULL $2.15 +953 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +953 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +953 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +953 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole]] $11.89 +953 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.75 +953 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole]] $11.25 +953 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $9.25 +953 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Lettuce]] $9.25 +954 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +954 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +955 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +955 1 Side of Chips NULL $1.69 +955 1 Bottled Water NULL $1.09 +956 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +956 1 Bottled Water NULL $1.50 +957 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +957 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +958 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +958 1 Bottled Water NULL $1.50 +959 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Cheese, Lettuce]] $8.49 +959 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Lettuce]] $8.99 +960 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +961 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +961 2 Chips NULL $4.30 +962 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Fajita Vegetables] $8.75 +962 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +962 1 Chips NULL $2.15 +963 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +963 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +964 1 Chips and Guacamole NULL $4.45 +964 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +965 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +965 1 Nantucket Nectar [Pomegranate Cherry] $3.39 +965 1 Chips and Fresh Tomato Salsa NULL $2.39 +966 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +966 1 Chips NULL $2.15 +966 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +967 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +967 1 Chips and Fresh Tomato Salsa NULL $2.39 +968 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +968 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +969 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +969 1 Canned Soft Drink [Diet Coke] $1.25 +970 5 Bottled Water NULL $7.50 +970 1 Barbacoa Salad Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.89 +971 1 Canned Soda [Coca Cola] $1.09 +971 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +971 1 Chips and Fresh Tomato Salsa NULL $2.39 +972 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +972 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +972 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +973 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +973 1 Steak Soft Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +973 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +973 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +973 2 Chips and Guacamole NULL $8.90 +974 1 Carnitas Burrito [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +974 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +975 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +975 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +975 2 Bottled Water NULL $3.00 +976 1 Bottled Water NULL $1.50 +976 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +976 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Cheese, Guacamole]] $11.75 +977 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Lettuce]] $8.99 +977 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +978 1 Chips and Guacamole NULL $4.45 +978 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $8.75 +978 1 Chips NULL $2.15 +979 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +979 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +979 1 Chips and Guacamole NULL $4.45 +980 1 Side of Chips NULL $1.69 +980 1 Veggie Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +981 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +981 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +982 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +982 1 Chips and Guacamole NULL $4.45 +983 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +983 1 Chips and Guacamole NULL $3.99 +983 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +984 1 Canned Soft Drink [Coke] $1.25 +984 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Lettuce]] $9.25 +984 1 Chips and Guacamole NULL $4.45 +985 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +986 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +986 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +987 1 Steak Burrito [Tomatillo Green Chili Salsa, [Lettuce, Guacamole, Sour Cream, Cheese, Fajita Vegetables, Rice]] $11.75 +987 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Sour Cream, Rice, Fajita Vegetables, Lettuce]] $11.25 +988 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Cheese, Lettuce]] $8.49 +988 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Pinto Beans, Cheese, Guacamole, Lettuce]] $11.48 +989 1 Chips and Guacamole NULL $4.45 +989 1 Canned Soft Drink [Diet Coke] $1.25 +989 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +990 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +990 1 Canned Soda [Coca Cola] $1.09 +990 1 Chips and Fresh Tomato Salsa NULL $2.39 +991 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Sour Cream, Fajita Vegetables, Rice]] $11.25 +991 1 Chips NULL $2.15 +992 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +992 1 Chips and Guacamole NULL $4.45 +993 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +993 1 Side of Chips NULL $1.69 +994 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Guacamole, Lettuce]] $10.98 +994 1 Side of Chips NULL $1.69 +995 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +995 1 Chips and Guacamole NULL $4.45 +995 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +996 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +996 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +996 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +996 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +997 2 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $22.50 +998 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +998 1 Chips and Fresh Tomato Salsa NULL $2.39 +999 2 Canned Soft Drink [Sprite] $2.50 +999 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +999 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +999 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $9.25 +1000 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1000 1 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1001 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1001 1 Canned Soda [Coca Cola] $1.09 +1002 1 Barbacoa Burrito [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1002 1 Side of Chips NULL $1.69 +1003 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1003 1 Canned Soft Drink [Diet Coke] $1.25 +1004 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Pinto Beans, Sour Cream, Cheese, Guacamole]] $21.96 +1005 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1005 1 Chips NULL $2.15 +1005 1 Canned Soft Drink [Coke] $1.25 +1006 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce]] $8.75 +1006 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1006 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1006 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1006 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1006 1 Chips NULL $2.15 +1007 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese]] $8.99 +1007 1 Canned Soda [Diet Dr. Pepper] $1.09 +1007 1 Side of Chips NULL $1.69 +1008 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1008 1 Chips NULL $2.15 +1008 1 Canned Soft Drink [Sprite] $1.25 +1009 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1009 1 Canned Soda [Diet Coke] $1.09 +1009 1 Bottled Water NULL $1.09 +1009 1 Side of Chips NULL $1.69 +1010 1 Carnitas Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Cheese, Guacamole]] $11.48 +1010 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1010 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.49 +1010 2 Chips and Tomatillo-Red Chili Salsa NULL $4.78 +1011 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Lettuce, Sour Cream, Cheese, Rice]] $9.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1011 1 Canned Soft Drink [Coke] $1.25 +1012 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1012 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1013 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1013 1 Chips and Guacamole NULL $4.45 +1013 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1013 1 Chips and Guacamole NULL $4.45 +1014 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Cheese, Rice, Pinto Beans, Sour Cream]] $8.99 +1014 1 Canned Soda [Coca Cola] $1.09 +1015 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1015 1 Chips NULL $2.15 +1016 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1016 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +1016 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1017 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1017 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1018 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream]] $9.25 +1018 1 Chips and Fresh Tomato Salsa NULL $2.95 +1019 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1019 1 Chips and Guacamole NULL $4.45 +1020 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1020 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1020 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1021 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1021 1 Bottled Water NULL $1.50 +1022 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1023 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1024 2 Carnitas Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $18.50 +1025 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1025 1 Chips and Guacamole NULL $3.99 +1025 1 Canned Soda [Mountain Dew] $1.09 +1026 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1026 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1026 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1026 1 Chips and Guacamole NULL $4.45 +1027 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1028 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1028 1 Chips and Guacamole NULL $4.45 +1029 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1029 1 Canned Soft Drink [Diet Coke] $1.25 +1029 1 Chips and Guacamole NULL $4.45 +1030 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese]] $9.25 +1030 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1030 1 Chicken Bowl [Tomatillo Red Chili Salsa, Fajita Vegetables] $8.75 +1031 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1031 1 Chips and Guacamole NULL $4.45 +1032 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $9.39 +1032 1 Canned Soft Drink [Diet Coke] $1.25 +1032 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1033 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +1033 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1033 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1034 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Fajita Vegetables, Rice, Guacamole, Cheese]] $11.25 +1034 1 Chips NULL $2.15 +1035 2 Chips and Guacamole NULL $8.90 +1035 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1035 1 Carnitas Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1036 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1037 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1037 1 Chips and Guacamole NULL $4.45 +1038 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1038 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1039 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1039 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1040 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Lettuce]] $8.49 +1040 1 Izze [Clementine] $3.39 +1041 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1041 1 Chicken Bowl [Tomatillo Red Chili Salsa, Rice] $8.75 +1041 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1042 2 Bottled Water NULL $3.00 +1042 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $9.39 +1043 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Guacamole]] $11.75 +1043 1 Chips and Fresh Tomato Salsa NULL $2.95 +1044 1 Bottled Water NULL $1.50 +1044 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1044 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1045 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1045 1 Chips NULL $2.15 +1045 1 Bottled Water NULL $1.50 +1046 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Lettuce]] $8.49 +1046 1 Izze [Clementine] $3.39 +1047 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1047 1 Canned Soft Drink [Diet Coke] $1.25 +1048 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1049 1 Veggie Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole]] $11.25 +1049 1 Canned Soft Drink [Nestea] $1.25 +1050 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1050 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1050 1 Canned Soft Drink [Lemonade] $1.25 +1051 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1051 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1051 3 Chips and Guacamole NULL $13.35 +1051 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1051 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1052 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1052 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1052 1 Chips and Guacamole NULL $4.45 +1052 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Guacamole]] $11.25 +1053 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1053 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1054 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1054 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1055 2 Chips and Tomatillo-Green Chili Salsa NULL $4.78 +1055 1 Chips and Fresh Tomato Salsa NULL $2.39 +1055 1 Chips and Guacamole NULL $3.99 +1056 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1056 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1057 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1057 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1057 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1058 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1058 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1058 1 Chips and Guacamole NULL $4.45 +1059 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1059 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1059 1 Chips and Guacamole NULL $4.45 +1060 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Lettuce]] $8.49 +1060 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1061 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Sour Cream, Guacamole]] $10.98 +1062 1 Veggie Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1062 1 Chips and Guacamole NULL $3.99 +1063 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1063 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1064 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1064 1 Chips and Guacamole NULL $4.45 +1064 1 Bottled Water NULL $1.50 +1064 1 Canned Soft Drink [Sprite] $1.25 +1065 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1065 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1066 1 Veggie Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1066 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1067 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1067 1 Carnitas Burrito [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1068 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1068 1 Chips and Fresh Tomato Salsa NULL $2.95 +1068 1 Canned Soft Drink [Diet Coke] $1.25 +1069 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole]] $11.25 +1069 1 Bottled Water NULL $1.50 +1070 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole, Rice]] $11.25 +1070 1 Chips and Guacamole NULL $4.45 +1070 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1070 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1071 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1071 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1071 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1071 1 Chips and Guacamole NULL $4.45 +1071 1 Bottled Water NULL $1.50 +1072 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1072 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +1073 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1073 1 Side of Chips NULL $1.69 +1074 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1074 1 Chips NULL $2.15 +1074 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1074 1 Chips NULL $2.15 +1075 1 Bottled Water NULL $1.50 +1075 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1076 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1076 1 Chips NULL $2.15 +1076 1 6 Pack Soft Drink [Coke] $6.49 +1077 1 Steak Burrito [Roasted Chili Corn Salsa, [Cheese, Black Beans, Lettuce]] $9.25 +1077 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $9.25 +1078 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1078 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1079 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1079 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1080 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1080 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1081 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1081 1 Chips NULL $2.15 +1081 1 Canned Soft Drink [Nestea] $1.25 +1082 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1082 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $9.25 +1082 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1083 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +1083 2 Chips and Fresh Tomato Salsa NULL $5.90 +1084 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1084 1 Chips and Guacamole NULL $4.45 +1085 1 Steak Soft Tacos [Fresh Tomato Salsa, Sour Cream] $9.25 +1085 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1085 1 Chips and Guacamole NULL $4.45 +1086 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1086 1 Chips and Guacamole NULL $4.45 +1087 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1087 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1087 1 Chips NULL $2.15 +1088 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +1088 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Guacamole]] $11.25 +1089 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1089 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1089 1 Bottled Water NULL $1.50 +1090 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +1090 2 Chips NULL $4.30 +1091 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1091 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1091 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1092 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1092 1 Chips NULL $2.15 +1092 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1093 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1093 1 Bottled Water NULL $1.09 +1094 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1094 1 Veggie Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1095 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1095 1 Izze [Blackberry] $3.39 +1095 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese]] $8.99 +1096 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1096 1 Chips and Guacamole NULL $3.99 +1097 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1097 1 Chips NULL $2.15 +1097 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1097 1 Chips and Guacamole NULL $4.45 +1097 2 Canned Soft Drink [Diet Coke] $2.50 +1098 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Guacamole]] $11.48 +1098 1 Canned Soda [Sprite] $1.09 +1099 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1099 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1100 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1101 1 Chips and Guacamole NULL $3.99 +1101 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1101 1 Canned Soda [Sprite] $1.09 +1102 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1102 1 Chips and Fresh Tomato Salsa NULL $2.95 +1102 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans]] $8.75 +1103 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1103 1 Chips and Fresh Tomato Salsa NULL $2.95 +1103 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1104 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Sour Cream, Fajita Vegetables, Rice]] $11.25 +1104 1 Chips NULL $2.15 +1105 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1105 1 Chips and Guacamole NULL $4.45 +1106 1 Chips and Guacamole NULL $4.45 +1106 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1106 1 Barbacoa Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce, Guacamole]] $11.75 +1107 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1107 1 Chips NULL $2.15 +1108 1 Carnitas Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1108 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1109 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1109 1 6 Pack Soft Drink [Diet Coke] $6.49 +1110 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1110 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1110 1 Chips and Fresh Tomato Salsa NULL $2.95 +1111 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1111 1 Chips and Guacamole NULL $3.99 +1112 1 Bottled Water NULL $1.50 +1112 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1112 1 Chips NULL $2.15 +1113 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1113 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1114 1 Steak Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1114 1 Chips and Guacamole NULL $4.45 +1114 1 Bottled Water NULL $1.50 +1114 1 Canned Soft Drink [Coke] $1.25 +1115 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1115 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1115 1 Chips and Guacamole NULL $4.45 +1116 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1116 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1117 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1117 1 Canned Soda [Diet Dr. Pepper] $1.09 +1117 1 Bottled Water NULL $1.09 +1117 1 Side of Chips NULL $1.69 +1118 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1118 1 Nantucket Nectar [Apple] $3.39 +1119 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1119 1 Side of Chips NULL $1.69 +1120 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1120 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1121 3 Bottled Water NULL $3.27 +1121 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.99 +1122 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1122 1 Canned Soda [Coca Cola] $1.09 +1123 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1123 1 Side of Chips NULL $1.69 +1124 1 Chips and Guacamole NULL $3.99 +1124 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.49 +1124 1 Canned Soda [Coca Cola] $1.09 +1125 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1125 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1126 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1126 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1127 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $9.25 +1127 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1128 1 Nantucket Nectar [Peach Orange] $3.39 +1128 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1128 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.99 +1128 1 Chips and Fresh Tomato Salsa NULL $2.39 +1129 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1129 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1130 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream]] $9.25 +1130 1 Steak Burrito [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +1131 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Cheese, Lettuce]] $8.99 +1131 1 Chips and Guacamole NULL $3.99 +1131 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1132 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1132 1 Canned Soda [Diet Coke] $1.09 +1132 1 Veggie Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1133 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1133 1 Nantucket Nectar [Apple] $3.39 +1134 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Lettuce, Guacamole]] $11.25 +1134 1 Canned Soft Drink [Diet Coke] $1.25 +1135 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1135 1 Chips and Guacamole NULL $3.99 +1136 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1136 2 Chips and Guacamole NULL $8.90 +1136 1 6 Pack Soft Drink [Diet Coke] $6.49 +1137 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1137 1 Steak Crispy Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream]] $9.25 +1138 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Guacamole, Lettuce]] $11.25 +1138 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1139 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1139 1 Canned Soft Drink [Sprite] $1.25 +1140 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1140 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Pinto Beans, Cheese, Sour Cream]] $9.25 +1140 1 Chips and Guacamole NULL $4.45 +1140 1 Canned Soft Drink [Coke] $1.25 +1141 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1141 1 Canned Soft Drink [Coke] $1.25 +1141 1 Chips NULL $2.15 +1142 2 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $17.98 +1142 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1143 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +1143 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1143 1 Canned Soft Drink [Coke] $1.25 +1144 1 Steak Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1144 1 Bottled Water NULL $1.50 +1144 1 Bottled Water NULL $1.50 +1145 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans]] $8.75 +1145 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1146 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Black Beans, Guacamole, Rice, Sour Cream, Cheese]] $11.08 +1147 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1147 1 Side of Chips NULL $1.69 +1148 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1148 1 Side of Chips NULL $1.69 +1149 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Guacamole]] $10.98 +1149 1 Chips and Guacamole NULL $3.99 +1149 1 Izze [Blackberry] $3.39 +1150 1 Steak Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1150 1 Chips NULL $2.15 +1151 1 Steak Burrito [Fresh Tomato Salsa, [Sour Cream, Rice, Guacamole, Lettuce]] $11.75 +1151 1 Chips and Fresh Tomato Salsa NULL $2.95 +1152 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1152 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, Cheese] $8.75 +1153 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1153 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1154 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1154 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1154 1 Chips and Guacamole NULL $4.45 +1155 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1155 1 Canned Soft Drink [Diet Coke] $1.25 +1156 2 Canned Soda [Coca Cola] $2.18 +1156 2 Canned Soda [Sprite] $2.18 +1156 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1156 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream, Lettuce]] $8.49 +1156 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1156 1 Chips and Fresh Tomato Salsa NULL $2.39 +1157 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1157 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1158 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.75 +1158 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce, Guacamole]] $11.75 +1159 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1159 1 Chips and Guacamole NULL $4.45 +1159 1 Chips NULL $2.15 +1160 1 Chicken Bowl [Fresh Tomato (Mild), [Rice, Sour Cream, Cheese]] $8.19 +1160 1 Chicken Bowl [Fresh Tomato (Mild), [Guacamole, Rice]] $10.58 +1161 1 Chips and Guacamole NULL $4.45 +1161 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1162 1 Bottled Water NULL $1.09 +1162 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1163 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1163 1 Bottled Water NULL $1.50 +1164 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1164 1 Chips and Guacamole NULL $3.99 +1165 1 Chips and Guacamole NULL $4.45 +1165 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1165 1 Chips NULL $2.15 +1166 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1166 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +1166 1 Chips and Guacamole NULL $4.45 +1167 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1167 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $9.25 +1167 3 Chips NULL $6.45 +1167 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1168 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1168 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1169 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1169 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1170 2 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $21.96 +1170 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese]] $8.99 +1170 3 Side of Chips NULL $5.07 +1170 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1171 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1171 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1171 1 Chips and Guacamole NULL $4.45 +1172 1 Nantucket Nectar [Peach Orange] $3.39 +1172 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1173 1 Carnitas Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1173 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1174 2 Chicken Burrito [Fresh Tomato Salsa, [Cheese, Rice, Black Beans, Lettuce]] $17.50 +1175 2 Steak Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $22.96 +1176 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1176 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1176 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.89 +1176 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1177 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +1177 1 Side of Chips NULL $1.69 +1177 1 Canned Soda [Sprite] $1.09 +1178 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1178 1 Steak Crispy Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1179 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1179 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1180 1 Barbacoa Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +1180 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1181 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1181 1 Chips and Guacamole NULL $3.99 +1182 1 Steak Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1182 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1182 3 Chips and Tomatillo-Red Chili Salsa NULL $7.17 +1182 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1182 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese]] $8.99 +1183 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1184 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1184 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1185 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1185 1 Canned Soft Drink [Coke] $1.25 +1186 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1186 1 Bottled Water NULL $1.09 +1187 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1187 1 Chips and Guacamole NULL $4.45 +1188 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Fajita Vegetables, Rice, Guacamole, Cheese]] $11.25 +1188 1 Chips NULL $2.15 +1188 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1189 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1189 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole]] $11.25 +1189 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1190 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1190 1 Chips and Guacamole NULL $4.45 +1190 1 Canned Soft Drink [Diet Coke] $1.25 +1191 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1191 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1191 2 Canned Soft Drink [Sprite] $2.50 +1192 1 Veggie Salad [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1192 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1192 2 Bottled Water NULL $2.18 +1193 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1193 1 Chips and Guacamole NULL $4.45 +1193 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +1193 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1194 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1194 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1194 1 Side of Chips NULL $1.69 +1195 1 Canned Soda [Coca Cola] $1.09 +1195 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1195 1 Barbacoa Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1196 1 Chicken Bowl [Fresh Tomato Salsa, [Sour Cream, Guacamole, Lettuce]] $11.25 +1196 1 6 Pack Soft Drink [Diet Coke] $6.49 +1196 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1197 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1197 1 Chips and Guacamole NULL $4.45 +1198 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1198 1 Side of Chips NULL $1.69 +1199 1 Steak Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole]] $11.48 +1200 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1200 2 Canned Soft Drink [Diet Coke] $2.50 +1201 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Cheese, Lettuce, Rice, Black Beans]] $8.49 +1201 1 Canned Soda [Diet Dr. Pepper] $1.09 +1201 1 Bottled Water NULL $1.09 +1201 1 Side of Chips NULL $1.69 +1202 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1202 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1203 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.75 +1203 1 Canned Soft Drink [Sprite] $1.25 +1204 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1204 1 Side of Chips NULL $1.69 +1205 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1205 1 Side of Chips NULL $1.69 +1206 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +1206 1 Chips and Guacamole NULL $4.45 +1206 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +1207 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1207 1 Chips and Guacamole NULL $4.45 +1208 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1208 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1209 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1209 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1210 2 Chips and Guacamole NULL $7.98 +1210 1 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), Fajita Veggies] $8.49 +1210 1 Bottled Water NULL $1.09 +1211 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.49 +1211 1 Chips and Guacamole NULL $3.99 +1212 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1212 1 Chips and Guacamole NULL $3.99 +1213 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1213 1 Chips and Guacamole NULL $3.99 +1214 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +1214 1 Chips and Guacamole NULL $4.45 +1215 1 Chicken Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Lettuce]] $8.49 +1215 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1216 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1216 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1217 1 Chips and Guacamole NULL $3.99 +1217 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1218 1 Canned Soft Drink [Coke] $1.25 +1218 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +1218 1 Chips and Guacamole NULL $4.45 +1219 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1219 1 Chips and Guacamole NULL $4.45 +1220 1 Canned Soda [Dr. Pepper] $1.09 +1220 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +1220 1 Chips and Guacamole NULL $3.99 +1221 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1221 2 Chips and Guacamole NULL $8.90 +1221 1 Carnitas Soft Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1222 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1222 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1223 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1223 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1223 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1224 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1224 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1225 1 Steak Crispy Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream, Lettuce]] $8.99 +1225 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1226 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream]] $8.75 +1226 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Cheese, Sour Cream, Lettuce]] $8.75 +1226 1 Chips and Guacamole NULL $4.45 +1227 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1228 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1228 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1228 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1228 1 Chips and Guacamole NULL $4.45 +1229 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1229 1 Chips and Fresh Tomato Salsa NULL $2.95 +1230 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Fajita Veggies, Lettuce, Rice, Black Beans]] $8.49 +1230 1 Side of Chips NULL $1.69 +1231 3 Canned Soft Drink [Diet Coke] $3.75 +1231 1 Chips and Guacamole NULL $4.45 +1231 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1232 1 Bottled Water NULL $1.50 +1232 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Sour Cream, Cheese, Guacamole, Lettuce, Black Beans, Rice]] $11.25 +1233 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1234 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.25 +1234 1 Chips NULL $2.15 +1235 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1235 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1236 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +1236 1 Chips and Guacamole NULL $3.99 +1237 1 Chicken Bowl [Fresh Tomato (Mild), [Lettuce, Fajita Veggies, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1237 1 Chips and Fresh Tomato Salsa NULL $2.29 +1238 1 Carnitas Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Cheese, Guacamole, Lettuce]] $11.48 +1238 1 Side of Chips NULL $1.69 +1239 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +1239 1 Chips and Guacamole NULL $3.99 +1240 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1240 1 Side of Chips NULL $1.69 +1241 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1241 1 Chips and Fresh Tomato Salsa NULL $2.95 +1242 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1242 1 Side of Chips NULL $1.69 +1243 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1243 1 Chips and Guacamole NULL $4.45 +1243 1 Carnitas Salad Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1243 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1243 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1244 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1244 1 Chips and Guacamole NULL $4.45 +1244 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1244 1 Chips and Guacamole NULL $4.45 +1245 1 Chips and Guacamole NULL $4.45 +1245 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1246 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1246 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1246 1 Chips NULL $2.15 +1247 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Sour Cream, Cheese, Rice]] $8.75 +1247 3 Canned Soft Drink [Diet Coke] $3.75 +1248 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1248 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1248 1 Chips and Guacamole NULL $4.45 +1248 1 6 Pack Soft Drink [Diet Coke] $6.49 +1249 2 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Fajita Veggies, Rice]] $16.98 +1250 2 Steak Burrito [Tomatillo Red Chili Salsa, [Cheese, Black Beans, Rice, Lettuce, Sour Cream]] $18.50 +1250 2 Canned Soft Drink [Coke] $2.50 +1250 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1251 1 Chips and Guacamole NULL $3.99 +1251 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1252 1 Chicken Burrito [[Rice, Cheese]] $8.19 +1252 1 Steak Burrito [Fresh Tomato (Mild), [Black Beans, Guacamole, Rice, Sour Cream, Cheese]] $11.08 +1253 1 6 Pack Soft Drink [Lemonade] $6.49 +1253 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1254 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1254 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1254 1 Canned Soda [Diet Dr. Pepper] $1.09 +1255 1 Veggie Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1255 1 Chips and Guacamole NULL $4.45 +1255 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +1256 1 Barbacoa Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1256 1 Side of Chips NULL $1.69 +1257 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1258 2 Canned Soda [Dr. Pepper] $2.18 +1258 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Sour Cream]] $8.99 +1259 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1259 1 Chips and Fresh Tomato Salsa NULL $2.39 +1260 1 Barbacoa Burrito [[Black Beans, Rice, Cheese]] $8.69 +1260 1 Side of Chips NULL $1.69 +1261 2 Chips and Guacamole NULL $8.90 +1261 2 Canned Soft Drink [Diet Coke] $2.50 +1261 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1262 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1262 1 Canned Soda [Coca Cola] $1.09 +1263 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1263 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1264 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1264 1 Chips and Guacamole NULL $4.45 +1265 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Lettuce]] $17.50 +1266 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Lettuce]] $8.75 +1266 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Lettuce]] $9.25 +1267 1 Chicken Burrito [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1267 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1268 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1268 1 Chips and Guacamole NULL $4.45 +1269 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Lettuce, Pinto Beans, Black Beans, Guacamole, Cheese]] $11.25 +1269 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole, Fajita Vegetables, Rice, Black Beans, Lettuce]] $11.25 +1270 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1270 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese]] $8.75 +1271 1 Chicken Bowl [Fresh Tomato Salsa (Mild), Lettuce] $8.49 +1271 1 Chicken Bowl [Fresh Tomato Salsa (Mild), Cheese] $8.49 +1271 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), Cheese] $8.49 +1271 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), Lettuce] $8.99 +1272 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1272 1 Chips and Guacamole NULL $4.45 +1273 1 Barbacoa Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Guacamole]] $11.48 +1274 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1274 1 Canned Soft Drink [Coke] $1.25 +1274 1 Chips NULL $2.15 +1275 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1275 1 Chips and Guacamole NULL $4.45 +1276 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1276 1 Chips NULL $2.15 +1276 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1277 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Pinto Beans, Cheese, Lettuce]] $8.99 +1277 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1278 1 Barbacoa Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice]] $8.69 +1278 1 Steak Bowl [Fresh Tomato (Mild), [Lettuce, Black Beans, Rice]] $8.69 +1279 1 Steak Burrito [Fresh Tomato Salsa, [Guacamole, Lettuce, Sour Cream, Rice]] $11.75 +1279 1 Chips and Fresh Tomato Salsa NULL $2.95 +1280 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1280 1 Bottled Water NULL $1.50 +1281 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1281 1 Chips and Guacamole NULL $4.45 +1281 1 Bottled Water NULL $1.50 +1282 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $11.48 +1282 1 Steak Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Sour Cream]] $8.99 +1282 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1283 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1283 1 Barbacoa Salad Bowl [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Sour Cream, Guacamole]] $11.89 +1283 1 Chips NULL $2.15 +1283 1 Canned Soft Drink [Diet Coke] $1.25 +1284 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1284 1 Chips and Guacamole NULL $4.45 +1285 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +1285 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1286 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1286 1 Chips and Guacamole NULL $4.45 +1287 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1287 1 Chips NULL $2.15 +1287 1 Chips and Guacamole NULL $4.45 +1288 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Sour Cream]] $8.49 +1288 1 Canned Soda [Mountain Dew] $1.09 +1288 1 Chips and Guacamole NULL $3.99 +1289 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +1289 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1290 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1290 1 Chips and Fresh Tomato Salsa NULL $2.39 +1291 1 Steak Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1291 1 Chips and Fresh Tomato Salsa NULL $2.39 +1292 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Cheese, Rice, Sour Cream, Fajita Vegetables]] $11.25 +1292 1 Chips NULL $2.15 +1293 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1293 1 Chips and Fresh Tomato Salsa NULL $2.95 +1293 1 Canned Soft Drink [Coke] $1.25 +1294 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1294 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1295 2 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Pinto Beans, Rice]] $17.50 +1296 1 Steak Burrito [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1296 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1297 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1297 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1298 1 Chips and Guacamole NULL $4.45 +1298 2 Canned Soft Drink [Diet Coke] $2.50 +1298 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1299 1 Carnitas Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Lettuce]] $8.99 +1299 1 Barbacoa Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1299 1 Side of Chips NULL $1.69 +1300 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1300 1 Side of Chips NULL $1.69 +1301 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1301 1 Canned Soft Drink [Diet Coke] $1.25 +1302 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Guacamole, Pinto Beans, Rice, Sour Cream, Cheese]] $11.08 +1302 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Rice]] $8.69 +1303 1 Barbacoa Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1303 1 Canned Soda [Sprite] $1.09 +1304 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1304 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1304 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1304 1 Canned Soft Drink [Sprite] $1.25 +1305 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +1305 1 Canned Soft Drink [Diet Coke] $1.25 +1305 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1306 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1306 1 Chips NULL $2.15 +1306 1 Canned Soft Drink [Sprite] $1.25 +1307 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1307 1 Chips and Guacamole NULL $3.99 +1308 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1308 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1309 1 Chicken Bowl [[Tomatillo-Red Chili Salsa (Hot), Tomatillo-Green Chili Salsa (Medium)], [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1309 3 Chips and Tomatillo-Red Chili Salsa NULL $7.17 +1310 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1310 1 Chips and Guacamole NULL $4.45 +1311 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Guacamole, Lettuce, Sour Cream, Rice, Cheese, Black Beans]] $11.48 +1312 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1312 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +1313 1 Barbacoa Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1314 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1314 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1315 1 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $8.49 +1315 1 Chips and Guacamole NULL $3.99 +1316 1 Bottled Water NULL $1.50 +1316 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1317 1 Chicken Bowl [Fresh Tomato Salsa, [Lettuce, Fajita Vegetables, Guacamole, Rice, Black Beans]] $11.25 +1317 1 Chicken Bowl [Fresh Tomato Salsa, [Lettuce, Cheese, Pinto Beans, Rice]] $8.75 +1318 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1318 1 Chips and Guacamole NULL $4.45 +1319 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1319 1 Chips and Guacamole NULL $4.45 +1320 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1320 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese]] $8.75 +1320 2 Chips NULL $4.30 +1320 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1321 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1321 3 Bottled Water NULL $4.50 +1322 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce, Pinto Beans]] $9.25 +1322 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Guacamole, Cheese, Sour Cream]] $11.25 +1322 1 Chips and Guacamole NULL $4.45 +1323 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1323 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1323 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1323 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +1324 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1324 1 Chips NULL $2.15 +1324 1 Canned Soft Drink [Sprite] $1.25 +1325 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1325 1 Chips NULL $2.15 +1325 1 Canned Soft Drink [Nestea] $1.25 +1326 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese]] $8.99 +1326 1 Chicken Crispy Tacos [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Cheese]] $8.49 +1327 1 Chicken Salad Bowl [Fresh Tomato Salsa] $8.75 +1327 1 Chicken Bowl [Fresh Tomato Salsa] $8.75 +1327 1 Canned Soft Drink [Sprite] $1.25 +1328 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1328 3 Bottled Water NULL $4.50 +1329 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Lettuce]] $8.75 +1329 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1330 1 Chips and Guacamole NULL $3.99 +1330 1 Nantucket Nectar [Peach Orange] $3.39 +1330 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1330 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1330 1 Barbacoa Crispy Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1331 1 Bottled Water NULL $1.50 +1331 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1331 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1332 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1332 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1332 1 Chips NULL $2.15 +1333 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1333 1 Chips NULL $2.15 +1333 1 Canned Soft Drink [Sprite] $1.25 +1334 2 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $21.96 +1335 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1335 1 Side of Chips NULL $1.69 +1336 3 Steak Bowl [Tomatillo Green Chili (Medium), [Rice, Black Beans, Sour Cream, Cheese]] $26.07 +1337 1 Steak Bowl [Fresh Tomato Salsa, [Cheese, Black Beans, Pinto Beans, Guacamole, Sour Cream]] $11.75 +1337 1 Bottled Water NULL $1.50 +1338 1 Steak Bowl [[Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Lettuce]] $8.99 +1338 1 Carnitas Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Pinto Beans, Lettuce]] $8.99 +1339 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1340 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1340 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1341 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1341 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1341 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Lettuce]] $8.75 +1341 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1341 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice]] $8.75 +1342 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce, Cheese]] $8.75 +1342 1 Chips NULL $2.15 +1342 1 Canned Soft Drink [Sprite] $1.25 +1343 1 Steak Salad Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.89 +1343 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1344 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1344 1 Chips and Guacamole NULL $4.45 +1345 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $18.50 +1346 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $9.25 +1346 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.39 +1347 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1347 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1348 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1348 1 Side of Chips NULL $1.69 +1348 1 Bottled Water NULL $1.09 +1349 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream]] $8.99 +1349 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1349 2 Canned Soda [Coca Cola] $2.18 +1350 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1350 1 Canned Soft Drink [Nestea] $1.25 +1351 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1351 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1352 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1352 1 Chips and Guacamole NULL $3.99 +1353 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1353 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1354 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1354 1 Side of Chips NULL $1.69 +1355 2 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $16.98 +1356 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1356 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1356 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.75 +1356 1 Canned Soft Drink [Diet Coke] $1.25 +1357 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1357 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Cheese, Lettuce]] $8.75 +1358 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Black Beans, Cheese, Lettuce]] $8.49 +1358 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Rice, Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1359 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1359 1 Canned Soft Drink [Diet Coke] $1.25 +1359 1 Canned Soft Drink [Lemonade] $1.25 +1359 1 Canned Soft Drink [Nestea] $1.25 +1360 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1360 2 6 Pack Soft Drink [Diet Coke] $12.98 +1360 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1360 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1360 1 Chips and Guacamole NULL $4.45 +1361 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1361 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1362 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1362 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +1363 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Cheese, Sour Cream, Lettuce]] $8.49 +1363 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1364 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Lettuce, Cheese, Rice]] $9.25 +1364 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Guacamole, Cheese, Sour Cream]] $11.25 +1365 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Cheese, Lettuce, Rice, Pinto Beans]] $8.75 +1365 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1365 1 Bottled Water NULL $1.50 +1366 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1366 1 Chips and Fresh Tomato Salsa NULL $2.95 +1367 1 Steak Crispy Tacos [Fresh Tomato Salsa, Lettuce] $9.25 +1367 1 Chips and Fresh Tomato Salsa NULL $2.95 +1367 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1367 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1368 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1368 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Pinto Beans, Lettuce]] $8.75 +1369 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1369 1 Chips and Guacamole NULL $4.45 +1370 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1370 1 Canned Soft Drink [Coke] $1.25 +1371 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1371 1 Chips and Fresh Tomato Salsa NULL $2.95 +1371 2 Canned Soft Drink [Diet Coke] $2.50 +1372 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1372 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1373 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1373 1 6 Pack Soft Drink [Coke] $6.49 +1374 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $17.50 +1375 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1375 1 Side of Chips NULL $1.69 +1376 1 Chicken Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1376 1 Chips and Guacamole NULL $3.99 +1377 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Black Beans, Rice]] $8.75 +1377 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1377 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1378 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Lettuce]] $8.49 +1378 1 Steak Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Lettuce]] $8.99 +1379 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream]] $8.99 +1379 1 Canned Soda [Sprite] $1.09 +1380 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1380 1 Chips and Guacamole NULL $4.45 +1380 1 Canned Soft Drink [Coke] $1.25 +1381 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1381 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1382 1 Chicken Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +1382 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1383 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Guacamole, Lettuce]] $11.25 +1383 1 Bottled Water NULL $1.50 +1384 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Guacamole]] $11.25 +1384 1 Chips NULL $2.15 +1385 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1386 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1386 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.75 +1387 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1387 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1388 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1388 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Sour Cream, Lettuce]] $9.25 +1389 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +1389 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $9.25 +1389 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1390 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $8.75 +1390 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese]] $8.75 +1390 1 Canned Soft Drink [Coke] $1.25 +1391 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1391 1 Bottled Water NULL $1.50 +1391 1 Chips NULL $2.15 +1392 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1392 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1392 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1393 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1393 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $8.75 +1394 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1394 1 Chips and Guacamole NULL $4.45 +1395 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Sour Cream, Lettuce]] $8.49 +1395 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Sour Cream]] $8.49 +1395 1 Veggie Salad [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1396 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa (Medium), [Cheese, Sour Cream, Lettuce]] $8.49 +1396 1 Steak Soft Tacos [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +1396 1 Side of Chips NULL $1.69 +1396 1 Chips and Fresh Tomato Salsa NULL $2.39 +1396 1 Canned Soda [Coca Cola] $1.09 +1396 1 Canned Soda [Dr. Pepper] $1.09 +1397 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1397 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1398 3 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $35.25 +1399 1 Chicken Bowl [Fresh Tomato Salsa, [Cheese, Rice, Black Beans]] $8.75 +1399 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1399 1 Canned Soft Drink [Sprite] $1.25 +1400 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Sour Cream, Cheese, Rice, Fajita Vegetables]] $11.25 +1400 1 Chips NULL $2.15 +1401 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Lettuce]] $9.25 +1401 1 Chips and Guacamole NULL $4.45 +1402 1 Chicken Burrito [Roasted Chili Corn Salsa, Fajita Vegetables] $8.75 +1402 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1402 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Sour Cream]] $8.75 +1402 1 Chips and Guacamole NULL $4.45 +1403 1 Canned Soft Drink [Diet Coke] $1.25 +1403 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole, Lettuce]] $11.89 +1404 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1404 1 Chips NULL $2.15 +1404 1 Canned Soft Drink [Diet Coke] $1.25 +1405 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1405 1 Canned Soda [Diet Dr. Pepper] $1.09 +1405 1 Bottled Water NULL $1.09 +1405 1 Side of Chips NULL $1.69 +1406 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1406 1 Steak Salad [[Lettuce, Fajita Veggies]] $8.69 +1407 1 Steak Crispy Tacos [Fresh Tomato Salsa] $9.25 +1407 1 Chips and Fresh Tomato Salsa NULL $2.95 +1408 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $10.98 +1408 1 Chips and Fresh Tomato Salsa NULL $2.39 +1409 2 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $22.50 +1410 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1411 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1411 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1411 1 Side of Chips NULL $1.69 +1412 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.75 +1412 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1413 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese]] $8.75 +1413 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1414 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Sour Cream]] $8.75 +1414 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1414 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Sour Cream]] $8.75 +1415 1 Chicken Burrito [[Rice, Cheese]] $8.19 +1415 1 Chicken Burrito [Fresh Tomato (Mild), [Guacamole, Rice, Sour Cream, Cheese]] $10.58 +1416 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Cheese, Lettuce, Pinto Beans, Rice]] $8.75 +1416 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1416 1 Bottled Water NULL $1.50 +1417 2 Canned Soft Drink [Coke] $2.50 +1417 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1417 1 Chips and Guacamole NULL $4.45 +1418 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans]] $9.25 +1418 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1419 1 Carnitas Burrito [Fresh Tomato (Mild), [Lettuce, Rice]] $8.69 +1419 1 Steak Burrito [Fresh Tomato (Mild), [Lettuce, Pinto Beans, Rice, Sour Cream, Cheese]] $8.69 +1419 1 Chips and Guacamole NULL $3.89 +1420 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1420 1 Side of Chips NULL $1.69 +1421 1 Chips and Guacamole NULL $4.45 +1421 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1422 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1422 1 Chips and Guacamole NULL $4.45 +1422 1 Chips NULL $2.15 +1423 1 Chicken Burrito [[Lettuce, Fajita Veggies, Rice]] $8.19 +1423 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1424 1 Chips and Guacamole NULL $4.45 +1424 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1425 1 Canned Soft Drink [Coke] $1.25 +1425 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1425 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1426 1 Barbacoa Salad Bowl [Fresh Tomato Salsa, Guacamole] $11.89 +1426 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1426 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Guacamole, Lettuce]] $11.75 +1426 1 Barbacoa Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1427 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1427 1 Chips NULL $2.15 +1427 1 Bottled Water NULL $1.50 +1428 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1428 1 Chips and Guacamole NULL $4.45 +1429 1 Chips and Guacamole NULL $3.99 +1429 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.99 +1429 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1429 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1430 1 Canned Soft Drink [Sprite] $1.25 +1430 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1430 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1431 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1431 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1431 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1431 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1431 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1431 1 Chips NULL $2.15 +1432 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1432 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1433 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1433 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Pinto Beans, Rice, Cheese, Sour Cream]] $8.49 +1433 1 Chicken Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Cheese, Sour Cream]] $8.49 +1433 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1434 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1434 1 Canned Soda [Dr. Pepper] $1.09 +1434 1 Canned Soda [Coca Cola] $1.09 +1434 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +1435 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1435 1 Canned Soft Drink [Diet Coke] $1.25 +1436 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1436 1 Bottled Water NULL $1.09 +1437 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1437 1 Chips NULL $2.15 +1437 1 Bottled Water NULL $1.50 +1438 1 Chips and Guacamole NULL $3.99 +1438 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1439 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1439 1 Chips NULL $2.15 +1439 1 Bottled Water NULL $1.50 +1440 1 Chicken Burrito [Tomatillo-Green Chili Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1440 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1440 2 Canned Soda [Diet Coke] $2.18 +1441 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1441 1 Chips NULL $2.15 +1441 1 Bottled Water NULL $1.50 +1442 1 Chips and Guacamole NULL $4.45 +1442 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1443 15 Chips and Fresh Tomato Salsa NULL $44.25 +1443 7 Bottled Water NULL $10.50 +1443 1 6 Pack Soft Drink [Coke] $6.49 +1443 3 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $33.75 +1443 4 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $35.00 +1443 3 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $27.75 +1443 2 Bottled Water NULL $3.00 +1444 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1444 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1445 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Guacamole, Lettuce]] $10.98 +1445 1 Chips and Fresh Tomato Salsa NULL $2.39 +1446 2 Canned Soft Drink [Diet Coke] $2.50 +1446 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese]] $8.75 +1446 1 Chips and Guacamole NULL $4.45 +1447 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Fajita Veggies, Pinto Beans, Rice]] $16.98 +1448 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1448 1 6 Pack Soft Drink [Nestea] $6.49 +1449 2 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $16.98 +1449 2 Steak Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $17.98 +1449 2 Veggie Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $16.98 +1449 2 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Cheese]] $16.98 +1449 1 Carnitas Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Lettuce]] $8.99 +1449 1 Carnitas Soft Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Lettuce]] $8.99 +1449 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.49 +1450 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Lettuce]] $9.25 +1450 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1450 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1451 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium)], [Rice, Fajita Veggies, Cheese, Guacamole, Lettuce]] $11.48 +1451 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1452 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Pinto Beans, Lettuce]] $8.99 +1452 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1453 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1453 1 Chips and Guacamole NULL $4.45 +1453 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1453 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1454 1 6 Pack Soft Drink [Coke] $6.49 +1454 3 Chicken Burrito [Fresh Tomato Salsa] $26.25 +1454 1 Chicken Soft Tacos [Fresh Tomato Salsa, Rice] $8.75 +1454 3 Chicken Burrito [Fresh Tomato Salsa, Rice] $26.25 +1454 1 Chicken Soft Tacos [Fresh Tomato Salsa, Rice] $8.75 +1454 1 Chicken Crispy Tacos [Fresh Tomato Salsa, Rice] $8.75 +1455 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1455 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Guacamole, Lettuce]] $11.25 +1455 1 Chips NULL $2.15 +1456 1 Canned Soft Drink [Sprite] $1.25 +1456 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1457 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1457 1 Chips NULL $2.15 +1457 1 Bottled Water NULL $1.50 +1458 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Fajita Vegetables]] $11.25 +1458 1 Chips NULL $2.15 +1459 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1459 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1460 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1460 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1460 1 Chips NULL $2.15 +1461 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1461 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1461 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1462 2 Chips and Tomatillo-Green Chili Salsa NULL $4.78 +1462 2 Chicken Soft Tacos [[Tomatillo-Green Chili Salsa (Medium), Fresh Tomato Salsa (Mild)], [Cheese, Sour Cream, Guacamole]] $21.96 +1463 1 Veggie Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1463 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1464 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +1464 1 Chips and Fresh Tomato Salsa NULL $2.95 +1465 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1466 1 Chicken Bowl [Fresh Tomato (Mild), [Lettuce, Fajita Veggies, Pinto Beans, Rice, Sour Cream, Cheese]] $8.19 +1466 1 Chips and Guacamole NULL $3.89 +1467 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1467 1 Bottled Water NULL $1.09 +1468 1 Steak Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1468 1 Izze [Blackberry] $3.39 +1469 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1469 1 Chips and Guacamole NULL $4.45 +1470 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1470 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $10.98 +1471 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $17.50 +1472 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1472 1 Canned Soft Drink [Coke] $1.25 +1472 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $8.75 +1473 1 Steak Burrito [Fresh Tomato Salsa, [Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1473 1 Chips and Guacamole NULL $4.45 +1474 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.25 +1474 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Rice, Guacamole]] $11.25 +1475 1 Steak Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.99 +1475 1 Canned Soda [Coca Cola] $1.09 +1476 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Black Beans, Fajita Veggies, Guacamole]] $10.98 +1476 1 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot), Fresh Tomato Salsa (Mild)], [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1476 1 Side of Chips NULL $1.69 +1477 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Guacamole]] $11.25 +1477 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1478 2 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Sour Cream, Cheese, Black Beans, Rice]] $16.98 +1479 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1479 1 Chips and Guacamole NULL $4.45 +1480 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Lettuce, Rice, Fajita Vegetables, Sour Cream]] $11.25 +1480 1 6 Pack Soft Drink [Diet Coke] $6.49 +1480 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +1481 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1481 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1482 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1482 1 Chips and Guacamole NULL $4.45 +1482 2 Canned Soft Drink [Diet Coke] $2.50 +1483 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1483 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Cheese]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1483 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1483 1 Steak Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans]] $9.25 +1483 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1483 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1483 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1483 1 Steak Soft Tacos [Fresh Tomato Salsa, Guacamole] $11.75 +1483 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Lettuce]] $9.25 +1483 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1483 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1484 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream]] $8.49 +1484 1 Canned Soda [Dr. Pepper] $1.09 +1484 1 Canned Soda [Dr. Pepper] $1.09 +1485 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1485 1 Canned Soda [Diet Dr. Pepper] $1.09 +1485 1 Side of Chips NULL $1.69 +1486 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Lettuce, Rice, Cheese, Sour Cream, Black Beans]] $11.25 +1486 1 Canned Soft Drink [Lemonade] $1.25 +1487 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables]] $8.75 +1487 1 Chips NULL $2.15 +1487 1 Bottled Water NULL $1.50 +1488 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1488 1 Side of Chips NULL $1.69 +1489 1 Canned Soft Drink [Diet Coke] $1.25 +1489 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1489 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1490 1 Chicken Salad [Fresh Tomato Salsa (Mild), Black Beans] $8.49 +1490 1 Chips and Guacamole NULL $3.99 +1491 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice]] $8.49 +1491 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Black Beans, Cheese, Lettuce]] $8.49 +1492 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1492 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1492 1 Chips NULL $2.15 +1493 1 Bottled Water NULL $1.50 +1493 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1494 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Rice, Cheese, Sour Cream]] $8.99 +1494 1 Canned Soda [Sprite] $1.09 +1495 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1496 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1497 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1497 1 Canned Soft Drink [Sprite] $1.25 +1498 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1498 1 Chips and Guacamole NULL $4.45 +1499 1 Chips and Guacamole NULL $4.45 +1499 1 Canned Soft Drink [Sprite] $1.25 +1499 1 Carnitas Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.89 +1500 1 Carnitas Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream]] $8.99 +1500 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Pinto Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1501 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1501 1 Chips and Guacamole NULL $4.45 +1502 2 Steak Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $23.50 +1503 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1503 1 Chips and Guacamole NULL $3.99 +1504 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1504 1 Chips and Guacamole NULL $4.45 +1505 1 Chips and Guacamole NULL $4.45 +1505 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1506 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1506 1 Chips and Guacamole NULL $4.45 +1507 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1507 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1508 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1508 1 6 Pack Soft Drink [Coke] $6.49 +1509 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $17.50 +1509 1 Chips and Guacamole NULL $4.45 +1510 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1510 1 Chips and Fresh Tomato Salsa NULL $2.95 +1510 1 Bottled Water NULL $1.50 +1511 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1511 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice]] $8.75 +1511 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1511 1 Chips and Guacamole NULL $4.45 +1511 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1512 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1512 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1513 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1513 1 Chips and Roasted Chili Corn Salsa NULL $2.95 +1514 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1514 1 Chips and Guacamole NULL $4.45 +1514 2 Bottled Water NULL $3.00 +1514 1 Canned Soft Drink [Diet Coke] $1.25 +1515 1 Chips and Fresh Tomato Salsa NULL $2.95 +1515 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $9.25 +1516 1 Steak Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.99 +1516 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1517 1 6 Pack Soft Drink [Diet Coke] $6.49 +1517 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1517 2 Chips and Guacamole NULL $8.90 +1518 1 Carnitas Bowl [Fresh Tomato Salsa (Mild), [Fajita Veggies, Cheese, Sour Cream, Guacamole]] $11.48 +1518 1 Canned Soda [Diet Coke] $1.09 +1519 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $10.98 +1520 1 Barbacoa Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $9.25 +1520 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1521 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1521 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1522 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1522 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1523 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1523 1 Canned Soft Drink [Nestea] $1.25 +1524 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +1524 1 Chips and Guacamole NULL $4.45 +1525 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1525 1 6 Pack Soft Drink [Sprite] $6.49 +1526 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1526 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1527 1 Barbacoa Burrito [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream]] $8.99 +1527 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1528 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1528 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1529 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1529 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1530 1 Canned Soft Drink [Coke] $1.25 +1530 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1530 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1531 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +1531 1 Chips NULL $2.15 +1532 1 Veggie Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1532 1 Veggie Burrito [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1533 1 Barbacoa Bowl [Fresh Tomato (Mild), [Lettuce, Rice, Cheese]] $8.69 +1533 2 Chicken Burrito [[Lettuce, Rice]] $16.38 +1533 1 Chicken Burrito [Rice] $8.19 +1533 1 Chips and Guacamole NULL $3.89 +1533 1 Chips and Fresh Tomato Salsa NULL $2.29 +1534 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +1534 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1534 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1535 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1535 1 Chips and Guacamole NULL $4.45 +1536 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1536 1 Chicken Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1537 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1537 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1537 1 6 Pack Soft Drink [Coke] $6.49 +1537 1 Chips and Fresh Tomato Salsa NULL $2.95 +1538 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1538 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1538 1 Chips NULL $2.15 +1539 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream]] $9.25 +1539 1 Steak Burrito [Fresh Tomato Salsa, [Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1540 2 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Rice, Pinto Beans, Fajita Veggies, Cheese, Sour Cream, Guacamole]] $21.96 +1541 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1541 1 Nantucket Nectar [Peach Orange] $3.39 +1541 1 Side of Chips NULL $1.69 +1541 1 Veggie Burrito [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1542 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1542 1 Chips and Guacamole NULL $4.45 +1543 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1543 1 Chips and Guacamole NULL $3.99 +1544 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1544 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1545 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1545 1 Chips NULL $2.15 +1546 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1546 1 Chips and Guacamole NULL $4.45 +1547 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1547 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1547 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1548 2 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $18.50 +1549 1 Bottled Water NULL $1.50 +1549 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1549 1 Chips NULL $2.15 +1550 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Guacamole, Lettuce]] $11.48 +1550 2 Canned Soda [Mountain Dew] $2.18 +1550 1 Chips and Guacamole NULL $3.99 +1551 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1551 1 Bottled Water NULL $1.50 +1552 1 Steak Soft Tacos [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Cheese, Sour Cream]] $8.99 +1552 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1553 1 Steak Burrito [Roasted Chili Corn Salsa, [Pinto Beans, Rice, Guacamole, Sour Cream, Cheese]] $11.75 +1553 1 Bottled Water NULL $1.50 +1554 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1554 1 6 Pack Soft Drink [Diet Coke] $6.49 +1554 1 Chips and Guacamole NULL $4.45 +1554 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1555 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1555 1 Chips and Guacamole NULL $3.99 +1556 2 Canned Soft Drink [Coke] $2.50 +1556 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1556 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1557 1 Chips and Guacamole NULL $3.99 +1557 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Pinto Beans, Cheese]] $8.99 +1558 1 Chicken Bowl [Fresh Tomato Salsa, Cheese] $8.75 +1558 1 6 Pack Soft Drink [Diet Coke] $6.49 +1559 8 Side of Chips NULL $13.52 +1559 2 Chicken Soft Tacos [Fresh Tomato Salsa (Mild), [Pinto Beans, Rice, Cheese, Lettuce]] $16.98 +1559 2 Veggie Soft Tacos [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $16.98 +1559 2 Carnitas Crispy Tacos [Fresh Tomato Salsa (Mild), [Cheese, Lettuce]] $17.98 +1559 2 Chicken Crispy Tacos [Fresh Tomato Salsa (Mild), [Rice, Cheese, Sour Cream, Lettuce]] $16.98 +1560 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1560 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1561 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1561 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1562 1 Chicken Burrito [[Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1562 1 Canned Soda [Mountain Dew] $1.09 +1562 1 Side of Chips NULL $1.69 +1563 1 Canned Soft Drink [Lemonade] $1.25 +1563 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1563 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1564 1 Barbacoa Burrito [Fresh Tomato (Mild), [Black Beans, Rice, Sour Cream, Cheese]] $8.69 +1564 1 Chicken Burrito [Fresh Tomato (Mild), [Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1565 1 Chicken Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1565 1 Chips and Roasted Chili-Corn Salsa NULL $2.39 +1566 1 Chicken Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1566 1 Chips and Fresh Tomato Salsa NULL $2.39 +1567 1 Chicken Bowl [[Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium)], [Rice, Fajita Veggies, Guacamole, Lettuce]] $10.98 +1568 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1568 1 Steak Soft Tacos [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1569 1 Side of Chips NULL $1.69 +1569 1 Veggie Burrito [Fresh Tomato Salsa (Mild), [Black Beans, Fajita Veggies, Cheese, Sour Cream, Lettuce]] $8.49 +1570 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1570 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1571 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Pinto Beans, Cheese, Lettuce, Guacamole]] $11.25 +1571 1 Chips and Guacamole NULL $4.45 +1572 1 Chips and Guacamole NULL $4.45 +1572 2 Chicken Burrito [Tomatillo Red Chili Salsa, [Cheese, Black Beans, Rice]] $17.50 +1573 1 Chicken Burrito [Fresh Tomato Salsa, [Sour Cream, Cheese, Rice, Black Beans]] $8.75 +1573 1 Chips and Guacamole NULL $4.45 +1574 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1574 1 Chips NULL $2.15 +1574 1 Bottled Water NULL $1.50 +1574 1 Bottled Water NULL $1.50 +1575 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies]] $8.99 +1575 1 Canned Soda [Dr. Pepper] $1.09 +1576 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $8.75 +1576 1 Chips and Guacamole NULL $4.45 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1577 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1577 2 Chips NULL $4.30 +1578 1 Chicken Bowl [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.49 +1578 1 Side of Chips NULL $1.69 +1578 1 Bottled Water NULL $1.09 +1578 1 Canned Soda [Diet Dr. Pepper] $1.09 +1579 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1579 1 Chips NULL $2.15 +1579 1 Bottled Water NULL $1.50 +1580 1 Carnitas Soft Tacos [Tomatillo-Red Chili Salsa (Hot), [Cheese, Sour Cream, Lettuce]] $8.99 +1580 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1580 1 Chips and Guacamole NULL $3.99 +1581 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1581 1 Chips NULL $2.15 +1581 1 Canned Soft Drink [Nestea] $1.25 +1582 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1582 1 Chips and Fresh Tomato Salsa NULL $2.95 +1583 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1583 1 Chips and Guacamole NULL $4.45 +1584 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Sour Cream, Lettuce, Rice, Cheese]] $9.25 +1584 1 Chips and Fresh Tomato Salsa NULL $2.95 +1585 1 Chips and Guacamole NULL $3.99 +1585 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.99 +1585 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Fajita Veggies, Cheese, Lettuce]] $8.49 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1586 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Guacamole, Lettuce]] $11.25 +1586 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1586 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1586 1 Chips and Guacamole NULL $4.45 +1587 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1587 1 Canned Soft Drink [Coke] $1.25 +1588 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1588 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1588 1 Chips and Guacamole NULL $4.45 +1588 1 Chips and Fresh Tomato Salsa NULL $2.95 +1589 1 Chicken Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Sour Cream, Guacamole]] $10.98 +1590 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Fajita Vegetables, Lettuce, Cheese, Sour Cream]] $8.75 +1590 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1591 2 Steak Burrito [Fresh Tomato Salsa, [Lettuce, Sour Cream, Cheese, Fajita Vegetables, Pinto Beans, Rice]] $18.50 +1592 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1592 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $9.25 +1592 4 Canned Soft Drink [Coke] $5.00 +1592 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Lettuce]] $8.75 +1592 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1593 2 Chicken Bowl [[Roasted Chili Corn Salsa (Medium), Fresh Tomato Salsa (Mild)], [Rice, Fajita Veggies]] $16.98 +1594 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1594 1 Chips and Fresh Tomato Salsa NULL $2.95 +1595 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1595 1 Chips NULL $2.15 +1595 1 Bottled Water NULL $1.50 +1596 1 Chicken Salad [Fresh Tomato Salsa (Mild), [Pinto Beans, Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1596 1 Chips and Fresh Tomato Salsa NULL $2.39 +1597 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese]] $9.25 +1597 1 Chips NULL $2.15 +1597 1 Canned Soft Drink [Nestea] $1.25 +1598 1 Chicken Burrito [Tomatillo Green Chili (Medium), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1598 1 Steak Burrito [Tomatillo Red Chili (Hot), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.69 +1598 1 Chicken Salad [Roasted Chili Corn (Medium), [Lettuce, Black Beans, Cheese]] $8.19 +1598 1 Chicken Burrito [Roasted Chili Corn (Medium), [Lettuce, Black Beans, Rice, Sour Cream, Cheese]] $8.19 +1599 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1599 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1599 1 Canned Soft Drink [Nestea] $1.25 +1600 1 Steak Crispy Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1600 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1601 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1601 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1602 1 Steak Burrito [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Pinto Beans, Fajita Veggies, Lettuce]] $8.99 +1602 1 Bottled Water NULL $1.09 +1603 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1603 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1603 1 Chips and Guacamole NULL $4.45 +1604 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Tomatillo-Green Chili Salsa (Medium), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1604 1 Chips and Guacamole NULL $3.99 +1604 1 Chips and Tomatillo-Green Chili Salsa NULL $2.39 +1604 1 Canned Soda [Diet Coke] $1.09 +1605 1 Steak Burrito [[Fresh Tomato Salsa (Mild), Tomatillo-Red Chili Salsa (Hot)], [Pinto Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.99 +1605 1 Chicken Bowl [Tomatillo-Green Chili Salsa (Medium), [Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1606 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1606 1 Chicken Salad Bowl [Fresh Tomato Salsa] $8.75 +1607 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1607 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1608 1 Chips and Guacamole NULL $4.45 +1608 2 Canned Soft Drink [Diet Coke] $2.50 +1608 1 Chicken Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1609 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1609 1 Nantucket Nectar [Pineapple Orange Banana] $3.39 +1610 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1610 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1610 1 Chips and Guacamole NULL $4.45 +1610 1 Canned Soft Drink [Lemonade] $1.25 +1611 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1611 1 Chips NULL $2.15 +1611 1 Chips and Guacamole NULL $4.45 +1611 2 Canned Soft Drink [Coke] $2.50 +1612 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1612 1 Chips and Guacamole NULL $3.99 +1613 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +1613 1 Chips NULL $2.15 +1613 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1614 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1614 1 Canned Soft Drink [Coke] $1.25 +1615 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1615 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $9.39 +1615 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1615 1 Steak Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1616 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $9.25 +1616 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1617 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +1617 1 Chips and Guacamole NULL $4.45 +1618 1 Canned Soft Drink [Diet Coke] $1.25 +1618 1 Carnitas Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1618 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1619 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Guacamole]] $11.75 +1619 1 Bottled Water NULL $1.50 +1620 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $8.75 +1620 1 Chips and Guacamole NULL $4.45 +1621 1 Steak Bowl [Roasted Chili Corn Salsa (Medium), [Rice, Black Beans, Fajita Veggies]] $8.99 +1621 1 Canned Soda [Sprite] $1.09 +1622 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1622 1 Chips and Fresh Tomato Salsa NULL $2.95 +1623 1 Steak Bowl [Fresh Tomato Salsa (Mild), [Sour Cream, Lettuce, Cheese, Black Beans, Rice]] $8.99 +1623 1 Side of Chips NULL $1.69 +1624 1 Barbacoa Bowl [[Rice, Cheese]] $8.69 +1624 1 Side of Chips NULL $1.69 +1625 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1625 1 Chips and Guacamole NULL $4.45 +1626 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1626 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1626 1 Chips and Guacamole NULL $4.45 +1627 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1627 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1627 1 Chips and Fresh Tomato Salsa NULL $2.95 +1627 1 Bottled Water NULL $1.50 +1628 1 Chicken Burrito [[Lettuce, Rice, Fajita Veggies]] $8.19 +1628 1 Steak Burrito [[Lettuce, Fajita Veggies, Rice]] $8.69 +1629 1 Bottled Water NULL $1.09 +1629 1 Side of Chips NULL $1.69 +1629 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Cheese]] $8.49 +1630 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1630 1 Chips and Fresh Tomato Salsa NULL $2.95 +1630 1 Canned Soft Drink [Coke] $1.25 +1631 1 Chicken Bowl [Roasted Chili Corn Salsa (Medium), [Black Beans, Rice, Fajita Veggies, Cheese, Sour Cream]] $8.49 +1631 1 Chips and Guacamole NULL $3.99 +1632 1 Chicken Bowl [Fresh Tomato Salsa (Mild), [Black Beans, Rice, Sour Cream, Guacamole]] $10.98 +1632 1 Nantucket Nectar [Peach Orange] $3.39 +1633 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1633 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1633 1 Chips NULL $2.15 +1634 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $18.50 +1635 1 Veggie Burrito [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1635 1 Veggie Salad [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium), Tomatillo-Red Chili Salsa (Hot)], [Black Beans, Rice, Fajita Veggies, Lettuce]] $8.49 +1636 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +1636 1 Bottled Water NULL $1.50 +1637 1 Chicken Bowl [[Fresh Tomato Salsa (Mild), Roasted Chili Corn Salsa (Medium)], [Black Beans, Rice, Cheese, Sour Cream, Lettuce]] $8.49 +1637 1 Chips and Tomatillo-Red Chili Salsa NULL $2.39 +1638 1 Steak Burrito [Tomatillo-Red Chili Salsa (Hot), [Black Beans, Rice, Cheese, Lettuce]] $8.99 +1638 1 Chips and Fresh Tomato Salsa NULL $2.39 +1639 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1639 1 Chips and Guacamole NULL $4.45 +1640 2 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $17.50 +1641 1 Steak Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1641 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1642 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1642 1 Chips and Guacamole NULL $4.45 +1642 3 Canned Soft Drink [Diet Coke] $3.75 +1643 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1643 1 Chips and Guacamole NULL $4.45 +1643 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1643 1 Chips and Fresh Tomato Salsa NULL $2.95 +1644 1 Canned Soft Drink [Lemonade] $1.25 +1644 1 Chips and Guacamole NULL $4.45 +1644 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $8.75 +1645 1 Canned Soft Drink [Coke] $1.25 +1645 1 Bottled Water NULL $1.50 +1645 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1646 1 Veggie Salad Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1646 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole, Lettuce]] $11.25 +1647 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1647 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1648 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $9.25 +1648 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Guacamole]] $11.25 +1648 1 Chips and Guacamole NULL $4.45 +1648 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1649 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1649 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1650 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1650 1 Chips and Guacamole NULL $4.45 +1651 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1651 1 Canned Soft Drink [Lemonade] $1.25 +1651 1 Chips NULL $2.15 +1652 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1652 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1652 2 Chips NULL $4.30 +1653 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1653 1 Canned Soft Drink [Sprite] $1.25 +1653 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1654 1 Steak Soft Tacos [Fresh Tomato Salsa] $9.25 +1654 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1655 1 Chips and Guacamole NULL $4.45 +1655 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1655 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1655 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1655 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1655 3 Bottled Water NULL $4.50 +1656 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.75 +1656 1 Canned Soft Drink [Lemonade] $1.25 +1657 1 Barbacoa Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1657 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1657 1 Canned Soft Drink [Coke] $1.25 +1657 1 Canned Soft Drink [Nestea] $1.25 +1658 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans]] $9.25 +1658 1 Chips and Guacamole NULL $4.45 +1659 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1659 1 Carnitas Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1660 2 Chicken Burrito [Fresh Tomato Salsa, Rice] $17.50 +1660 1 Chips NULL $2.15 +1660 1 Canned Soft Drink [Coke] $1.25 +1660 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1660 10 Bottled Water NULL $15.00 +1660 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +1660 1 Chips and Guacamole NULL $4.45 +1660 1 Chips and Guacamole NULL $4.45 +1660 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1661 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Sour Cream, Cheese, Rice, Fajita Vegetables]] $11.25 +1661 1 Chips NULL $2.15 +1662 1 Canned Soft Drink [Sprite] $1.25 +1662 1 Bottled Water NULL $1.50 +1662 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Pinto Beans, Sour Cream, Cheese]] $8.75 +1662 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Sour Cream, Cheese, Guacamole]] $11.25 +1662 1 Chips and Fresh Tomato Salsa NULL $2.95 +1663 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1663 1 Canned Soft Drink [Sprite] $1.25 +1664 1 Chips NULL $2.15 +1664 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1664 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1664 1 6 Pack Soft Drink [Diet Coke] $6.49 +1665 1 Canned Soft Drink [Diet Coke] $1.25 +1665 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1665 1 Chips NULL $2.15 +1666 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1666 1 6 Pack Soft Drink [Coke] $6.49 +1667 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.25 +1667 1 Bottled Water NULL $1.50 +1668 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1668 1 Chips and Guacamole NULL $4.45 +1669 1 Chicken Burrito [Fresh Tomato Salsa, Rice] $8.75 +1669 1 Chips and Guacamole NULL $4.45 +1670 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1670 1 Barbacoa Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1670 1 Canned Soft Drink [Coke] $1.25 +1670 1 Canned Soft Drink [Sprite] $1.25 +1671 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1671 3 Bottled Water NULL $4.50 +1672 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1672 1 Canned Soft Drink [Coke] $1.25 +1673 1 Bottled Water NULL $1.50 +1673 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $9.25 +1673 1 Chips NULL $2.15 +1673 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Lettuce, Guacamole]] $11.25 +1673 1 Chips and Guacamole NULL $4.45 +1674 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1674 1 Chips and Guacamole NULL $4.45 +1675 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1675 1 Chips and Guacamole NULL $4.45 +1676 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese]] $9.25 +1676 1 Chips and Guacamole NULL $4.45 +1676 1 Canned Soft Drink [Coke] $1.25 +1677 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Guacamole]] $11.25 +1677 1 Chips and Guacamole NULL $4.45 +1678 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1678 1 Chips and Guacamole NULL $4.45 +1679 1 Chicken Salad Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Lettuce]] $8.75 +1679 1 Chips NULL $2.15 +1679 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream]] $8.75 +1679 1 Chips and Guacamole NULL $4.45 +1679 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1680 1 Steak Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1680 1 Bottled Water NULL $1.50 +1681 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1681 1 Chips and Guacamole NULL $4.45 +1682 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1682 1 Chips NULL $2.15 +1682 1 Bottled Water NULL $1.50 +1683 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Lettuce]] $8.75 +1683 1 Chips and Guacamole NULL $4.45 +1684 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Lettuce]] $8.75 +1684 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +1685 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1685 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $8.75 +1686 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1686 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1687 1 Bottled Water NULL $1.50 +1687 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $8.75 +1687 1 Chips NULL $2.15 +1688 1 Steak Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Guacamole]] $11.75 +1688 1 Chips NULL $2.15 +1689 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1689 1 Chips and Fresh Tomato Salsa NULL $2.95 +1690 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $18.50 +1690 1 Canned Soft Drink [Coke] $1.25 +1690 1 Chips and Guacamole NULL $4.45 +1691 1 Chicken Bowl [White Rice] $8.50 +1691 1 Chicken Bowl [White Rice] $8.50 +1691 2 Chips and Guacamole NULL $8.50 +1692 1 Chicken Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1692 1 Carnitas Salad Bowl [Tomatillo Green Chili Salsa, [Black Beans, Cheese, Guacamole]] $11.89 +1692 1 Canned Soft Drink [Diet Coke] $1.25 +1693 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.39 +1693 1 Chips and Guacamole NULL $4.45 +1694 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1694 1 Chips NULL $2.15 +1694 1 Bottled Water NULL $1.50 +1695 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1695 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, Cheese] $8.75 +1695 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1696 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1696 1 Chips and Guacamole NULL $4.45 +1696 1 Canned Soft Drink [Coke] $1.25 +1696 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1697 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1697 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1698 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1698 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1698 1 Chips NULL $2.15 +1699 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1699 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Guacamole]] $11.25 +1699 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1700 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Guacamole]] $11.25 +1700 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1701 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1701 1 Chips NULL $2.15 +1701 1 Veggie Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1701 1 Chips NULL $2.15 +1702 1 Steak Bowl [Rice, Tomatillo-Red Chili Salsa (Hot)] $8.99 +1702 1 Steak Burrito [Rice, Tomatillo-Red Chili Salsa (Hot)] $8.99 +1703 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1703 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1703 1 Barbacoa Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1703 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1704 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Rice, Lettuce, Cheese]] $8.75 +1704 1 Chips and Guacamole NULL $4.45 +1705 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1705 1 Canned Soft Drink [Diet Coke] $1.25 +1705 1 Chips and Guacamole NULL $4.45 +1706 1 Veggie Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1706 1 Canned Soft Drink [Coke] $1.25 +1707 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1707 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1708 1 Veggie Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1708 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1709 1 Canned Soft Drink [Diet Coke] $1.25 +1709 1 Canned Soft Drink [Sprite] $1.25 +1709 1 Canned Soft Drink [Nestea] $1.25 +1709 1 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $9.25 +1710 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Guacamole]] $11.75 +1710 1 Chips NULL $2.15 +1711 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1711 1 Chips and Guacamole NULL $4.45 +1712 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1712 1 Chips and Guacamole NULL $4.45 +1713 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole]] $11.25 +1713 1 Steak Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $9.25 +1714 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $8.75 +1714 1 Steak Soft Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Sour Cream, Lettuce]] $9.25 +1714 1 Chips and Guacamole NULL $4.45 +1715 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1715 1 Chips and Guacamole NULL $4.45 +1715 1 Canned Soft Drink [Coke] $1.25 +1716 1 Chips and Guacamole NULL $4.45 +1716 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1717 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Cheese, Lettuce]] $9.25 +1717 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Pinto Beans, Guacamole, Lettuce]] $11.25 +1717 1 Chips NULL $2.15 +1718 2 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $23.50 +1718 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Cheese]] $9.25 +1718 1 Chips NULL $2.15 +1719 2 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Lettuce, Sour Cream]] $18.50 +1719 1 Chicken Soft Tacos [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1719 2 Chips and Tomatillo Red Chili Salsa NULL $5.90 +1720 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole]] $11.89 +1720 1 Chips and Guacamole NULL $4.45 +1721 1 Veggie Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Lettuce]] $8.75 +1721 1 Chips and Guacamole NULL $4.45 +1722 1 Steak Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.25 +1722 1 Chips and Fresh Tomato Salsa NULL $2.95 +1723 1 Veggie Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole, Lettuce]] $11.25 +1723 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1724 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1724 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1725 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole]] $11.25 +1725 1 Chips and Fresh Tomato Salsa NULL $2.95 +1726 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1726 1 Carnitas Soft Tacos [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1727 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +1727 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1728 1 Chicken Bowl [Fresh Tomato Salsa, [Guacamole, Lettuce]] $11.25 +1728 1 Chips NULL $2.15 +1729 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1729 2 Chips and Guacamole NULL $8.90 +1730 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1730 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1731 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1731 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1732 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1732 1 Chips NULL $2.15 +1732 1 Canned Soft Drink [Coke] $1.25 +1733 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1733 1 Canned Soft Drink [Sprite] $1.25 +1734 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Lettuce]] $8.75 +1734 1 Chips and Guacamole NULL $4.45 +1735 1 Canned Soft Drink [Coke] $1.25 +1735 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1735 1 Chicken Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1736 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1736 1 Canned Soft Drink [Coke] $1.25 +1737 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Guacamole]] $11.25 +1737 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1737 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Guacamole]] $11.25 +1738 1 Chicken Salad Bowl [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Cheese, Lettuce]] $8.75 +1738 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Lettuce]] $8.75 +1738 2 Steak Soft Tacos [Fresh Tomato Salsa, [Cheese, Lettuce]] $18.50 +1739 1 Barbacoa Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.75 +1739 1 Canned Soft Drink [Coke] $1.25 +1740 1 Chips and Guacamole NULL $4.45 +1740 1 Barbacoa Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1741 1 6 Pack Soft Drink [Coke] $6.49 +1741 1 Chips and Guacamole NULL $4.45 +1741 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Sour Cream, Cheese, Lettuce]] $8.75 +1742 1 Chicken Bowl [Fresh Tomato Salsa, [Pinto Beans, Rice, Cheese, Lettuce, Guacamole, Sour Cream, Fajita Vegetables]] $11.25 +1742 1 6 Pack Soft Drink [Diet Coke] $6.49 +1742 1 Steak Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1743 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1743 1 Steak Bowl [Roasted Chili Corn Salsa, [Black Beans, Cheese, Sour Cream]] $9.25 +1744 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1744 1 Chips NULL $2.15 +1745 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1745 1 Chips and Guacamole NULL $4.45 +1745 1 Chicken Crispy Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1745 1 Chips and Guacamole NULL $4.45 +1746 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1746 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese]] $9.25 +1746 1 Chips and Guacamole NULL $4.45 +1746 1 Canned Soft Drink [Lemonade] $1.25 +1746 1 Canned Soft Drink [Sprite] $1.25 +1747 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Black Beans, Sour Cream, Lettuce]] $8.75 +1747 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1748 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1748 1 Chips NULL $2.15 +1748 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1749 1 Chips and Guacamole NULL $4.45 +1749 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1749 1 Canned Soft Drink [Coke] $1.25 +1750 1 Carnitas Burrito [Roasted Chili Corn Salsa, [Rice, Pinto Beans, Guacamole, Lettuce]] $11.75 +1750 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1751 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1751 2 Chips NULL $4.30 +1751 1 Barbacoa Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $9.39 +1752 1 Steak Salad Bowl [Fresh Tomato Salsa, [Black Beans, Pinto Beans, Cheese]] $9.39 +1752 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Pinto Beans, Cheese, Sour Cream]] $8.75 +1753 1 Canned Soft Drink [Coke] $1.25 +1753 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese]] $9.25 +1753 1 Chips and Guacamole NULL $4.45 +1754 1 Chicken Bowl [Fresh Tomato Salsa, [Black Beans, Rice, Sour Cream, Cheese, Guacamole, Lettuce]] $11.25 +1754 1 Canned Soft Drink [Sprite] $1.25 +1755 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese]] $8.75 +1755 1 Canned Soft Drink [Coke] $1.25 +1755 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1756 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1756 1 Chips and Guacamole NULL $4.45 +1757 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1757 1 Bottled Water NULL $1.50 +1757 1 Chips and Guacamole NULL $4.45 +1758 1 Chips and Guacamole NULL $4.45 +1758 1 Steak Burrito [Fresh Tomato Salsa, [Cheese, Black Beans, Rice]] $9.25 +1759 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1759 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1759 1 Canned Soft Drink [Diet Coke] $1.25 +1760 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.25 +1760 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1761 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream, Lettuce]] $8.75 +1761 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Lettuce]] $8.75 +1761 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1761 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese]] $8.75 +1761 2 Chips NULL $4.30 +1762 1 Steak Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1762 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese, Lettuce]] $9.39 +1763 1 Chips and Guacamole NULL $4.45 +1763 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1763 1 Canned Soft Drink [Coke] $1.25 +1764 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $22.50 +1764 1 Chips and Guacamole NULL $4.45 +1764 1 Chips and Fresh Tomato Salsa NULL $2.95 +1764 1 Chips NULL $2.15 +1764 2 Steak Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $23.50 +1765 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1765 1 Chips NULL $2.15 +1765 1 Canned Soft Drink [Coke] $1.25 +1766 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1766 1 Chips and Guacamole NULL $4.45 +1766 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1766 1 Steak Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Sour Cream, Guacamole]] $11.75 +1767 2 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Lettuce]] $17.50 +1768 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1768 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1768 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1769 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1769 1 Chips and Guacamole NULL $4.45 +1770 1 Barbacoa Bowl [Tomatillo Green Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.75 +1770 1 Bottled Water NULL $1.50 +1771 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1771 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream]] $8.75 +1772 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce, Guacamole]] $11.75 +1772 1 Steak Burrito [Tomatillo Red Chili Salsa, [Rice, Black Beans, Cheese]] $9.25 +1772 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1773 1 Chips and Guacamole NULL $4.45 +1773 1 Steak Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.75 +1774 1 Carnitas Crispy Tacos [Fresh Tomato Salsa, [Pinto Beans, Sour Cream, Cheese, Lettuce]] $9.25 +1774 1 Chips and Guacamole NULL $4.45 +1775 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1775 1 Chicken Crispy Tacos [Tomatillo Red Chili Salsa, [Black Beans, Cheese]] $8.75 +1775 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1776 1 Chips NULL $2.15 +1776 1 Bottled Water NULL $1.50 +1776 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1777 1 Chips and Guacamole NULL $4.45 +1777 1 Steak Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $9.25 +1778 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese]] $8.75 +1778 1 Bottled Water NULL $1.50 +1778 1 Canned Soft Drink [Lemonade] $1.25 +1778 1 Canned Soft Drink [Lemonade] $1.25 +1779 1 Canned Soft Drink [Diet Coke] $1.25 +1779 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $8.75 +1779 1 Chips and Tomatillo Red Chili Salsa NULL $2.95 +1780 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1780 1 Veggie Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1781 1 Bottled Water NULL $1.50 +1781 1 Steak Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1782 1 Veggie Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1782 1 Chips NULL $2.15 +1783 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $9.25 +1783 1 Chicken Soft Tacos [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Sour Cream, Cheese, Lettuce]] $8.75 +1784 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1784 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1785 1 Bottled Water NULL $1.50 +1785 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1785 1 Bottled Water NULL $1.50 +1785 1 Canned Soft Drink [Diet Coke] $1.25 +1786 1 Chicken Bowl [Fresh Tomato Salsa, Rice] $8.75 +1786 1 Carnitas Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Barbacoa Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1786 1 Carnitas Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Guacamole, Lettuce]] $11.75 +1786 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Sour Cream, Lettuce]] $8.75 +1786 4 Chips and Guacamole NULL $17.80 +1786 4 Canned Soft Drink [Coke] $5.00 +1786 4 Canned Soft Drink [Sprite] $5.00 +1787 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1787 1 Chips and Tomatillo Green Chili Salsa NULL $2.95 +1787 1 Canned Soft Drink [Lemonade] $1.25 +1788 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1788 1 Canned Soft Drink [Sprite] $1.25 +1788 1 Chips NULL $2.15 +1789 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Sour Cream, Guacamole]] $11.25 +1789 2 Canned Soft Drink [Coke] $2.50 +1789 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $9.25 +1790 1 Canned Soft Drink [Sprite] $1.25 +1790 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Cheese, Guacamole, Lettuce]] $11.25 +1790 1 Chips and Fresh Tomato Salsa NULL $2.95 +1791 1 Carnitas Bowl [Fresh Tomato Salsa, [Rice, Sour Cream, Guacamole, Lettuce]] $11.75 +1791 1 Chips NULL $2.15 +1792 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1792 1 Bottled Water NULL $1.50 +1793 1 Steak Burrito [Brown Rice] $8.99 +1793 1 Chips NULL $1.99 +1793 1 Barbacoa Bowl [Guacamole] $11.49 +1794 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Fajita Vegetables, Cheese, Lettuce]] $8.75 +1794 1 Chips and Guacamole NULL $4.45 +1794 1 Canned Soft Drink [Diet Coke] $1.25 +1795 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1795 1 Chips and Guacamole NULL $4.45 +1795 1 Canned Soft Drink [Sprite] $1.25 +1796 1 Bottled Water NULL $1.50 +1796 1 Steak Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.75 +1797 1 Veggie Burrito [Fresh Tomato Salsa, [Rice, Pinto Beans, Cheese]] $8.75 +1797 1 Chicken Salad Bowl [Fresh Tomato Salsa, Lettuce] $8.75 +1798 1 Chicken Burrito [Roasted Chili Corn Salsa, [Guacamole, Lettuce, Rice, Fajita Vegetables, Sour Cream]] $11.25 +1798 1 6 Pack Soft Drink [Diet Coke] $6.49 +1798 1 Steak Crispy Tacos [Tomatillo Green Chili Salsa, [Cheese, Sour Cream, Guacamole]] $11.75 +1799 1 Chicken Burrito [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese]] $8.75 +1799 1 Chips NULL $2.15 +1799 1 Canned Soft Drink [Sprite] $1.25 +1800 1 6 Pack Soft Drink [Diet Coke] $6.49 +1800 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1800 1 Chips and Guacamole NULL $4.45 +1801 1 Chicken Burrito [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Lettuce]] $8.75 +1801 1 Chips and Guacamole NULL $4.45 +1802 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1802 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1803 1 Chips and Guacamole NULL $4.45 +1803 1 6 Pack Soft Drink [Lemonade] $6.49 +1803 1 Steak Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Cheese]] $9.25 +1804 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1804 1 Canned Soft Drink [Coke] $1.25 +1804 1 Chips and Guacamole NULL $4.45 +1805 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1805 1 Veggie Salad Bowl [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1806 1 Bottled Water NULL $1.50 +1806 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1806 1 Bottled Water NULL $1.50 +1806 1 Canned Soft Drink [Diet Coke] $1.25 +1807 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese]] $9.25 +1807 1 Steak Salad Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Cheese]] $9.39 +1808 1 Chips and Guacamole NULL $4.45 +1808 1 Steak Soft Tacos [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Cheese, Sour Cream]] $9.25 +1809 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Fajita Vegetables, Cheese, Sour Cream]] $8.75 +1809 1 Chips and Guacamole NULL $4.45 +1809 1 Canned Soft Drink [Sprite] $1.25 +1810 1 Chicken Bowl [Roasted Chili Corn Salsa, [Black Beans, Sour Cream, Cheese, Guacamole]] $11.25 +1810 1 Steak Crispy Tacos [Roasted Chili Corn Salsa, [Fajita Vegetables, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1811 1 Chicken Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream, Lettuce]] $8.75 +1811 1 Chicken Burrito [Tomatillo Green Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1811 1 Carnitas Soft Tacos [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1812 1 Chicken Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1812 1 Chicken Burrito [Tomatillo Red Chili Salsa, [Rice, Cheese, Guacamole, Lettuce]] $11.25 +1812 2 Canned Soft Drink [Coke] $2.50 +1813 2 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $17.50 +1814 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Fajita Vegetables, Rice, Cheese, Sour Cream]] $9.25 +1814 1 Chips and Guacamole NULL $4.45 +1815 1 Chicken Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Pinto Beans, Cheese, Guacamole, Lettuce]] $11.25 +1815 1 Canned Soft Drink [Sprite] $1.25 +1816 1 Chicken Burrito [Roasted Chili Corn Salsa, [Pinto Beans, Cheese, Sour Cream]] $8.75 +1816 1 Chips and Guacamole NULL $4.45 +1817 1 Bottled Water NULL $1.50 +1817 1 Chicken Burrito [Fresh Tomato Salsa, [Fajita Vegetables, Rice]] $8.75 +1817 1 Bottled Water NULL $1.50 +1817 1 Canned Soft Drink [Diet Coke] $1.25 +1818 1 Steak Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $9.39 +1818 1 Veggie Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 +1819 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Cheese, Lettuce]] $8.75 +1819 1 Chips and Guacamole NULL $4.45 +1820 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.25 +1820 1 Canned Soft Drink [Coke] $1.25 +1821 1 Carnitas Burrito [Tomatillo Green Chili Salsa, [Rice, Pinto Beans, Sour Cream]] $9.25 +1821 1 Chips and Guacamole NULL $4.45 +1822 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Black Beans, Cheese, Guacamole]] $11.25 +1822 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Pinto Beans, Cheese, Sour Cream, Lettuce]] $8.75 +1822 2 Bottled Water NULL $3.00 +1823 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans, Sour Cream, Lettuce]] $8.75 +1823 1 Chips NULL $2.15 +1823 1 Canned Soft Drink [Diet Coke] $1.25 +1824 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole, Lettuce]] $11.25 +1824 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream, Guacamole]] $11.25 +1824 1 Chips and Guacamole NULL $4.45 +1825 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.25 +1825 1 Chicken Bowl [Roasted Chili Corn Salsa, [Rice, Black Beans, Cheese, Lettuce, Guacamole]] $11.25 +1825 1 Chicken Bowl [Tomatillo Red Chili Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce]] $8.75 +1825 1 Barbacoa Burrito [Tomatillo Red Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Sour Cream, Cheese, Guacamole]] $11.75 +1825 1 Carnitas Bowl [Roasted Chili Corn Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1825 1 Barbacoa Bowl [Roasted Chili Corn Salsa, [Pinto Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1826 1 Chicken Bowl [Tomatillo Green Chili Salsa, [Rice, Black Beans]] $8.75 +1826 1 Chips and Guacamole NULL $4.45 +1826 1 Canned Soft Drink [Nestea] $1.25 +1826 1 Bottled Water NULL $1.50 +1827 1 Chicken Bowl [Roasted Chili Corn Salsa, [Cheese, Lettuce]] $8.75 +1827 1 Chips and Guacamole NULL $4.45 +1827 1 Canned Soft Drink [Diet Coke] $1.25 +1827 1 Barbacoa Burrito [Tomatillo Green Chili Salsa] $9.25 +1827 1 Barbacoa Burrito [Tomatillo Green Chili Salsa] $9.25 +1828 1 Chicken Bowl [Fresh Tomato Salsa, [Rice, Black Beans, Cheese, Sour Cream]] $8.75 +1828 1 Chips and Guacamole NULL $4.45 +1828 1 Canned Soft Drink [Coke] $1.25 +1829 1 Steak Burrito [Tomatillo Green Chili Salsa, [Rice, Cheese, Sour Cream, Guacamole]] $11.75 +1829 1 Veggie Burrito [Tomatillo Red Chili Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Guacamole, Lettuce]] $11.25 +1829 1 Canned Soft Drink [Sprite] $1.25 +1830 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1830 1 Veggie Burrito [Tomatillo Green Chili Salsa, [Rice, Fajita Vegetables, Black Beans, Guacamole]] $11.25 +1831 1 Carnitas Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Rice, Black Beans, Cheese, Sour Cream, Lettuce]] $9.25 +1831 1 Chips NULL $2.15 +1831 1 Bottled Water NULL $1.50 +1832 1 Chicken Soft Tacos [Fresh Tomato Salsa, [Rice, Cheese, Sour Cream]] $8.75 +1832 1 Chips and Guacamole NULL $4.45 +1833 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Black Beans, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1833 1 Steak Burrito [Fresh Tomato Salsa, [Rice, Sour Cream, Cheese, Lettuce, Guacamole]] $11.75 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Guacamole, Lettuce]] $11.25 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Lettuce]] $8.75 +1834 1 Chicken Salad Bowl [Fresh Tomato Salsa, [Fajita Vegetables, Pinto Beans, Lettuce]] $8.75 diff --git a/README.md b/README.md index a1cb6b3a8..780337117 100644 --- a/README.md +++ b/README.md @@ -23,54 +23,54 @@ Suggestions and collaborations are more than welcome.🙂 Please open an issue o |[Apply](#apply) | [Creating Series and DataFrames](#creating-series-and-dataframes) |Exporting| ### [Getting and knowing](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data) -[Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/Chipotle) -[Occupation](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/Occupation) -[World Food Facts](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/World%20Food%20Facts) +- [x] [Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/Chipotle) +- [ ] [Occupation](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/Occupation) +- [ ] [World Food Facts](https://github.com/guipsamora/pandas_exercises/tree/master/01_Getting_%26_Knowing_Your_Data/World%20Food%20Facts) ### [Filtering and Sorting](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting) -[Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Chipotle) -[Euro12](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Euro12) -[Fictional Army](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Fictional%20Army) +- [ ] [Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Chipotle) +- [ ] [Euro12](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Euro12) +- [ ] [Fictional Army](https://github.com/guipsamora/pandas_exercises/tree/master/02_Filtering_%26_Sorting/Fictional%20Army) ### [Grouping](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping) -[Alcohol Consumption](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Alcohol_Consumption) -[Occupation](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Occupation) -[Regiment](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Regiment) +- [ ] [Alcohol Consumption](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Alcohol_Consumption) +- [ ] [Occupation](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Occupation) +- [ ] [Regiment](https://github.com/guipsamora/pandas_exercises/tree/master/03_Grouping/Regiment) ### [Apply](https://github.com/guipsamora/pandas_exercises/tree/master/04_Apply) -[Students Alcohol Consumption](https://github.com/guipsamora/pandas_exercises/tree/master/04_Apply/Students_Alcohol_Consumption) -[US_Crime_Rates](https://github.com/guipsamora/pandas_exercises/tree/master/04_Apply/US_Crime_Rates) +- [ ] [Students Alcohol Consumption](https://github.com/guipsamora/pandas_exercises/tree/master/04_Apply/Students_Alcohol_Consumption) +- [ ] [US_Crime_Rates](https://github.com/guipsamora/pandas_exercises/tree/master/04_Apply/US_Crime_Rates) ### [Merge](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge) -[Auto_MPG](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Auto_MPG) -[Fictitious Names](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Fictitous%20Names) -[House Market](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Housing%20Market) +- [ ] [Auto_MPG](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Auto_MPG) +- [ ] [Fictitious Names](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Fictitous%20Names) +- [ ] [House Market](https://github.com/guipsamora/pandas_exercises/tree/master/05_Merge/Housing%20Market) ### [Stats](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats) -[US_Baby_Names](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats/US_Baby_Names) -[Wind_Stats](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats/Wind_Stats) +- [ ] [US_Baby_Names](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats/US_Baby_Names) +- [ ] [Wind_Stats](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats/Wind_Stats) ### [Visualization](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization) -[Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Chipotle) -[Titanic Disaster](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Titanic_Desaster) -[Scores](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Scores) -[Online Retail](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Online_Retail) -[Tips](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Tips) +- [ ] [Chipotle](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Chipotle) +- [ ] [Titanic Disaster](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Titanic_Desaster) +- [ ] [Scores](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Scores) +- [ ] [Online Retail](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Online_Retail) +- [ ] [Tips](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Tips) ### [Creating Series and DataFrames](https://github.com/guipsamora/pandas_exercises/tree/master/08_Creating_Series_and_DataFrames) -[Pokemon](https://github.com/guipsamora/pandas_exercises/tree/master/08_Creating_Series_and_DataFrames/Pokemon) +- [ ] [Pokemon](https://github.com/guipsamora/pandas_exercises/tree/master/08_Creating_Series_and_DataFrames/Pokemon) ### [Time Series](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series) -[Apple_Stock](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Apple_Stock) -[Getting_Financial_Data](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Getting_Financial_Data) -[Investor_Flow_of_Funds_US](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Getting_Financial_Data) +- [ ] [Apple_Stock](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Apple_Stock) +- [ ] [Getting_Financial_Data](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Getting_Financial_Data) +- [ ] [Investor_Flow_of_Funds_US](https://github.com/guipsamora/pandas_exercises/tree/master/09_Time_Series/Getting_Financial_Data) ### [Deleting](https://github.com/guipsamora/pandas_exercises/tree/master/10_Deleting) -[Iris](https://github.com/guipsamora/pandas_exercises/tree/master/10_Deleting/Iris) -[Wine](https://github.com/guipsamora/pandas_exercises/tree/master/10_Deleting/Wine) +- [ ] [Iris](https://github.com/guipsamora/pandas_exercises/tree/master/10_Deleting/Iris) +- [ ] [Wine](https://github.com/guipsamora/pandas_exercises/tree/master/10_Deleting/Wine) # Video Solutions Video tutorials of data scientists working through the above exercises: -[Data Talks - Pandas Learning By Doing](https://www.youtube.com/watch?v=pu3IpU937xs&list=PLgJhDSE2ZLxaY_DigHeiIDC1cD09rXgJv) +- [ ] [Data Talks - Pandas Learning By Doing](https://www.youtube.com/watch?v=pu3IpU937xs&list=PLgJhDSE2ZLxaY_DigHeiIDC1cD09rXgJv)