diff --git a/.idea/misc.xml b/.idea/misc.xml index e8e30ee..dd62963 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/.idea/pythonbook.iml b/.idea/pythonbook.iml index 7d301fb..ff18dbf 100644 --- a/.idea/pythonbook.iml +++ b/.idea/pythonbook.iml @@ -4,7 +4,7 @@ - + \ No newline at end of file diff --git a/人与鳄鱼/人与鳄鱼问题.py b/人与鳄鱼/人与鳄鱼问题.py index 78f674b..f0592a9 100644 --- a/人与鳄鱼/人与鳄鱼问题.py +++ b/人与鳄鱼/人与鳄鱼问题.py @@ -24,7 +24,7 @@ for x in range(100): turtle.color("black") turtle.penup() turtle.goto(positionHuman) - turtle.dot(2, "yellow") + turtle.dot(2, "brown") turtle.pendown() turtle.setheading(escapeDregree) @@ -65,10 +65,10 @@ for x in range(100): turtle.fd(20) positionLion2 = turtle.position() - turtle.color("yellow") + turtle.color("brown") turtle.penup() turtle.goto(positionLion3) - turtle.dot(2, "yellow") + turtle.dot(2, "brown") turtle.pendown() positionLion3ToHuman = turtle.towards(positionHuman) turtle.setheading(positionLion3ToHuman) diff --git a/人与鳄鱼/人与鳄鱼,步骤1 画简单图.py b/人与鳄鱼/人与鳄鱼,步骤1 画简单图.py index d503e21..910bc3d 100644 --- a/人与鳄鱼/人与鳄鱼,步骤1 画简单图.py +++ b/人与鳄鱼/人与鳄鱼,步骤1 画简单图.py @@ -17,9 +17,10 @@ turtle.goto(human) turtle.dot(2, "red") turtle.pendown() turtle.setheading(angle) -turtle.fd(10) +turtle.fd(100) human = turtle.position() +print(human) turtle.color("green") turtle.penup() diff --git a/优化算法/梯度下降.py b/优化算法/梯度下降.py index d17cb1e..893b2c4 100644 --- a/优化算法/梯度下降.py +++ b/优化算法/梯度下降.py @@ -9,14 +9,14 @@ x2_history = [] fName = 'himmelblau' dfName = 'df_'+fName def objective(trial): - x1 = 0.1 - x2 = 0.1 + x1 = -0.3 + x2 = -3 lr = 0.002 # x1 = trial.suggest_float("x1", 0, 3) # x2 = trial.suggest_float("x2", 0, 3) beta = 0.5 # lr = trial.suggest_float("lr", 0, 0.1) - epochs = 15 + epochs = 100 z = eval(fName)(x1, x2) z_history.append(z) diff --git a/实例学习Pynimate/file.gif b/实例学习Pynimate/file.gif new file mode 100644 index 0000000..584eff6 Binary files /dev/null and b/实例学习Pynimate/file.gif differ diff --git a/实例学习Pynimate/readme b/实例学习Pynimate/readme new file mode 100644 index 0000000..5155bcb --- /dev/null +++ b/实例学习Pynimate/readme @@ -0,0 +1,2 @@ +https://julkaar9.github.io/pynimate/#how-to-use +https://github.com/julkaar9/pynimate \ No newline at end of file diff --git a/实例学习Pynimate/test.py b/实例学习Pynimate/test.py new file mode 100644 index 0000000..0e3f69e --- /dev/null +++ b/实例学习Pynimate/test.py @@ -0,0 +1,28 @@ +# import matplotlib if you wish to see the animation in gui +import pandas as pd +from matplotlib import pyplot as plt + +import pynimate as nim + +df = pd.DataFrame( + { + "time": ["1960-01-01", "1961-01-01", "1962-01-01"], + "Afghanistan": [1, 2, 3], + "Angola": [2, 3, 4], + "Albania": [1, 2, 5], + "USA": [5, 3, 4], + "Argentina": [1, 4, 5], + } +).set_index("time") + +cnv = nim.Canvas() +# Interpolation frequency is 2 days +bar = nim.Barhplot.from_df(df, "%Y-%m-%d", "2d") +# use set_time to draw the datetime in the canvas +# here we are using a callback that returns datetime formatted in month, year +bar.set_time(callback=lambda i, datafier: datafier.data.index[i].strftime("%b, %Y")) +# add the bar plot to the canvas +cnv.add_plot(bar) +cnv.animate() +cnv.save("file", 24, "gif") +# plt.show() \ No newline at end of file diff --git a/实例学习d3blocks/readme b/实例学习d3blocks/readme new file mode 100644 index 0000000..2357458 --- /dev/null +++ b/实例学习d3blocks/readme @@ -0,0 +1,3 @@ +https://mp.weixin.qq.com/s/dLGK6DOj-sFfQSieXs5G5w +官网 +https://d3blocks.github.io/d3blocks/pages/html/Timeseries.html#chart \ No newline at end of file diff --git a/实例学习d3blocks/test.py b/实例学习d3blocks/test.py new file mode 100644 index 0000000..c2913d9 --- /dev/null +++ b/实例学习d3blocks/test.py @@ -0,0 +1,30 @@ +# 导入d3blocks +from d3blocks import D3Blocks +import numpy as np + +# 初始化 +d3 = D3Blocks() + +# 数据准备 +df = d3.import_example('mnist') +size = np.random.randint(0, 8, df.shape[0]) +opacity = np.random.randint(0, 8, df.shape[0]) / 10 +tooltip = df['y'].values.astype(str) + +# 绘图 +d3.scatter( + df['PC1'].values, # PCA图主成分PC1 x轴数据 + df['PC2'].values, # PCA图主成分PC2 y轴数据 + x1=df['tsne_1'].values, # tSNE图x轴数据 + y1=df['tsne_2'].values, # tSNE图y轴数据 + color=df['y'].values.astype(str), + tooltip=tooltip, # 设置点的值 + size=size, + opacity=opacity, # 设置点透明度 + stroke='#000000', + cmap='tab20', # 设置Colormap + scale=True, + label_radio=['PCA', 'tSNE'], + figsize=[1024, 768], + filepath='scatter_demo.html', #设置结果名称,结果为网页html格式 +) \ No newline at end of file diff --git a/实例学习d3blocks/test2.py b/实例学习d3blocks/test2.py new file mode 100644 index 0000000..27b7944 --- /dev/null +++ b/实例学习d3blocks/test2.py @@ -0,0 +1,12 @@ +from d3blocks import D3Blocks +d3 = D3Blocks() +df = d3.import_example('energy') +d3.sankey(df, + title='Sankey - d3blocks', + filepath='sankey.html', + figsize=(800, 600), + node={"align": "justify", "width": 15, "padding": 15, "color": "currentColor"}, + link={"color": "source-target", "stroke_opacity": 0.5}, + margin={"top": 5, "right": 1, "bottom": 5, "left": 1}, + showfig=True, + overwrite=True) \ No newline at end of file diff --git a/实例学习d3blocks/test3.py b/实例学习d3blocks/test3.py new file mode 100644 index 0000000..b306b1f --- /dev/null +++ b/实例学习d3blocks/test3.py @@ -0,0 +1,388 @@ +"""Scatter block. + +Library : d3blocks +Author : E.Taskesen +Mail : erdogant@gmail.com +Github : https://github.com/d3blocks/d3blocks +License : GPL3 +""" + +# import colourmap + +import numpy as np +from jinja2 import Environment, PackageLoader +from pathlib import Path +import os +import time + +try: + from ..utils import set_colors, convert_dataframe_dict, set_path, update_config, write_html_file +except: + from utils import set_colors, convert_dataframe_dict, set_path, update_config, write_html_file + + +# %% Set configuration properties +def set_config(config={}, **kwargs): + """Set the default configuration setting.""" + logger = kwargs.get('logger', None) + config['chart'] = 'Scatter' + config['title'] = kwargs.get('title', 'scatter - D3blocks') + config['filepath'] = set_path(kwargs.get('filepath', 'scatter.html'), logger) + config['showfig'] = kwargs.get('showfig', True) + config['overwrite'] = kwargs.get('overwrite', True) + config['figsize'] = kwargs.get('figsize', [900, 600]) + config['cmap'] = kwargs.get('cmap', 'tab20') + config['scale'] = kwargs.get('scale', False) + config['ylim'] = kwargs.get('ylim', [None, None]) + config['xlim'] = kwargs.get('xlim', [None, None]) + config['label_radio'] = kwargs.get('label_radio', ['(x, y)', '(x1, y1)', '(x2, y2)']) + config['color_background'] = kwargs.get('color_background', '#ffffff') + config['reset_properties'] = kwargs.get('reset_properties', True) + config['notebook'] = kwargs.get('notebook', False) + config['jitter'] = kwargs.get('jitter', None) + # Return + return config + + +# %% Preprocessing +def check_exceptions(x, y, x1, y1, x2, y2, size, color, tooltip, logger): + """Check Exceptions.""" + # if len(config['label_radio'])!=sum(list(map(lambda x: x=='', config['radio_button_visible']))): raise Exception(logger.error('input parameter [label_radio] must contain the correct number of labels depending on the (x,y), (x1,y1), (x2,y2) coordinates.')) + if len(x) != len(y): raise Exception(logger.error('input parameter [x] and [y] should be of size of (x, y).')) + if size is None: raise Exception(logger.error('input parameter [size] should have value >0.')) + if color is None: raise Exception( + logger.error('input parameter [color] should be of a list of string with hex color, such as "#000000".')) + if isinstance(size, (list, np.ndarray)) and (len(size) != len(x)): raise Exception( + logger.error('input parameter [s] should be of same size of (x, y).')) + if (tooltip is not None) and len(tooltip) != len(x): raise Exception( + logger.error('input parameter [tooltip] should be of size (x, y) and not None.')) + + if (x1 is not None) or (y1 is not None): + if len(x1) != len(y1): raise Exception(logger.error('input parameter [x1] should be of size of (x1, y1).')) + if len(x) != len(x1): raise Exception(logger.error('input parameter (x1, y1) should be of size of (x, y).')) + if (x2 is not None) or (y2 is not None): + if len(x2) != len(y2): raise Exception(logger.error('input parameter [x2] should be of size of (x2, y2).')) + if len(x) != len(x2): raise Exception(logger.error('input parameter (x2, y2) should be of size of (x, y).')) + + +# %% Set the Node properties +def set_node_properties(*args, **kwargs): + """Set the node properties.""" + return None + + +# %% Set the edge properties +def set_edge_properties(*args, **kwargs): + """Set the edge properties for the scatterplot block. + + Parameters + ---------- + x : numpy array + 1d coordinates x-axis. + y : numpy array + 1d coordinates y-axis. + x1 : numpy array + Second set of 1d coordinates x-axis. + y1 : numpy array + Second set of 1d coordinates y-axis. + x2 : numpy array + Third set of 1d coordinates x-axis. + y2 : numpy array + Third set of 1d coordinates y-axis. + size: list/array of with same size as (x,y). Can be of type str or int. + Size of the samples. + color: list/array of hex colors with same size as (x,y) + '#ffffff' : All dots are get the same hex color. + None: The same color as for c is applied. + ['#000000', '#ffffff',...]: list/array of hex colors with same size as (x,y) + stroke: list/array of hex colors with same size as (x,y) + Edgecolor of dotsize in hex colors. + '#000000' : All dots are get the same hex color. + ['#000000', '#ffffff',...]: list/array of hex colors with same size as (x,y) + c_gradient : String, (default: None) + Make a lineair gradient based on the density for the particular class label. + '#ffffff' + tooltip: list of labels with same size as (x,y) + labels of the samples. + opacity: float or list/array [0-1] + Opacity of the dot. Shoud be same size as (x,y) + cmap : String, (default: 'inferno') + All colors can be reversed with '_r', e.g. 'binary' to 'binary_r' + 'Set1','Set2','rainbow','bwr','binary','seismic','Blues','Reds','Pastel1','Paired','twilight','hsv' + scale: Bool, optional + Scale datapoints. The default is False. + + Returns + ------- + d3.edge_properties: DataFrame of dictionary + Contains properties of the unique input edges/links. + + """ + # Collect arguments + if len(args) == 2: + x, y = args + else: + x = kwargs.get('x', None) + y = kwargs.get('y', None) + + # Collect key-word arguments + x1 = kwargs.get('x1', None) + y1 = kwargs.get('y1', None) + x2 = kwargs.get('x2', None) + y2 = kwargs.get('y2', None) + + jitter = kwargs.get('jitter', None) + size = kwargs.get('size', 5) + color = kwargs.get('color', '#69b3a2') + stroke = kwargs.get('stroke', '#000000') + c_gradient = kwargs.get('c_gradient', None) + tooltip = kwargs.get('tooltip', None) + opacity = kwargs.get('opacity', 0.8) + cmap = kwargs.get('cmap', 'tab20') + scale = kwargs.get('scale', False) + logger = kwargs.get('logger', None) + + if isinstance(size, list): size = np.array(size) + + # if (x1 is None): x1 = x + # if (y1 is None): y1 = y + # if (x2 is None): x2 = x + # if (y2 is None): y2 = y + + if (x1 is None): x1 = np.zeros_like(x) * np.nan + if (y1 is None): y1 = np.zeros_like(x) * np.nan + if (x2 is None): x2 = np.zeros_like(x) * np.nan + if (y2 is None): y2 = np.zeros_like(x) * np.nan + + # Add jitter + if jitter is not None: + x = x + np.random.normal(0, jitter, size=len(x)) + if y is not None: y = y + np.random.normal(0, jitter, size=len(y)) + if x1 is not None: x1 = x1 + np.random.normal(0, jitter, size=len(x1)) + if x2 is not None: x2 = x2 + np.random.normal(0, jitter, size=len(x2)) + if y1 is not None: y1 = y1 + np.random.normal(0, jitter, size=len(y1)) + if y2 is not None: y2 = y2 + np.random.normal(0, jitter, size=len(y2)) + + # Combine into array + X = np.c_[x, y] + # Combine second coordinates into array + X1 = np.c_[x1, y1] + X2 = np.c_[x2, y2] + + # Scale data + if scale: + if logger is not None: logger.info('Scaling xy-coordinates.') + X = _scale_xy(X) + X1 = _scale_xy(X1) + X2 = _scale_xy(X2) + # In case only one (s)ize is defined. Set all points to this size. + if isinstance(size, (int, float)): size = np.repeat(size, X.shape[0]) + if np.any(size < 0): + if logger is not None: logger.info('[%.0d] sizes are <0 and set to 0.' % (np.sum(size < 0))) + size[size < 0] = 0 + # In case None tooltip is defined. Set all points to this tooltip. + if tooltip is None: tooltip = np.repeat('', X.shape[0]) + # In case only one opacity is defined. Set all points to this size. + if isinstance(opacity, (int, float)): opacity = np.repeat(opacity, X.shape[0]) + # colors + color, labels = set_colors(X, color, cmap, c_gradient=c_gradient) + # In case stroke is None: use same colors as for c. + if stroke is None: + stroke = color + elif isinstance(stroke, str): + # In case only one stroke is defined. Set all points to this size. + stroke = np.repeat(stroke, X.shape[0]) + + # Make dict with properties + dict_properties = {} + for i in range(0, X.shape[0]): + dict_properties[i] = {'label': labels[i], 'x': X[i][0], 'y': X[i][1], 'x1': X1[i][0], 'y1': X1[i][1], + 'x2': X2[i][0], 'y2': X2[i][1], 'color': color[i], 'size': size[i], 'stroke': stroke[i], + 'opacity': opacity[i], 'tooltip': tooltip[i]} + + # Create the plot + # df = pd.DataFrame(dict_properties).T + + # return + return dict_properties + + +# %% Scale data +def _scale_xy(X): + """Scale xy coordinates.""" + x_min, x_max = np.min(X, 0), np.max(X, 0) + return (X - x_min) / (x_max - x_min) + + +# %% Show +def show(df, **kwargs): + """Build and show the graph. + + Parameters + ---------- + df : pd.DataFrame() + Input data. + label_radio: List ['(x, y)', '(x1, y1)', '(x2, y2)'] + The labels used for the radiobuttons. + set_xlim : tuple, (default: [None, None]) + Width of the x-axis: The default is extracted from the data with 10% spacing. + set_ylim : tuple, (default: [None, None]) + Height of the y-axis: The default is extracted from the data with 10% spacing. + title : String, (default: None) + Title of the figure. + 'Scatterplot' + filepath : String, (Default: user temp directory) + File path to save the output. + 'c://temp//Scatter_demo.html' + figsize : tuple, (default: [None, None]) + Size of the figure in the browser, [width, height]. + [900, 600] + showfig : bool, (default: True) + True: Open browser-window. + False: Do not open browser-window. + overwrite : bool, (default: True) + True: Overwrite the html in the destination directory. + False: Do not overwrite destination file but show warning instead. + reset_properties : bool, (default: True) + True: Reset the node_properties at each run. + False: Use the d3.node_properties() + config : dict + Dictionary containing configuration keys. + logger : Object, (default: None) + Show messages on screen. + + Returns + ------- + config : dict + Dictionary containing updated configuration keys. + + """ + df = df.copy() + logger = kwargs.get('logger', None) + config = update_config(kwargs, logger) + config = config.copy() + + # Convert dict/frame. + df = convert_dataframe_dict(df, frame=True) + + # Set the radio button and visibility of the labels + config['radio_button_visible'] = [("display:none;" if (np.all(list(map(np.isnan, df['x1'])))) else ""), + ("display:none;" if (np.all(list(map(np.isnan, df['x1'])))) else ""), + ("display:none;" if (np.all(list(map(np.isnan, df['x2'])))) else "")] + if ("display:none" in config['radio_button_visible'][0]): config['label_radio'][0] = "" + if ("display:none" in config['radio_button_visible'][1]): config['label_radio'][1] = "" + if len(config['label_radio']) == 3 and ("display:none" in config['radio_button_visible'][2]): + config['label_radio'][2] = "" + elif len(config['label_radio']) == 2: + config['label_radio'].append("") + + # Compute xlim and ylim for the axis. + spacing = 0.12 + if config['xlim'] == [None, None] or len(config['xlim']) == 0: + maxvalue = df[['x', 'x1', 'x2']].max().max() + minvalue = df[['x', 'x1', 'x2']].min().min() + x_spacing = ((maxvalue - minvalue) * spacing) + config['xlim'] = [minvalue - x_spacing, maxvalue + x_spacing] + # x_spacing = (df['x'].max() - df['x'].min()) * spacing + # config['xlim'] = [df['x'].min() - x_spacing, df['x'].max() + x_spacing] + if config['ylim'] == [None, None] or len(config['ylim']) == 0: + maxvalue = df[['y', 'y1', 'y2']].max().max() + minvalue = df[['y', 'y1', 'y2']].min().min() + y_spacing = ((maxvalue - minvalue) * spacing) + config['ylim'] = [minvalue - y_spacing, maxvalue + y_spacing] + # y_spacing = (df['y'].max() - df['y'].min()) * spacing + # config['ylim'] = [df['y'].min() - y_spacing, df['y'].max() + y_spacing] + + # Create the data from the input of javascript + X = get_data_ready_for_d3(df) + # Check whether tooltip is available. Otherwise remove the tooltip box. + if np.all(df['tooltip'] == ''): + config['mouseover'] = '' + config['mousemove'] = '' + config['mouseleave'] = '' + else: + config['mouseover'] = '.on("mouseover", mouseover)' + config['mousemove'] = '.on("mousemove", mousemove)' + config['mouseleave'] = '.on("mouseleave", mouseleave)' + + # Write to HTML + return write_html(X, config, logger=logger) + + +def write_html(X, config, logger=None): + """Write html. + + Parameters + ---------- + X : list of str + Input data for javascript. + config : dict + Dictionary containing configuration keys. + + Returns + ------- + None. + + """ + content = { + 'json_data': X, + 'COLOR_BACKGROUND': config['color_background'], + 'TITLE': config['title'], + 'WIDTH': config['figsize'][0], + 'HEIGHT': config['figsize'][1], + 'MIN_X': config['xlim'][0], + 'MAX_X': config['xlim'][1], + 'MIN_Y': config['ylim'][0], + 'MAX_Y': config['ylim'][1], + 'RADIO_LABEL1': config['label_radio'][0], + 'RADIO_LABEL2': config['label_radio'][1], + 'RADIO_LABEL3': config['label_radio'][2], + 'RADIO_VISIBLE1': config['radio_button_visible'][0], + 'RADIO_VISIBLE2': config['radio_button_visible'][1], + 'RADIO_VISIBLE3': config['radio_button_visible'][2], + 'MOUSEOVER': config['mouseover'], + 'MOUSEMOVE': config['mousemove'], + 'MOUSELEAVE': config['mouseleave'], + } + + try: + jinja_env = Environment(loader=PackageLoader(package_name=__name__, package_path='d3js')) + except: + jinja_env = Environment(loader=PackageLoader(package_name='d3blocks.scatter', package_path='d3js')) + + index_template = jinja_env.get_template('scatter.html.j2') + + # index_file = Path(config['filepath']) + # # index_file.write_text(index_template.render(content)) + # if config['overwrite'] and os.path.isfile(index_file): + # if logger is not None: logger.info('File already exists and will be overwritten: [%s]' %(index_file)) + # os.remove(index_file) + # time.sleep(0.5) + # with open(index_file, "w", encoding="utf-8") as f: + # f.write(index_template.render(content)) + + # Generate html content + html = index_template.render(content) + write_html_file(config, html, logger) + # Return html + return html + + +def get_data_ready_for_d3(df): + """Convert the source-target data into d3 compatible data. + + Parameters + ---------- + df : pd.DataFrame() + Input data. + + Returns + ------- + X : str. + Converted data into a string that is d3 compatible. + + """ + # Set x, y + X = df[['x', 'y', 'color', 'size', 'opacity', 'stroke', 'tooltip', 'x1', 'y1', 'x2', 'y2']].to_json(orient='values') + # Return + return X \ No newline at end of file diff --git a/实例学习d3blocks/官网例子/chart.py b/实例学习d3blocks/官网例子/chart.py new file mode 100644 index 0000000..83b36b0 --- /dev/null +++ b/实例学习d3blocks/官网例子/chart.py @@ -0,0 +1,17 @@ +# Load d3blocks +from d3blocks import D3Blocks +# +# Initialize +d3 = D3Blocks(chart='Timeseries', frame=False) +# +# Import example +df = d3.import_example('climate') +# +# Node properties +d3.set_node_properties(df.columns.values) +d3.node_properties.get('wind_speed')['color']='#000000' +print(d3.node_properties) +# +d3.set_edge_properties(df, datetime='date', dt_format='%Y-%m-%d %H:%M:%S') + +d3.show(title='Timeseries with adjusted configurations') diff --git a/实例学习d3blocks/官网例子/imageslider.py b/实例学习d3blocks/官网例子/imageslider.py new file mode 100644 index 0000000..439e3d0 --- /dev/null +++ b/实例学习d3blocks/官网例子/imageslider.py @@ -0,0 +1,21 @@ +# Load d3blocks +from d3blocks import D3Blocks +# +# Initialize +d3 = D3Blocks() +# +# Local images +img_before, img_after = d3.import_example('southern_nebula') +# +# Internet location +img_before, img_after = d3.import_example('southern_nebula_internet') +# +# Read the image in array +img_before = cv2.imread(img_before, -1) +img_after = cv2.imread(img_after, -1) +# +# Plot +d3.imageslider(img_before, img_after) +# +# Plot +d3.imageslider(img_before, img_after, showfig=True, scale=True, colorscale=2, figsize=[400, 400]) \ No newline at end of file diff --git a/实例学习pandasai/helloworld.py b/实例学习pandasai/helloworld.py new file mode 100644 index 0000000..3c77315 --- /dev/null +++ b/实例学习pandasai/helloworld.py @@ -0,0 +1,21 @@ +import pandas as pd +from pandasai import PandasAI + +# Sample DataFrame +df = pd.DataFrame({ + "country": ["United States", "United Kingdom", "France", "Germany", "Italy", "Spain", "Canada", "Australia", "Japan", "China"], + "gdp": [19294482071552, 2891615567872, 2411255037952, 3435817336832, 1745433788416, 1181205135360, 1607402389504, 1490967855104, 4380756541440, 14631844184064], + "happiness_index": [6.94, 7.16, 6.66, 7.07, 6.38, 6.4, 7.23, 7.22, 5.87, 5.12] +}) + +# Instantiate a LLM +from pandasai.llm.openai import OpenAI +llm = OpenAI(api_token="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") + +pandas_ai = PandasAI(llm) +pandas_ai.run(df, prompt='Which are the 5 happiest countries?') + +pandas_ai.run( + df, + "Plot the histogram of countries showing for each the gpd, using different colors for each bar", +) \ No newline at end of file diff --git a/实例学习pandasai/readme b/实例学习pandasai/readme new file mode 100644 index 0000000..ff95655 --- /dev/null +++ b/实例学习pandasai/readme @@ -0,0 +1 @@ +https://mp.weixin.qq.com/s/EKLipcw4tmwLbAo7lhdUig \ No newline at end of file diff --git a/实例学习streamlit/test.py b/实例学习streamlit/test.py new file mode 100644 index 0000000..c872b8e --- /dev/null +++ b/实例学习streamlit/test.py @@ -0,0 +1,21 @@ +import streamlit as st +import pandas as pd +from io import StringIO + +uploaded_file = st.file_uploader("Choose a file") +if uploaded_file is not None: + # To read file as bytes: + bytes_data = uploaded_file.getvalue() + st.write(bytes_data) + + # To convert to a string based IO: + stringio = StringIO(uploaded_file.getvalue().decode("utf-8")) + st.write(stringio) + + # To read file as string: + string_data = stringio.read() + st.write(string_data) + + # Can be used wherever a "file-like" object is accepted: + dataframe = pd.read_csv(uploaded_file) + st.write(dataframe) \ No newline at end of file diff --git a/实验 探索Chipotle快餐数据/1.探索Chipotle快餐数据.py b/实验 探索Chipotle快餐数据/1.探索Chipotle快餐数据.py new file mode 100644 index 0000000..c6e09d6 --- /dev/null +++ b/实验 探索Chipotle快餐数据/1.探索Chipotle快餐数据.py @@ -0,0 +1,59 @@ +# -- 将数据集存入一个名为chipo的数据框内 +# -- 查看前10行内容 +# -- 数据集中有多少个列(columns)? +# -- 打印出全部的列名称 +# -- 数据集的索引是怎样的? +# -- 被下单数最多商品(item)是什么? +# -- 在item_name这一列中,一共有多少种商品被下单? +# -- 在choice_description中,下单次数最多的商品是什么? +# -- 一共有多少商品被下单? +# -- 将item_price转换为浮点数 +# -- 在该数据集对应的时期内,收入(revenue)是多少? +# -- 在该数据集对应的时期内,一共有多少订单? +# -- 每一单(order)对应的平均总价是多少? + +import pandas as pd +#将数据集存入一个名为chipo的数据框内 +chipo = pd.read_csv('data/chipotle.tsv',sep='\t') +print(chipo.head(10)) + +#数据集中有多少个列(columns)? +print(chipo.shape) +print(chipo.shape[1]) + +print(chipo.columns) +print(chipo.index) + +#被下单数最多商品(item)是什么? +# print(chipo[['item_name','quantity']].groupby(by=['item_name']).describe()) +a1 = chipo[['item_name','quantity']].groupby(by=['item_name']).sum().sort_values(by = ['quantity'],ascending=False) +print(a1) + +#在item_name这一列中,一共有多少种商品被下单? +a2 = chipo['item_name'].nunique() +print(a2) + +#在choice_description中,下单次数最多的商品是什么? +a3 = chipo[['quantity','choice_description']].groupby('choice_description').sum().sort_values('quantity',ascending=False) +a4 = chipo['choice_description'].value_counts().head() +print(a3,a4) + +#一共有多少商品被下单? +a5 = chipo['quantity'].sum() +print(a5) + +#将item_price转换为浮点数 +#货币符号后取起 +# print(chipo['item_price']) +#为什么从0开始不行? +#报错:could not convert string to float: '$2.39 ' +a6 = chipo['item_price'] = chipo['item_price'].apply(lambda x:float(x[1:])) + +#在该数据集对应的时期内,收入(revenue)是多少? +((chipo['quantity']*chipo['item_price'])).sum() + +#在该数据集对应的时期内,一共有多少订单? +chipo['order_id'].nunique() +#每一单(order)对应的平均总价是多少? +chipo['item_price_sum'] = chipo['quantity'] * chipo['item_price'] +chipo[['order_id','item_price_sum']].groupby('order_id').sum().mean() diff --git a/实验 探索Chipotle快餐数据/2.探索2012欧洲杯数据.ipynb b/实验 探索Chipotle快餐数据/2.探索2012欧洲杯数据.ipynb new file mode 100644 index 0000000..a8078c6 --- /dev/null +++ b/实验 探索Chipotle快餐数据/2.探索2012欧洲杯数据.ipynb @@ -0,0 +1,1626 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "# -- 将数据集命名为euro12\n", + "# -- 只选取 Goals 这一列\n", + "# -- 有多少球队参与了2012欧洲杯?\n", + "# -- 该数据集中一共有多少列(columns)?\n", + "# -- 将数据集中的列Team, Yellow Cards和Red Cards单独存为一个名叫discipline的数据框\n", + "# -- 对数据框discipline按照先Red Cards再Yellow Cards进行排序\n", + "# -- 计算每个球队拿到的黄牌数的平均值\n", + "# -- 找到进球数Goals超过6的球队数据\n", + "# -- 选取以字母G开头的球队数据\n", + "# -- 选取前7列\n", + "# -- 选取除了最后3列之外的全部列\n", + "# -- 找到英格兰(England)、意大利(Italy)和俄罗斯(Russia)的射正率(Shooting Accuracy)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "#将数据集命名为euro12\n", + "euro12 = pd.read_csv('data/Euro2012.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "16" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#有多少球队参与了2012欧洲杯?\n", + "euro12.Team.nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "35" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#该数据集中一共有多少列(columns)?\n", + "euro12.shape[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TeamYellow CardsRed Cards
0Croatia90
1Czech Republic70
2Denmark40
3England50
4France60
5Germany40
6Greece91
7Italy160
8Netherlands50
9Poland71
10Portugal120
11Republic of Ireland61
12Russia60
13Spain110
14Sweden70
15Ukraine50
\n", + "
" + ], + "text/plain": [ + " Team Yellow Cards Red Cards\n", + "0 Croatia 9 0\n", + "1 Czech Republic 7 0\n", + "2 Denmark 4 0\n", + "3 England 5 0\n", + "4 France 6 0\n", + "5 Germany 4 0\n", + "6 Greece 9 1\n", + "7 Italy 16 0\n", + "8 Netherlands 5 0\n", + "9 Poland 7 1\n", + "10 Portugal 12 0\n", + "11 Republic of Ireland 6 1\n", + "12 Russia 6 0\n", + "13 Spain 11 0\n", + "14 Sweden 7 0\n", + "15 Ukraine 5 0" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将数据集中的列Team, Yellow Cards和Red Cards单独存为一个名叫discipline的数据框\n", + "discipline = euro12[['Team','Yellow Cards','Red Cards']]\n", + "discipline" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TeamYellow CardsRed Cards
6Greece91
9Poland71
11Republic of Ireland61
7Italy160
10Portugal120
13Spain110
0Croatia90
1Czech Republic70
14Sweden70
4France60
12Russia60
3England50
8Netherlands50
15Ukraine50
2Denmark40
5Germany40
\n", + "
" + ], + "text/plain": [ + " Team Yellow Cards Red Cards\n", + "6 Greece 9 1\n", + "9 Poland 7 1\n", + "11 Republic of Ireland 6 1\n", + "7 Italy 16 0\n", + "10 Portugal 12 0\n", + "13 Spain 11 0\n", + "0 Croatia 9 0\n", + "1 Czech Republic 7 0\n", + "14 Sweden 7 0\n", + "4 France 6 0\n", + "12 Russia 6 0\n", + "3 England 5 0\n", + "8 Netherlands 5 0\n", + "15 Ukraine 5 0\n", + "2 Denmark 4 0\n", + "5 Germany 4 0" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对数据框discipline按照先Red Cards再Yellow Cards进行排序\n", + "discipline.sort_values(['Red Cards','Yellow Cards'],ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "7.4375" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#计算拿到的黄牌数的平均值\n", + "euro12['Yellow Cards'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
TeamGoalsShots on targetShots off targetShooting Accuracy% Goals-to-shotsTotal shots (inc. Blocked)Hit WoodworkPenalty goalsPenalties not scored...Saves madeSaves-to-shots ratioFouls WonFouls ConcededOffsidesYellow CardsRed CardsSubs onSubs offPlayers Used
5Germany10323247.8%15.6%80210...1062.6%63491240151517
13Spain12423355.9%16.0%100010...1593.8%1028319110171718
\n", + "

2 rows × 35 columns

\n", + "
" + ], + "text/plain": [ + " Team Goals Shots on target Shots off target Shooting Accuracy \\\n", + "5 Germany 10 32 32 47.8% \n", + "13 Spain 12 42 33 55.9% \n", + "\n", + " % Goals-to-shots Total shots (inc. Blocked) Hit Woodwork Penalty goals \\\n", + "5 15.6% 80 2 1 \n", + "13 16.0% 100 0 1 \n", + "\n", + " Penalties not scored ... Saves made Saves-to-shots ratio Fouls Won \\\n", + "5 0 ... 10 62.6% 63 \n", + "13 0 ... 15 93.8% 102 \n", + "\n", + " Fouls Conceded Offsides Yellow Cards Red Cards Subs on Subs off \\\n", + "5 49 12 4 0 15 15 \n", + "13 83 19 11 0 17 17 \n", + "\n", + " Players Used \n", + "5 17 \n", + "13 18 \n", + "\n", + "[2 rows x 35 columns]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#找到进球数Goals超过6的球队数据\n", + "euro12[euro12.Goals>6]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
TeamGoalsShots on targetShots off targetShooting Accuracy% Goals-to-shotsTotal shots (inc. Blocked)Hit WoodworkPenalty goalsPenalties not scored...Saves madeSaves-to-shots ratioFouls WonFouls ConcededOffsidesYellow CardsRed CardsSubs onSubs offPlayers Used
5Germany10323247.8%15.6%80210...1062.6%63491240151517
6Greece581830.7%19.2%32111...1365.1%67481291121220
\n", + "

2 rows × 35 columns

\n", + "
" + ], + "text/plain": [ + " Team Goals Shots on target Shots off target Shooting Accuracy \\\n", + "5 Germany 10 32 32 47.8% \n", + "6 Greece 5 8 18 30.7% \n", + "\n", + " % Goals-to-shots Total shots (inc. Blocked) Hit Woodwork Penalty goals \\\n", + "5 15.6% 80 2 1 \n", + "6 19.2% 32 1 1 \n", + "\n", + " Penalties not scored ... Saves made Saves-to-shots ratio Fouls Won \\\n", + "5 0 ... 10 62.6% 63 \n", + "6 1 ... 13 65.1% 67 \n", + "\n", + " Fouls Conceded Offsides Yellow Cards Red Cards Subs on Subs off \\\n", + "5 49 12 4 0 15 15 \n", + "6 48 12 9 1 12 12 \n", + "\n", + " Players Used \n", + "5 17 \n", + "6 20 \n", + "\n", + "[2 rows x 35 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#选取以字母G开头的球队数据\n", + "euro12[euro12.Team.str.startswith('G')]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TeamGoalsShots on targetShots off targetShooting Accuracy% Goals-to-shotsTotal shots (inc. Blocked)
0Croatia4131251.9%16.0%32
1Czech Republic4131841.9%12.9%39
2Denmark4101050.0%20.0%27
3England5111850.0%17.2%40
4France3222437.9%6.5%65
5Germany10323247.8%15.6%80
6Greece581830.7%19.2%32
7Italy6344543.0%7.5%110
8Netherlands2123625.0%4.1%60
9Poland2152339.4%5.2%48
10Portugal6224234.3%9.3%82
11Republic of Ireland171236.8%5.2%28
12Russia593122.5%12.5%59
13Spain12423355.9%16.0%100
14Sweden5171947.2%13.8%39
15Ukraine272621.2%6.0%38
\n", + "
" + ], + "text/plain": [ + " Team Goals Shots on target Shots off target \\\n", + "0 Croatia 4 13 12 \n", + "1 Czech Republic 4 13 18 \n", + "2 Denmark 4 10 10 \n", + "3 England 5 11 18 \n", + "4 France 3 22 24 \n", + "5 Germany 10 32 32 \n", + "6 Greece 5 8 18 \n", + "7 Italy 6 34 45 \n", + "8 Netherlands 2 12 36 \n", + "9 Poland 2 15 23 \n", + "10 Portugal 6 22 42 \n", + "11 Republic of Ireland 1 7 12 \n", + "12 Russia 5 9 31 \n", + "13 Spain 12 42 33 \n", + "14 Sweden 5 17 19 \n", + "15 Ukraine 2 7 26 \n", + "\n", + " Shooting Accuracy % Goals-to-shots Total shots (inc. Blocked) \n", + "0 51.9% 16.0% 32 \n", + "1 41.9% 12.9% 39 \n", + "2 50.0% 20.0% 27 \n", + "3 50.0% 17.2% 40 \n", + "4 37.9% 6.5% 65 \n", + "5 47.8% 15.6% 80 \n", + "6 30.7% 19.2% 32 \n", + "7 43.0% 7.5% 110 \n", + "8 25.0% 4.1% 60 \n", + "9 39.4% 5.2% 48 \n", + "10 34.3% 9.3% 82 \n", + "11 36.8% 5.2% 28 \n", + "12 22.5% 12.5% 59 \n", + "13 55.9% 16.0% 100 \n", + "14 47.2% 13.8% 39 \n", + "15 21.2% 6.0% 38 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#选取前7列\n", + "euro12.iloc[:,0:7]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TeamGoalsShots on targetShots off targetShooting Accuracy% Goals-to-shotsTotal shots (inc. Blocked)Hit WoodworkPenalty goalsPenalties not scored...Clean SheetsBlocksGoals concededSaves madeSaves-to-shots ratioFouls WonFouls ConcededOffsidesYellow CardsRed Cards
0Croatia4131251.9%16.0%32000...01031381.3%4162290
1Czech Republic4131841.9%12.9%39000...1106960.1%5373870
2Denmark4101050.0%20.0%27100...11051066.7%2538840
3England5111850.0%17.2%40000...22932288.1%4345650
4France3222437.9%6.5%65100...175654.6%3651560
5Germany10323247.8%15.6%80210...11161062.6%63491240
6Greece581830.7%19.2%32111...12371365.1%67481291
7Italy6344543.0%7.5%110200...21872074.1%1018916160
8Netherlands2123625.0%4.1%60200...0951270.6%3530350
9Poland2152339.4%5.2%48000...083666.7%4856371
10Portugal6224234.3%9.3%82600...21141071.5%739010120
11Republic of Ireland171236.8%5.2%28000...02391765.4%43511161
12Russia593122.5%12.5%59200...0831077.0%3443460
13Spain12423355.9%16.0%100010...5811593.8%1028319110
14Sweden5171947.2%13.8%39300...1125861.6%3551770
15Ukraine272621.2%6.0%38000...0441376.5%4831450
\n", + "

16 rows × 32 columns

\n", + "
" + ], + "text/plain": [ + " Team Goals Shots on target Shots off target \\\n", + "0 Croatia 4 13 12 \n", + "1 Czech Republic 4 13 18 \n", + "2 Denmark 4 10 10 \n", + "3 England 5 11 18 \n", + "4 France 3 22 24 \n", + "5 Germany 10 32 32 \n", + "6 Greece 5 8 18 \n", + "7 Italy 6 34 45 \n", + "8 Netherlands 2 12 36 \n", + "9 Poland 2 15 23 \n", + "10 Portugal 6 22 42 \n", + "11 Republic of Ireland 1 7 12 \n", + "12 Russia 5 9 31 \n", + "13 Spain 12 42 33 \n", + "14 Sweden 5 17 19 \n", + "15 Ukraine 2 7 26 \n", + "\n", + " Shooting Accuracy % Goals-to-shots Total shots (inc. Blocked) \\\n", + "0 51.9% 16.0% 32 \n", + "1 41.9% 12.9% 39 \n", + "2 50.0% 20.0% 27 \n", + "3 50.0% 17.2% 40 \n", + "4 37.9% 6.5% 65 \n", + "5 47.8% 15.6% 80 \n", + "6 30.7% 19.2% 32 \n", + "7 43.0% 7.5% 110 \n", + "8 25.0% 4.1% 60 \n", + "9 39.4% 5.2% 48 \n", + "10 34.3% 9.3% 82 \n", + "11 36.8% 5.2% 28 \n", + "12 22.5% 12.5% 59 \n", + "13 55.9% 16.0% 100 \n", + "14 47.2% 13.8% 39 \n", + "15 21.2% 6.0% 38 \n", + "\n", + " Hit Woodwork Penalty goals Penalties not scored ... Clean Sheets \\\n", + "0 0 0 0 ... 0 \n", + "1 0 0 0 ... 1 \n", + "2 1 0 0 ... 1 \n", + "3 0 0 0 ... 2 \n", + "4 1 0 0 ... 1 \n", + "5 2 1 0 ... 1 \n", + "6 1 1 1 ... 1 \n", + "7 2 0 0 ... 2 \n", + "8 2 0 0 ... 0 \n", + "9 0 0 0 ... 0 \n", + "10 6 0 0 ... 2 \n", + "11 0 0 0 ... 0 \n", + "12 2 0 0 ... 0 \n", + "13 0 1 0 ... 5 \n", + "14 3 0 0 ... 1 \n", + "15 0 0 0 ... 0 \n", + "\n", + " Blocks Goals conceded Saves made Saves-to-shots ratio Fouls Won \\\n", + "0 10 3 13 81.3% 41 \n", + "1 10 6 9 60.1% 53 \n", + "2 10 5 10 66.7% 25 \n", + "3 29 3 22 88.1% 43 \n", + "4 7 5 6 54.6% 36 \n", + "5 11 6 10 62.6% 63 \n", + "6 23 7 13 65.1% 67 \n", + "7 18 7 20 74.1% 101 \n", + "8 9 5 12 70.6% 35 \n", + "9 8 3 6 66.7% 48 \n", + "10 11 4 10 71.5% 73 \n", + "11 23 9 17 65.4% 43 \n", + "12 8 3 10 77.0% 34 \n", + "13 8 1 15 93.8% 102 \n", + "14 12 5 8 61.6% 35 \n", + "15 4 4 13 76.5% 48 \n", + "\n", + " Fouls Conceded Offsides Yellow Cards Red Cards \n", + "0 62 2 9 0 \n", + "1 73 8 7 0 \n", + "2 38 8 4 0 \n", + "3 45 6 5 0 \n", + "4 51 5 6 0 \n", + "5 49 12 4 0 \n", + "6 48 12 9 1 \n", + "7 89 16 16 0 \n", + "8 30 3 5 0 \n", + "9 56 3 7 1 \n", + "10 90 10 12 0 \n", + "11 51 11 6 1 \n", + "12 43 4 6 0 \n", + "13 83 19 11 0 \n", + "14 51 7 7 0 \n", + "15 31 4 5 0 \n", + "\n", + "[16 rows x 32 columns]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#选取除了最后3列之外的全部列\n", + "euro12.iloc[:,0:-3]" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
TeamShooting Accuracy
3England50.0%
7Italy43.0%
12Russia22.5%
\n", + "
" + ], + "text/plain": [ + " Team Shooting Accuracy\n", + "3 England 50.0%\n", + "7 Italy 43.0%\n", + "12 Russia 22.5%" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#找到英格兰(England)、意大利(Italy)和俄罗斯(Russia)的射正率(Shooting Accuracy)\n", + "euro12.loc[euro12['Team'].isin(['England','Italy','Russia']),['Team','Shooting Accuracy']]\n", + "\n", + "# euro12.loc[euro12['Team'].isin(['England','Italy','Russia']),'Shooting Accuracy']" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} \ No newline at end of file diff --git a/实验 探索Chipotle快餐数据/3.探索酒类消费数据.ipynb b/实验 探索Chipotle快餐数据/3.探索酒类消费数据.ipynb new file mode 100644 index 0000000..aceb9db --- /dev/null +++ b/实验 探索Chipotle快餐数据/3.探索酒类消费数据.ipynb @@ -0,0 +1,618 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "# -- 将数据框命名为drinks\n", + "# -- 哪个大陆(continent)平均消耗的啤酒(beer)更多?\n", + "# -- 打印出每个大陆(continent)的红酒消耗(wine_servings)的描述性统计值\n", + "# -- 打印出每个大陆每种酒类别的消耗平均值\n", + "# -- 打印出每个大陆每种酒类别的消耗中位数\n", + "# -- 打印出每个大陆对spirit饮品消耗的平均值,最大值和最小值" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "#将数据框命名为drinks\n", + "drinks = pd.read_csv('data/drinks.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
beer_servings
continent
EU193.777778
\n", + "
" + ], + "text/plain": [ + " beer_servings\n", + "continent \n", + "EU 193.777778" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#哪个大陆(continent)平均消耗的啤酒(beer)更多?\n", + "drinks[['beer_servings','continent']].groupby('continent').mean().sort_values('beer_servings',ascending=False).head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
countmeanstdmin25%50%75%max
continent
AF53.016.26415138.8464190.01.02.013.00233.0
AS44.09.06818221.6670340.00.01.08.00123.0
EU45.0142.22222297.4217380.059.0128.0195.00370.0
OC16.035.62500064.5557900.01.08.523.25212.0
SA12.062.41666788.6201891.03.012.098.50221.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "continent \n", + "AF 53.0 16.264151 38.846419 0.0 1.0 2.0 13.00 233.0\n", + "AS 44.0 9.068182 21.667034 0.0 0.0 1.0 8.00 123.0\n", + "EU 45.0 142.222222 97.421738 0.0 59.0 128.0 195.00 370.0\n", + "OC 16.0 35.625000 64.555790 0.0 1.0 8.5 23.25 212.0\n", + "SA 12.0 62.416667 88.620189 1.0 3.0 12.0 98.50 221.0" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# -- 打印出每个大陆(continent)的红酒消耗(wine_servings)的描述性统计值\n", + "# drinks[['wine_servings','continent']].groupby('continent').sum()\n", + "drinks.groupby('continent').wine_servings.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
beer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcohol
continent
AF61.47169816.33962316.2641513.007547
AS37.04545560.8409099.0681822.170455
EU193.777778132.555556142.2222228.617778
OC89.68750058.43750035.6250003.381250
SA175.083333114.75000062.4166676.308333
\n", + "
" + ], + "text/plain": [ + " beer_servings spirit_servings wine_servings \\\n", + "continent \n", + "AF 61.471698 16.339623 16.264151 \n", + "AS 37.045455 60.840909 9.068182 \n", + "EU 193.777778 132.555556 142.222222 \n", + "OC 89.687500 58.437500 35.625000 \n", + "SA 175.083333 114.750000 62.416667 \n", + "\n", + " total_litres_of_pure_alcohol \n", + "continent \n", + "AF 3.007547 \n", + "AS 2.170455 \n", + "EU 8.617778 \n", + "OC 3.381250 \n", + "SA 6.308333 " + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# -- 打印出每个大陆每种酒类别的消耗平均值\n", + "# drinks\n", + "# drinks[['beer_servings','spirit_servings','wine_servings','continent']].groupby('continent').mean()\n", + "drinks.groupby('continent').mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
beer_servingsspirit_servingswine_servingstotal_litres_of_pure_alcohol
continent
AF32.03.02.02.30
AS17.516.01.01.20
EU219.0122.0128.010.00
OC52.537.08.51.75
SA162.5108.512.06.85
\n", + "
" + ], + "text/plain": [ + " beer_servings spirit_servings wine_servings \\\n", + "continent \n", + "AF 32.0 3.0 2.0 \n", + "AS 17.5 16.0 1.0 \n", + "EU 219.0 122.0 128.0 \n", + "OC 52.5 37.0 8.5 \n", + "SA 162.5 108.5 12.0 \n", + "\n", + " total_litres_of_pure_alcohol \n", + "continent \n", + "AF 2.30 \n", + "AS 1.20 \n", + "EU 10.00 \n", + "OC 1.75 \n", + "SA 6.85 " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# -- 打印出每个大陆每种酒类别的消耗中位数\n", + "drinks.groupby('continent').median()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
countmeanstdmin25%50%75%max
continent
AF53.016.33962328.1027940.01.003.019.00152.0
AS44.060.84090984.3621600.01.0016.098.00326.0
EU45.0132.55555677.5891150.081.00122.0173.00373.0
OC16.058.43750070.5048170.018.0037.065.25254.0
SA12.0114.75000077.07744025.065.75108.5148.75302.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "continent \n", + "AF 53.0 16.339623 28.102794 0.0 1.00 3.0 19.00 152.0\n", + "AS 44.0 60.840909 84.362160 0.0 1.00 16.0 98.00 326.0\n", + "EU 45.0 132.555556 77.589115 0.0 81.00 122.0 173.00 373.0\n", + "OC 16.0 58.437500 70.504817 0.0 18.00 37.0 65.25 254.0\n", + "SA 12.0 114.750000 77.077440 25.0 65.75 108.5 148.75 302.0" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#打印出每个大陆对spirit饮品消耗的平均值,最大值和最小值\n", + "drinks.groupby('continent').spirit_servings.describe()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} \ No newline at end of file diff --git a/实验 探索Chipotle快餐数据/4.探索1960 - 2014 美国犯罪数据.ipynb b/实验 探索Chipotle快餐数据/4.探索1960 - 2014 美国犯罪数据.ipynb new file mode 100644 index 0000000..73f74c5 --- /dev/null +++ b/实验 探索Chipotle快餐数据/4.探索1960 - 2014 美国犯罪数据.ipynb @@ -0,0 +1,615 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# -- 将数据框命名为crime\n", + "# -- 每一列(column)的数据类型是什么样的?\n", + "# -- 将Year的数据类型转换为 datetime64\n", + "# -- 将列Year设置为数据框的索引\n", + "# -- 删除名为Total的列\n", + "# -- 按照Year(每十年)对数据框进行分组并求和\n", + "# -- 何时是美国历史上生存最危险的年代?" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "#将数据框命名为drinks\n", + "crime = pd.read_csv('data/US_Crime_Rates_1960_2014.csv',index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 55 entries, 0 to 54\n", + "Data columns (total 12 columns):\n", + "Year 55 non-null int64\n", + "Population 55 non-null int64\n", + "Total 55 non-null int64\n", + "Violent 55 non-null int64\n", + "Property 55 non-null int64\n", + "Murder 55 non-null int64\n", + "Forcible_Rape 55 non-null int64\n", + "Robbery 55 non-null int64\n", + "Aggravated_assault 55 non-null int64\n", + "Burglary 55 non-null int64\n", + "Larceny_Theft 55 non-null int64\n", + "Vehicle_Theft 55 non-null int64\n", + "dtypes: int64(12)\n", + "memory usage: 5.6 KB\n" + ] + } + ], + "source": [ + "#每一列(column)的数据类型是什么样的?\n", + "crime.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PopulationTotalViolentPropertyMurderForcible_RapeRobberyAggravated_assaultBurglaryLarceny_TheftVehicle_Theft
Year
1960-01-01179323175338420028846030957009110171901078401543209121001855400328200
1961-01-01182992000348800028939031986008740172201066701567609496001913000336000
1962-01-01185771000375220030151034507008530175501108601645709943002089600366800
1963-01-011884830004109500316970379250086401765011647017421010864002297800408300
1964-01-011911410004564600364220420040093602142013039020305012132002514400472800
\n", + "
" + ], + "text/plain": [ + " Population Total Violent Property Murder Forcible_Rape \\\n", + "Year \n", + "1960-01-01 179323175 3384200 288460 3095700 9110 17190 \n", + "1961-01-01 182992000 3488000 289390 3198600 8740 17220 \n", + "1962-01-01 185771000 3752200 301510 3450700 8530 17550 \n", + "1963-01-01 188483000 4109500 316970 3792500 8640 17650 \n", + "1964-01-01 191141000 4564600 364220 4200400 9360 21420 \n", + "\n", + " Robbery Aggravated_assault Burglary Larceny_Theft \\\n", + "Year \n", + "1960-01-01 107840 154320 912100 1855400 \n", + "1961-01-01 106670 156760 949600 1913000 \n", + "1962-01-01 110860 164570 994300 2089600 \n", + "1963-01-01 116470 174210 1086400 2297800 \n", + "1964-01-01 130390 203050 1213200 2514400 \n", + "\n", + " Vehicle_Theft \n", + "Year \n", + "1960-01-01 328200 \n", + "1961-01-01 336000 \n", + "1962-01-01 366800 \n", + "1963-01-01 408300 \n", + "1964-01-01 472800 " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将Year的数据类型转换为 datetime64\n", + "crime.Year = pd.to_datetime(crime.Year,format='%Y')\n", + "#将列Year设置为数据框的索引\n", + "crime = crime.set_index('Year',drop=True)\n", + "crime.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PopulationViolentPropertyMurderForcible_RapeRobberyAggravated_assaultBurglaryLarceny_TheftVehicle_Theft
Year
1960-01-0117932317528846030957009110171901078401543209121001855400328200
1961-01-0118299200028939031986008740172201066701567609496001913000336000
1962-01-0118577100030151034507008530175501108601645709943002089600366800
1963-01-01188483000316970379250086401765011647017421010864002297800408300
1964-01-01191141000364220420040093602142013039020305012132002514400472800
\n", + "
" + ], + "text/plain": [ + " Population Violent Property Murder Forcible_Rape Robbery \\\n", + "Year \n", + "1960-01-01 179323175 288460 3095700 9110 17190 107840 \n", + "1961-01-01 182992000 289390 3198600 8740 17220 106670 \n", + "1962-01-01 185771000 301510 3450700 8530 17550 110860 \n", + "1963-01-01 188483000 316970 3792500 8640 17650 116470 \n", + "1964-01-01 191141000 364220 4200400 9360 21420 130390 \n", + "\n", + " Aggravated_assault Burglary Larceny_Theft Vehicle_Theft \n", + "Year \n", + "1960-01-01 154320 912100 1855400 328200 \n", + "1961-01-01 156760 949600 1913000 336000 \n", + "1962-01-01 164570 994300 2089600 366800 \n", + "1963-01-01 174210 1086400 2297800 408300 \n", + "1964-01-01 203050 1213200 2514400 472800 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#删除名为Total的列\n", + "del crime['Total']\n", + "crime.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PopulationViolentPropertyMurderForcible_RapeRobberyAggravated_assaultBurglaryLarceny_TheftVehicle_Theftpopulation
Year
1960-01-0119150531754134930451609001061802367201633510215852013321100265477005292100<bound method f of DatetimeIndexResampler [fre...
1970-01-0121211932989607930913838001922305545704159020470212028486000531578009739900<bound method f of DatetimeIndexResampler [fre...
1980-01-0123713700691407432811704890020643986563953831097619130330734947204025311935411<bound method f of DatetimeIndexResampler [fre...
1990-01-01261282525817527048119053499211664998827574893010568963267500157767936614624418<bound method f of DatetimeIndexResampler [fre...
2000-01-0129479691171396805610094436916306892249942303668652124215651766797029111412834<bound method f of DatetimeIndexResampler [fre...
\n", + "
" + ], + "text/plain": [ + " Population Violent Property Murder Forcible_Rape Robbery \\\n", + "Year \n", + "1960-01-01 1915053175 4134930 45160900 106180 236720 1633510 \n", + "1970-01-01 2121193298 9607930 91383800 192230 554570 4159020 \n", + "1980-01-01 2371370069 14074328 117048900 206439 865639 5383109 \n", + "1990-01-01 2612825258 17527048 119053499 211664 998827 5748930 \n", + "2000-01-01 2947969117 13968056 100944369 163068 922499 4230366 \n", + "\n", + " Aggravated_assault Burglary Larceny_Theft Vehicle_Theft \\\n", + "Year \n", + "1960-01-01 2158520 13321100 26547700 5292100 \n", + "1970-01-01 4702120 28486000 53157800 9739900 \n", + "1980-01-01 7619130 33073494 72040253 11935411 \n", + "1990-01-01 10568963 26750015 77679366 14624418 \n", + "2000-01-01 8652124 21565176 67970291 11412834 \n", + "\n", + " population \n", + "Year \n", + "1960-01-01 \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_namelast_name
01AlexAnderson
12AmyAckerman
23AllenAli
34AliceAoni
45AyoungAtiches
\n", + "" + ], + "text/plain": [ + " subject_id first_name last_name\n", + "0 1 Alex Anderson\n", + "1 2 Amy Ackerman\n", + "2 3 Allen Ali\n", + "3 4 Alice Aoni\n", + "4 5 Ayoung Atiches" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将上述的DataFrame分别命名为data1, data2, data3\n", + "data1 = pd.DataFrame(raw_data_1)\n", + "data2 = pd.DataFrame(raw_data_2)\n", + "data3 = pd.DataFrame(raw_data_3)\n", + "data1" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_namelast_name
01AlexAnderson
12AmyAckerman
23AllenAli
34AliceAoni
45AyoungAtiches
04BillyBonder
15BrianBlack
26BranBalwner
37BryceBrice
48BettyBtisan
\n", + "
" + ], + "text/plain": [ + " subject_id first_name last_name\n", + "0 1 Alex Anderson\n", + "1 2 Amy Ackerman\n", + "2 3 Allen Ali\n", + "3 4 Alice Aoni\n", + "4 5 Ayoung Atiches\n", + "0 4 Billy Bonder\n", + "1 5 Brian Black\n", + "2 6 Bran Balwner\n", + "3 7 Bryce Brice\n", + "4 8 Betty Btisan" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将data1和data2两个数据框按照行的维度进行合并,命名为all_data\n", + "all_data = pd.concat([data1,data2],axis=0)\n", + "all_data" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_namelast_namesubject_idfirst_namelast_name
01AlexAnderson4BillyBonder
12AmyAckerman5BrianBlack
23AllenAli6BranBalwner
34AliceAoni7BryceBrice
45AyoungAtiches8BettyBtisan
\n", + "
" + ], + "text/plain": [ + " subject_id first_name last_name subject_id first_name last_name\n", + "0 1 Alex Anderson 4 Billy Bonder\n", + "1 2 Amy Ackerman 5 Brian Black\n", + "2 3 Allen Ali 6 Bran Balwner\n", + "3 4 Alice Aoni 7 Bryce Brice\n", + "4 5 Ayoung Atiches 8 Betty Btisan" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将data1和data2两个数据框按照列的维度进行合并,命名为all_data_col\n", + "all_data_col = pd.concat([data1,data2],axis=1)\n", + "all_data_col" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idtest_id
0151
1215
2315
3461
4516
5714
6815
791
81061
91116
\n", + "
" + ], + "text/plain": [ + " subject_id test_id\n", + "0 1 51\n", + "1 2 15\n", + "2 3 15\n", + "3 4 61\n", + "4 5 16\n", + "5 7 14\n", + "6 8 15\n", + "7 9 1\n", + "8 10 61\n", + "9 11 16" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data3" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_namelast_nametest_id
01AlexAnderson51
12AmyAckerman15
23AllenAli15
34AliceAoni61
44BillyBonder61
55AyoungAtiches16
65BrianBlack16
77BryceBrice14
88BettyBtisan15
\n", + "
" + ], + "text/plain": [ + " subject_id first_name last_name test_id\n", + "0 1 Alex Anderson 51\n", + "1 2 Amy Ackerman 15\n", + "2 3 Allen Ali 15\n", + "3 4 Alice Aoni 61\n", + "4 4 Billy Bonder 61\n", + "5 5 Ayoung Atiches 16\n", + "6 5 Brian Black 16\n", + "7 7 Bryce Brice 14\n", + "8 8 Betty Btisan 15" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#按照subject_id的值对all_data和data3作合并\n", + "pd.merge(all_data,data3,on='subject_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_name_xlast_name_xfirst_name_ylast_name_y
04AliceAoniBillyBonder
15AyoungAtichesBrianBlack
\n", + "
" + ], + "text/plain": [ + " subject_id first_name_x last_name_x first_name_y last_name_y\n", + "0 4 Alice Aoni Billy Bonder\n", + "1 5 Ayoung Atiches Brian Black" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对data1和data2按照subject_id作内连接\n", + "pd.merge(data1,data2,on='subject_id',how='inner')" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject_idfirst_name_data1last_name_data1first_name_data2last_name_data2
01AlexAndersonNaNNaN
12AmyAckermanNaNNaN
23AllenAliNaNNaN
34AliceAoniBillyBonder
45AyoungAtichesBrianBlack
56NaNNaNBranBalwner
67NaNNaNBryceBrice
78NaNNaNBettyBtisan
\n", + "
" + ], + "text/plain": [ + " subject_id first_name_data1 last_name_data1 first_name_data2 last_name_data2\n", + "0 1 Alex Anderson NaN NaN\n", + "1 2 Amy Ackerman NaN NaN\n", + "2 3 Allen Ali NaN NaN\n", + "3 4 Alice Aoni Billy Bonder\n", + "4 5 Ayoung Atiches Brian Black\n", + "5 6 NaN NaN Bran Balwner\n", + "6 7 NaN NaN Bryce Brice\n", + "7 8 NaN NaN Betty Btisan" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#找到 data1 和 data2 合并之后的所有匹配结果\n", + "pd.merge(data1,data2,on='subject_id',how='outer',suffixes=('_data1', '_data2'))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/实验 探索Chipotle快餐数据/6.探索风速数据.ipynb b/实验 探索Chipotle快餐数据/6.探索风速数据.ipynb new file mode 100644 index 0000000..fdfb981 --- /dev/null +++ b/实验 探索Chipotle快餐数据/6.探索风速数据.ipynb @@ -0,0 +1,1288 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# -- 将数据作存储并且设置前三列为合适的索引\n", + "# -- 2061年?我们真的有这一年的数据?创建一个函数并用它去修复这个bug\n", + "# -- 将日期设为索引,注意数据类型,应该是datetime64[ns]\n", + "# -- 对应每一个location,一共有多少数据值缺失\n", + "# -- 对应每一个location,一共有多少完整的数据值\n", + "# -- 对于全体数据,计算风速的平均值\n", + "# -- 创建一个名为loc_stats的数据框去计算并存储每个location的风速最小值,最大值,平均值和标准差\n", + "# -- 创建一个名为day_stats的数据框去计算并存储所有location的风速最小值,最大值,平均值和标准差\n", + "# -- 对于每一个location,计算一月份的平均风速\n", + "# -- 对于数据记录按照年为频率取样\n", + "# -- 对于数据记录按照月为频率取样" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Yr_Mo_DyRPTVALROSKILSHABIRDUBCLAMULCLOBELMAL
02061-01-0115.0414.9613.179.29NaN9.8713.6710.2510.8312.5818.5015.04
12061-01-0214.71NaN10.836.5012.627.6711.5010.049.799.6717.5413.83
22061-01-0318.5016.8812.3310.1311.176.1711.25NaN8.507.6712.7512.71
32061-01-0410.586.6311.754.584.542.888.631.795.835.885.4610.88
42061-01-0513.3313.2511.426.1710.718.2111.926.5410.9210.3412.9211.83
\n", + "
" + ], + "text/plain": [ + " Yr_Mo_Dy RPT VAL ROS KIL SHA BIR DUB CLA MUL \\\n", + "0 2061-01-01 15.04 14.96 13.17 9.29 NaN 9.87 13.67 10.25 10.83 \n", + "1 2061-01-02 14.71 NaN 10.83 6.50 12.62 7.67 11.50 10.04 9.79 \n", + "2 2061-01-03 18.50 16.88 12.33 10.13 11.17 6.17 11.25 NaN 8.50 \n", + "3 2061-01-04 10.58 6.63 11.75 4.58 4.54 2.88 8.63 1.79 5.83 \n", + "4 2061-01-05 13.33 13.25 11.42 6.17 10.71 8.21 11.92 6.54 10.92 \n", + "\n", + " CLO BEL MAL \n", + "0 12.58 18.50 15.04 \n", + "1 9.67 17.54 13.83 \n", + "2 7.67 12.75 12.71 \n", + "3 5.88 5.46 10.88 \n", + "4 10.34 12.92 11.83 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import datetime\n", + "#将数据作存储并且设置前三列为合适的索引\n", + "#parse_dates参数:将csv中的时间字符串转换成日期格式\n", + "#文件中,前三列为年月日\n", + "df = pd.read_csv('data/wind.csv',sep='\\s+',parse_dates=[[0,1,2]])\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Yr_Mo_DyRPTVALROSKILSHABIRDUBCLAMULCLOBELMAL
01961-01-0115.0414.9613.179.29NaN9.8713.6710.2510.8312.5818.5015.04
11961-01-0214.71NaN10.836.5012.627.6711.5010.049.799.6717.5413.83
21961-01-0318.5016.8812.3310.1311.176.1711.25NaN8.507.6712.7512.71
31961-01-0410.586.6311.754.584.542.888.631.795.835.885.4610.88
41961-01-0513.3313.2511.426.1710.718.2111.926.5410.9210.3412.9211.83
\n", + "
" + ], + "text/plain": [ + " Yr_Mo_Dy RPT VAL ROS KIL SHA BIR DUB CLA MUL \\\n", + "0 1961-01-01 15.04 14.96 13.17 9.29 NaN 9.87 13.67 10.25 10.83 \n", + "1 1961-01-02 14.71 NaN 10.83 6.50 12.62 7.67 11.50 10.04 9.79 \n", + "2 1961-01-03 18.50 16.88 12.33 10.13 11.17 6.17 11.25 NaN 8.50 \n", + "3 1961-01-04 10.58 6.63 11.75 4.58 4.54 2.88 8.63 1.79 5.83 \n", + "4 1961-01-05 13.33 13.25 11.42 6.17 10.71 8.21 11.92 6.54 10.92 \n", + "\n", + " CLO BEL MAL \n", + "0 12.58 18.50 15.04 \n", + "1 9.67 17.54 13.83 \n", + "2 7.67 12.75 12.71 \n", + "3 5.88 5.46 10.88 \n", + "4 10.34 12.92 11.83 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# -- 2061年?我们真的有这一年的数据?创建一个函数并用它去修复这个bug\n", + "import datetime\n", + "def fix_year(x):\n", + " year = x.year-100 if x.year>1999 else x.year\n", + " return datetime.date(year,x.month,x.day)\n", + "df['Yr_Mo_Dy'] = df['Yr_Mo_Dy'].apply(fix_year)\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
RPTVALROSKILSHABIRDUBCLAMULCLOBELMAL
Yr_Mo_Dy
1961-01-0115.0414.9613.179.29NaN9.8713.6710.2510.8312.5818.5015.04
1961-01-0214.71NaN10.836.5012.627.6711.5010.049.799.6717.5413.83
1961-01-0318.5016.8812.3310.1311.176.1711.25NaN8.507.6712.7512.71
1961-01-0410.586.6311.754.584.542.888.631.795.835.885.4610.88
1961-01-0513.3313.2511.426.1710.718.2111.926.5410.9210.3412.9211.83
\n", + "
" + ], + "text/plain": [ + " RPT VAL ROS KIL SHA BIR DUB CLA MUL \\\n", + "Yr_Mo_Dy \n", + "1961-01-01 15.04 14.96 13.17 9.29 NaN 9.87 13.67 10.25 10.83 \n", + "1961-01-02 14.71 NaN 10.83 6.50 12.62 7.67 11.50 10.04 9.79 \n", + "1961-01-03 18.50 16.88 12.33 10.13 11.17 6.17 11.25 NaN 8.50 \n", + "1961-01-04 10.58 6.63 11.75 4.58 4.54 2.88 8.63 1.79 5.83 \n", + "1961-01-05 13.33 13.25 11.42 6.17 10.71 8.21 11.92 6.54 10.92 \n", + "\n", + " CLO BEL MAL \n", + "Yr_Mo_Dy \n", + "1961-01-01 12.58 18.50 15.04 \n", + "1961-01-02 9.67 17.54 13.83 \n", + "1961-01-03 7.67 12.75 12.71 \n", + "1961-01-04 5.88 5.46 10.88 \n", + "1961-01-05 10.34 12.92 11.83 " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将日期设为索引,注意数据类型,应该是datetime64[ns]\n", + "df['Yr_Mo_Dy'] = pd.to_datetime(df['Yr_Mo_Dy'])\n", + "df = df.set_index('Yr_Mo_Dy')\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "RPT 6\n", + "VAL 3\n", + "ROS 2\n", + "KIL 5\n", + "SHA 2\n", + "BIR 0\n", + "DUB 3\n", + "CLA 2\n", + "MUL 3\n", + "CLO 1\n", + "BEL 0\n", + "MAL 4\n", + "dtype: int64" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对应每一个location,一共有多少数据值缺失\n", + "df.isnull().sum(axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "10.227982360836924" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对于全体数据,计算风速的平均值\n", + "df.mean().mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
minmaxmeanstd
RPT0.6735.8012.3629875.618413
VAL0.2133.3710.6443145.267356
ROS1.5033.8411.6605265.008450
KIL0.0028.466.3064683.605811
SHA0.1337.5410.4558344.936125
\n", + "
" + ], + "text/plain": [ + " min max mean std\n", + "RPT 0.67 35.80 12.362987 5.618413\n", + "VAL 0.21 33.37 10.644314 5.267356\n", + "ROS 1.50 33.84 11.660526 5.008450\n", + "KIL 0.00 28.46 6.306468 3.605811\n", + "SHA 0.13 37.54 10.455834 4.936125" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#创建一个名为loc_stats的数据框去计算并存储每个location的风速最小值,最大值,平均值和标准差\n", + "loc_stats = pd.DataFrame()\n", + "loc_stats['min'] = df.min()\n", + "loc_stats['max'] = df.max()\n", + "loc_stats['mean'] = df.mean()\n", + "loc_stats['std'] = df.std()\n", + "loc_stats.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
minmaxmeanstd
Yr_Mo_Dy
1961-01-011.01961.0150.442857521.138056
1961-01-021.01961.0149.192857521.493581
1961-01-031.01961.0149.504286521.406085
1961-01-041.01961.0136.362000504.781236
1961-01-051.01961.0139.637333503.877109
\n", + "
" + ], + "text/plain": [ + " min max mean std\n", + "Yr_Mo_Dy \n", + "1961-01-01 1.0 1961.0 150.442857 521.138056\n", + "1961-01-02 1.0 1961.0 149.192857 521.493581\n", + "1961-01-03 1.0 1961.0 149.504286 521.406085\n", + "1961-01-04 1.0 1961.0 136.362000 504.781236\n", + "1961-01-05 1.0 1961.0 139.637333 503.877109" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#创建一个名为day_stats的数据框去计算并存储所有天的风速最小值,最大值,平均值和标准差\n", + "day_stats = pd.DataFrame()\n", + "day_stats['min'] = df.min(axis=1)\n", + "day_stats['max'] = df.max(axis=1)\n", + "day_stats['mean'] = df.mean(axis=1)\n", + "day_stats['std'] = df.std(axis=1)\n", + "day_stats.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "RPT 14.847325\n", + "VAL 12.914560\n", + "ROS 13.299624\n", + "KIL 7.199498\n", + "SHA 11.667734\n", + "BIR 8.054839\n", + "DUB 11.819355\n", + "CLA 9.512047\n", + "MUL 9.543208\n", + "CLO 10.053566\n", + "BEL 14.550520\n", + "MAL 18.028763\n", + "dtype: float64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对于每一个location,计算一月份的平均风速\n", + "df['date'] = df.index\n", + "df['year'] = df['date'].apply(lambda x:x.year)\n", + "df['month'] = df['date'].apply(lambda x:x.month)\n", + "df['day'] = df['date'].apply(lambda x:x.day)\n", + "january_winds = df[df.month==1]\n", + "january_winds.loc[:,'RPT':'MAL'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
RPTVALROSKILSHABIRDUBCLAMULCLOBELMALdateyearmonthday
Yr_Mo_Dy
1961-01-0115.0414.9613.179.29NaN9.8713.6710.2510.8312.5818.5015.041961-01-01196111
1962-01-019.293.4211.543.502.211.9610.412.793.545.174.387.921962-01-01196211
1963-01-0115.5913.6219.798.3812.2510.0023.4515.7113.5914.3717.5834.131963-01-01196311
1964-01-0125.8022.1318.2113.2521.2914.7914.1219.5813.2516.7528.9621.001964-01-01196411
1965-01-019.5411.929.004.386.085.2110.256.085.718.6312.0417.411965-01-01196511
1966-01-0122.0421.5017.0812.7522.1715.5921.7918.1216.6617.8328.3323.791966-01-01196611
1967-01-016.464.466.503.216.673.7911.383.837.719.0810.6720.911967-01-01196711
1968-01-0130.0417.8816.2516.2521.7912.5418.1616.6218.7517.6222.2527.291968-01-01196811
1969-01-016.131.635.411.082.541.008.502.424.586.349.1716.711969-01-01196911
1970-01-019.592.9611.793.426.134.089.004.467.293.507.3313.001970-01-01197011
1971-01-013.710.794.710.171.421.044.630.751.541.084.219.541971-01-01197111
1972-01-019.293.6314.544.256.754.4213.005.3310.048.548.7119.171972-01-01197211
1973-01-0116.5015.9214.627.418.2911.2113.547.7910.4610.7913.379.711973-01-01197311
1974-01-0123.2116.5416.089.7515.8311.469.5413.5413.8316.6617.2125.291974-01-01197411
1975-01-0114.0413.5411.295.4612.585.588.128.969.295.177.7111.631975-01-01197511
1976-01-0118.3417.6714.838.0016.6210.1313.179.0413.135.7511.3814.961976-01-01197611
1977-01-0120.0411.9220.259.139.298.0410.755.889.009.0014.8825.701977-01-01197711
1978-01-018.337.127.713.548.507.5014.7110.0011.8310.0015.0920.461978-01-01197811
\n", + "
" + ], + "text/plain": [ + " RPT VAL ROS KIL SHA BIR DUB CLA MUL \\\n", + "Yr_Mo_Dy \n", + "1961-01-01 15.04 14.96 13.17 9.29 NaN 9.87 13.67 10.25 10.83 \n", + "1962-01-01 9.29 3.42 11.54 3.50 2.21 1.96 10.41 2.79 3.54 \n", + "1963-01-01 15.59 13.62 19.79 8.38 12.25 10.00 23.45 15.71 13.59 \n", + "1964-01-01 25.80 22.13 18.21 13.25 21.29 14.79 14.12 19.58 13.25 \n", + "1965-01-01 9.54 11.92 9.00 4.38 6.08 5.21 10.25 6.08 5.71 \n", + "1966-01-01 22.04 21.50 17.08 12.75 22.17 15.59 21.79 18.12 16.66 \n", + "1967-01-01 6.46 4.46 6.50 3.21 6.67 3.79 11.38 3.83 7.71 \n", + "1968-01-01 30.04 17.88 16.25 16.25 21.79 12.54 18.16 16.62 18.75 \n", + "1969-01-01 6.13 1.63 5.41 1.08 2.54 1.00 8.50 2.42 4.58 \n", + "1970-01-01 9.59 2.96 11.79 3.42 6.13 4.08 9.00 4.46 7.29 \n", + "1971-01-01 3.71 0.79 4.71 0.17 1.42 1.04 4.63 0.75 1.54 \n", + "1972-01-01 9.29 3.63 14.54 4.25 6.75 4.42 13.00 5.33 10.04 \n", + "1973-01-01 16.50 15.92 14.62 7.41 8.29 11.21 13.54 7.79 10.46 \n", + "1974-01-01 23.21 16.54 16.08 9.75 15.83 11.46 9.54 13.54 13.83 \n", + "1975-01-01 14.04 13.54 11.29 5.46 12.58 5.58 8.12 8.96 9.29 \n", + "1976-01-01 18.34 17.67 14.83 8.00 16.62 10.13 13.17 9.04 13.13 \n", + "1977-01-01 20.04 11.92 20.25 9.13 9.29 8.04 10.75 5.88 9.00 \n", + "1978-01-01 8.33 7.12 7.71 3.54 8.50 7.50 14.71 10.00 11.83 \n", + "\n", + " CLO BEL MAL date year month day \n", + "Yr_Mo_Dy \n", + "1961-01-01 12.58 18.50 15.04 1961-01-01 1961 1 1 \n", + "1962-01-01 5.17 4.38 7.92 1962-01-01 1962 1 1 \n", + "1963-01-01 14.37 17.58 34.13 1963-01-01 1963 1 1 \n", + "1964-01-01 16.75 28.96 21.00 1964-01-01 1964 1 1 \n", + "1965-01-01 8.63 12.04 17.41 1965-01-01 1965 1 1 \n", + "1966-01-01 17.83 28.33 23.79 1966-01-01 1966 1 1 \n", + "1967-01-01 9.08 10.67 20.91 1967-01-01 1967 1 1 \n", + "1968-01-01 17.62 22.25 27.29 1968-01-01 1968 1 1 \n", + "1969-01-01 6.34 9.17 16.71 1969-01-01 1969 1 1 \n", + "1970-01-01 3.50 7.33 13.00 1970-01-01 1970 1 1 \n", + "1971-01-01 1.08 4.21 9.54 1971-01-01 1971 1 1 \n", + "1972-01-01 8.54 8.71 19.17 1972-01-01 1972 1 1 \n", + "1973-01-01 10.79 13.37 9.71 1973-01-01 1973 1 1 \n", + "1974-01-01 16.66 17.21 25.29 1974-01-01 1974 1 1 \n", + "1975-01-01 5.17 7.71 11.63 1975-01-01 1975 1 1 \n", + "1976-01-01 5.75 11.38 14.96 1976-01-01 1976 1 1 \n", + "1977-01-01 9.00 14.88 25.70 1977-01-01 1977 1 1 \n", + "1978-01-01 10.00 15.09 20.46 1978-01-01 1978 1 1 " + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#对于数据记录按照年为频率取样\n", + "# df[(df.month==1 and df.day==1)]\n", + "#query等同于df[df.month==1]\n", + "df.query('month==1 and day==1')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/实验 探索Chipotle快餐数据/7.探索泰坦尼克灾难数据.ipynb b/实验 探索Chipotle快餐数据/7.探索泰坦尼克灾难数据.ipynb new file mode 100644 index 0000000..a1e78b3 --- /dev/null +++ b/实验 探索Chipotle快餐数据/7.探索泰坦尼克灾难数据.ipynb @@ -0,0 +1,486 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# -- 将数据框命名为titanic\n", + "# -- 将PassengerId设置为索引\n", + "# -- 绘制一个展示男女乘客比例的扇形图\n", + "# -- 绘制一个展示船票Fare, 与乘客年龄和性别的散点图\n", + "# -- 有多少人生还?\n", + "# -- 绘制一个展示船票价格的直方图" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdSurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarked
0103Braund, Mr. Owen Harrismale22.010A/5 211717.2500NaNS
1211Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C
2313Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250NaNS
3411Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S
4503Allen, Mr. William Henrymale35.0003734508.0500NaNS
\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass \\\n", + "0 1 0 3 \n", + "1 2 1 1 \n", + "2 3 1 3 \n", + "3 4 1 1 \n", + "4 5 0 3 \n", + "\n", + " Name Sex Age SibSp \\\n", + "0 Braund, Mr. Owen Harris male 22.0 1 \n", + "1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n", + "2 Heikkinen, Miss. Laina female 26.0 0 \n", + "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n", + "4 Allen, Mr. William Henry male 35.0 0 \n", + "\n", + " Parch Ticket Fare Cabin Embarked \n", + "0 0 A/5 21171 7.2500 NaN S \n", + "1 0 PC 17599 71.2833 C85 C \n", + "2 0 STON/O2. 3101282 7.9250 NaN S \n", + "3 0 113803 53.1000 C123 S \n", + "4 0 373450 8.0500 NaN S " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import numpy as np\n", + "#将数据框命名为titanic\n", + "titanic = pd.read_csv('data/train.csv')\n", + "titanic.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SurvivedPclassNameSexAgeSibSpParchTicketFareCabinEmbarked
PassengerId
103Braund, Mr. Owen Harrismale22.010A/5 211717.2500NaNS
211Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C
313Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250NaNS
411Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S
503Allen, Mr. William Henrymale35.0003734508.0500NaNS
\n", + "
" + ], + "text/plain": [ + " Survived Pclass \\\n", + "PassengerId \n", + "1 0 3 \n", + "2 1 1 \n", + "3 1 3 \n", + "4 1 1 \n", + "5 0 3 \n", + "\n", + " Name Sex Age \\\n", + "PassengerId \n", + "1 Braund, Mr. Owen Harris male 22.0 \n", + "2 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 \n", + "3 Heikkinen, Miss. Laina female 26.0 \n", + "4 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 \n", + "5 Allen, Mr. William Henry male 35.0 \n", + "\n", + " SibSp Parch Ticket Fare Cabin Embarked \n", + "PassengerId \n", + "1 1 0 A/5 21171 7.2500 NaN S \n", + "2 1 0 PC 17599 71.2833 C85 C \n", + "3 0 0 STON/O2. 3101282 7.9250 NaN S \n", + "4 1 0 113803 53.1000 C123 S \n", + "5 0 0 373450 8.0500 NaN S " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将PassengerId设置为索引\n", + "titanic = titanic.set_index('PassengerId')\n", + "titanic.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzt3XecXGWh//HPM2XLbJn0ukk2ZRJCCqEOoDRpUkRAwIqCiIiKF/WnN1693rl2L3pVbHAFQVFALAgSioWitCVASKhhA+m9zpbZMuX5/XFOYEk2fXefMzPf9+s1r8zulPNdQua7z3Oec46x1iIiIhI0IdcBREREeqOCEhGRQFJBiYhIIKmgREQkkFRQIiISSCooEREJJBWUSJEyxrQZYya5ziHSX1RQEnjGmLcbYx43xqSNMVuMMY8ZY47sh+1YY0y7/8G/2hjzv8aYcF9vZ38YYx42xnys5/estbXW2tddZRLpbxHXAUR2xxhTD9wDXAncAVQAxwFd/bTJQ6y1S4wxBwEPA68C1+2QKWKtzfXT9t/CGGMAMxDbEgkajaAk6KYCWGtvs9bmrbUd1tq/WmsXbX+CMeajxpiXjTFbjTEPGGMm+N8/1hizyRgzzv/6EGPMNr98dsta+wrwL2Cm/9plxph/N8YsAtqNMRFjzHR/ZLPNGPOiMeacHpluNsZcZ4z5mzGm1RjzyPZcPbLN90eF840xx/Z47GFjzDeNMY8BGeAWvFL+iT+6+4n/PGuMmeLfjxtjfm2M2WiMWW6M+YoxJuQ/dokx5lFjzPf8/0ZLjTFn7Offh8iAUUFJ0L0K5I0xvzLGnGGMGdzzQWPMucB/AOcDw/FK5TYAa+3jwPXAr4wx1Xgf9F/xy2e3jDEH45XCgh7ffj9wFjAIb1TzF+CvwAjgKuC3xphpPZ7/QeDrwDDgOeC3/nsPAeYB1wJDgf8F5hljhvZ47cXAx4E64BL/5/q0P6336V4i/xiIA5OAE4APA5f2eDwJLPaz/A9woz86Ewkua61uugX6BkwHbgZWATngbmCk/9h9wGU9nhvCG3VM8L+OAs8AzwP3A2Y327FAC7AVeA34BhDyH1sGfLTHc48D1m1/3P/ebUDKv38zcHuPx2qBPDAOr3ye2mHbTwCX+PcfBr62w+MPAx/rJe8UIIw35Xlwj8euAB72718CLOnxWMx/7SjXf7e66ba7m0ZQEnjW2pettZdYaxvwptzGAD/0H54A/MifZtsGbMEb3Yz1X5vFK4uZwPettXs6O/Jh1trB1trJ1tqvWGsLPR5b2eP+GGDlDo8v377dHZ9vrW3zs43xb8t32O4uX7sXhuHtm+v5nju+37oeWTL+3dp92IbIgFNBSVGx3vTczfj7hvA+yK+w1g7qcau23vQexpixwH8BNwHfN8ZUHsjme9xfA4zbvp/HNx5Y3ePrcdvvGGNqgSH+69bgFWtPO752xyLdXbFuArI7vOeO7ydSdFRQEmjGmIOMMZ83xjT4X4/D2xf0pP+U64AvGWNm+I/HjTEX+vcNXpndCFwGrMXbJ9QXmoB24IvGmKgx5kTgXcDtPZ5zpr9EvsLfbpO1diVwLzDVGPMBf7HFe4GD8VYr7sp6vP1LO7HW5vFWOH7TGFPnL8b4HPCbA/sRRdxSQUnQteLt4G8yxrTjFdMLwOcBrLV3At8FbjfGtPiPbV+h9hlgJPCf/tTepcClxpjjDjSUtbYbOMff1ibgZ8CH7VsXYNyKN3rbAhyOt2gCa+1m4Gz/Z9gMfBE421q7aTeb/BFwgb8K79peHr8KrzBfBx71t/3L/f4BRQLA7HlKXkT2lTHmZmCVtfYrrrOIFCuNoEREJJBUUCIiEkia4hMRkUDSCEpERAJJBSUiIoGkghIRkUBSQYmISCCpoEREJJBUUCIiEkgqKBERCSQVlIiIBJIKSkREAkkFJSIigaSCEhGRQFJBiYhIIEVcBxApG6n4SUADkPdvGWAr3gUNvVsq3e0uoEiw6GzmIgMlFf8TcN4enpXBK6tNwFLgNWCJf3sNWEEqXejPmCJBoYIS6UfnTIsOBt4LhH96ZtXHxsVDcw7wLbvximsR8JR/e4ZUuv0A31ckcDTFJ9K/xgJvB7Zmsra+D96vApjm3y70v5cnFX+JNwvrUVLpl/pgWyJOqaBE+l8XsDkaNv21fykMzPJvlwGQiq8AHgDuA/5OKt3aT9sW6TcqKJHSNB643L9lScUfxyurv2h0JcVCBSVS+qLACf7tO6TiC4HfALeSSq9xmkxkN1RQIrvROHdeDVCH928lDOSWfees1W5THbBD/Nt3ScUfxCurP5JKt7mNJfJWKigpO41z51XgTYFN7HEbDwwFBgOD/D/jeIsSenoJmDFgYftXCDjFv/3MXwb/I1Lpp93GEvGooKRkNc6dF8Zb7XYYcCgwB5gKjEFnUdlRDPgQ8CFS8UeBHwB/1jFX4pIKSkpG49x5o4GTgWPxCmk23gev7Ju3+7elpOI/Bm4klW5xnEnKkApKilbj3HmDgZOAd+AV00FuE5WcicD/Av9NKn4d8B1S6S2OM0kZUUFJUWmcO28q3gGq51prDzPGaKqu/9UBXwCuIBX/HvADLaiQgaCCksBrnDvvYOBCa+0FxpiZ279vjHGYqizVA18DriIV/xbwc1LpLseZpISpoCSQ/P1Jl1prP2SMmQ4qpAAZjreI4nOk4v8N3KTFFNIfVFASGI1z54WA06y1HwfeZYyJqJQCbRxwA/BJUvFPkUo/6TqQlBYVlDjXOHfeKOAyawsfNyY0XqVUdA4DHicVvwn4Iqn0ZteBpDRoB7M40zh33uQJ/37PDdbaFcA3jAmNd51J9psBPgq8TCr+IddhpDRoBCUDrnHuvFk2n/sqofD5WoVXcoYDt/gldQWp9HLXgaR46cNBBkzj3HnJCV+46z5r7UITjlygcipppwMLScXf7zqIFC+NoKTfNc6dN93msj8wkejpJqz/5cpIHLiVVPwM4FO6JpXsK/0GK/2mce68keM/98dbrLUvmEj0dNd5xJmLgQWk4ke5DiLFRb/OSp9rnDuvstDd8R8mUvHFUEVVles8EgiTgcdIxVPAt3XclOwNjaCkT43/7O/PtLnuZaGK6q+aUFjlJD1FgG8A95OKD3IdRoJPIyjpE+Ou/t1QCoWbw7H6s11nkcA7FWgiFX8XqfSrrsNIcGkEJQes4VO/ujwUqVimcpJ9MBWvpE51HUSCSyMo2W/jPnPreDC3R+qGHeM6ixSlQcB9pOKfI5W+1nUYCR6NoGS/jP34/10eqogtDsfqVU5yIMLAj0jFrycVj7oOI8GiEZTsk+Hnf7m2YvjEO6JDxp7hOouUlI8DY0jFL9AlPGQ7jaBkr436wHeOqWqY2RwdPFrlJP3hbGAeqXiN6yASDCoo2aNYImlGX3rtf1WOnf5IOFY/ynUeKWknAw+QisddBxH3VFCyW/FjLqoZfOJH/1Y5cnLKhCPaRyAD4W3Ag6TiQ10HEbdUULJLg0/+2PS6OWcsig5tONl1Fik7hwGPkIprxF7GVFDSq2FnXn1m7cyTH4/ER0xynUXK1gw0kiprKih5i1giaYaf+6XPxaYf/6dwdb1ORyOuTQfu0cKJ8qSCkjfEEsmK2jln/Cw29ZhrQtHKStd5RHxHA3/QcVLlRwUlAMQSyfraOWfcVj3piCtMKKz/LyRo3gncTCpuXAeRgaMPIiGWSA6vnXPmn6onHXG+MUYfABJUHwB+6DqEDBwVVJmLJZKj6g4/587Y5CNOVjdJEfgMqfhc1yFkYKigylgskWyoP+r8v1Q3znmb6ywi++CbpOJnug4h/U8FVaZiiWRj/VHn31U1buYRrrOI7KMQ8FtS8Smug0j/UkGVoVgiOaV2zjtvrRo38zDXWUT20yDgTi0/L20qqDITSyQn1kw/4RfVk47UZTKk2M0EbnIdQvqPCqqMxBLJMdVTjvppbPpxJ2hBhJSIC0nFv+A6hPQPFVSZiCWSw6rGz/5h7axTTzMmpHaSUvJtUvETXIeQvqeCKgOxRDIeHTHxW3WHnfVuEwqHXecR6WNh4Fek4nWug0jfUkGVuFgiGQtV18+tP/K8i0w4WuE6j0g/mQD8yHUI6VsqqBIWSyTDhMJXxI9578XhqlpdAE5K3aWk4ue4DiF9RwVV2s6tP/ycy6KDR491HURkgPyCVHy46xDSN1RQJSqWSB4Zm3rs1VXjZ81wnUVkAI0ArnMdQvqGCqoExRLJCRUjJn2pZsZJR7vOIuLA+aTiH3QdQg6cCqrExBLJuIlWfq7uiHefaELhiOs8Io58j1S8/kDewBiTN8Y81+PW2DfRet3WJcaYn/TX+xcrfYCVkFgiGQauqD/yvFPC1XWDXecRcWgU8FXg/x3Ae3RYa+f0UR7ZDxpBlZbTqyYednrl6KkHuw4iEgCfIRU/qC/f0BgTNsZcY4yZb4xZZIy5wv/+icaYR4wxdxhjXjXGfMcY80FjzFPGmOeNMZP9573LGNNkjFlgjPm7MWZkL9sYboz5o7+N+caYsr3agAqqRMQSyYnhmsEX184+TfudRDxR4NoDeH11j+m9O/3vXQakrbVHAkcClxtjJvqPHQL8GzALuBiYaq09CrgBuMp/zqPA0dbaQ4HbgS/2st0fAT/wt/Ee//VlSVN8JSCWSFYDV9YffeExoUhFzHUekQA5lVT8PFLpO/f81J30NsV3GjDbGHOB/3UcSADdwHxr7VoAY8xrwF/95zwPnOTfbwB+Z4wZDVQAS3vZ7inAwT3Ol1lvjKmz1rbux89Q1DSCKnKxRNIAF9UcfNLbooNGTXCdRySA/pdUvLqP3ssAV1lr5/i3idba7UXU1eN5hR5fF3hzMPBj4CfW2lnAFUBVL9sIAcf02MbYciwnUEGVgkPCtUPOjk09+nDXQUQCqpE3p9gO1APAlcaYKIAxZqoxZl+uSRUHVvv3P7KL5/wV+PT2L4wxZbtQQwVVxGKJZD1wef2R58024Wil6zwiAfbFPjqZ7A3AS8CzxpgXgOvZt10lKeD3xph/AZt28ZzPAEf4izBeAj5xAHmLmvZBFbcLqxoPnRwdMnaq6yAiATcUuBr4+t6+wFpb28v3CsB/+LeeHvZv2593Yo/7bzxmrb0LuKuX970ZuNm/vwl4797mLGUaQRWpWCI5nXD0xNqZJx/lOotIkfg8qbhOmlxEVFBFKJZIVgKX1h165pRQZUwH5IrsnTh9ty9KBoAKqjidHK4dOr5q3MwjXAcRKTJXk4rvNHUnwaSCKjKxRHI4cH7doWdO1bn2RPbZUOBK1yFk76igis/5kSENddHhEw5xHUSkSH2aVFyffUVAf0lFJJZITgCOqZvzzpnGhPR3J7J/xgNnuw4he6YPuSLhnzHigopRiZrIoNE6GazIgfmk6wCyZyqo4jENmF0769TDepyjS0T2z2mk4lNch5DdU0EVgVgiGQLeW9kwoyZSP2yS6zwiJcCgxRKBp4IqDrOBSbFpb5vpOohICbm0D08iK/1ABRVw/ujpwujQcYVIfKROaSTSdwYD73MdQnZNBRV8BwFjaw4+cZbRzieRvvYB1wFk11RQAeav3Ds7VDMoFx02Xsc9ifS9k0jFh7kOIb1TQQXbOODg2pmnTNFZI0T6RRjvsuoSQCqoYDuNcCRbOWrKka6DiJSwi1wHkN7pt/KAiiWSQ4FjY4ljak2kIuY6j5SXzpzl+Jva6cpDrgAXTI/w3ydVccmfO3hkeY54pbc79OZzq5kzKvyW1z63Ls+V8zpp6bKEDXz5uEreOzMKwAf/lOH59QXOnhrhWyd7Vzv/+iNdzB4Z4t0HRQf2h3zTCaTiI0ml17sKIL1TQQXXcYCtaphRtpd7Fncqw/DgR2qorTBk85a339TOGYkcANecWsUFB++6TGJR+PW5VSSGhlnTWuDw/2vn9CkRVqQLACy6spbjbmon3WnJZC1Prcnznyc4vSD09mm+n7kMITvTFF8AxRLJCHByuH54Jlw/XEe7y4AzxlBb4Y2SsgXI5r0jW/fG1KFhEkO9UdWYuhAjagwb2wtEQ9CRhYK1dOct4RB89aEuvnai03La7kLXAWRnKqhgOgiojU099iAtLRdX8gXLnOvaGHFNK6dOipBs8CZcvvxgF7N/3sZn7++kK2d3+x5Prc7TnYfJQ0JMHx5mfDzEYde3c9HBUZZsKWCBQ0eHd/seA+RtpOI1rkPIW2mKL5iOBzorR07R9J44Ew4ZnvtELds6Lef9LsMLG/J8++RKRtUauvPw8Xs6+e5j3Xx1F9Nza1sLXHxnB786t4qQ/3vWD99Z9cbj77otw/VnV/HNf3axcH2eUydFuPzwigH52XoRxft3d5+rALIzjaACJpZIxoHDK8fNrAhV1ej4DHFuUJXhxAkR7l+SY3RdCGMMlRHDpXOiPLU63+trWrosZ92a4RsnVXJ0w86/B9/1SpYjRodp77a8sDHPHRfGuGVRlkx29yOyfnayy43LzlRQwXMoYKrGzZruOoiUr43tBbZ1emXRkbX8fWmOg4aFWNvqLXSw1vLnV3LMHLHzR0h33htxffiQKBfO2HkxRTZv+VFTN194WwWZ7Jv7tgoWunvvu4GiggoYTfEFiH/miFOBbdEhY6e5ziPla22b5SN/zpAveMVx0YwoZ0+N8o5ftbMxY7EW5owKc93Z3pTd02vyXPd0NzecU80dL2b55/I8mzOWm5/LAm9djv7T+d185JAosahh9sgQFpj18zbOnBJhUJXTXa6HkIoPI5Xe5DKEvEkFFSwjgdEVIyd3hCpjQ1yHkfI1e2SYBVfU7vT9Bz/S+zqCI8aEueEc78TgH5pdwYdm73pf0tVHv7nPyhjDbe8JzGF+BjgJ+L3rIOLRFF+wTAeoGj9LoycRNzTNFyAqqGA5FmiJDh1/kOsgImXqaNcB5E0qqIDwV+9NDtePyIdi8bGu84iUqYNJxZ2tdZe3UkEFxzSA6gmHTNGxuSLORIEZrkOIRwUVHEmgIzK0YYLrICJlTgfIB4QKKgBiiWQFMBvYEqkbpoIScetQ1wHEo4IKhgYgFBk0qiZUUT3IdRiRMqcRVECooIJhIhCqHDN9vOsgIsIhpOLaERwAKqhgOARojWr/k0gQ1OPNaohjKijHYolkGG8FX0u4frgKSiQY9G8xAFRQ7o0BIqai2oQqa4a7DiMigAoqEFRQ7k0AQhUjJg3X8U8igaH9wQGggnLvIKAjOnjMSNdBROQNKqgAUEG5NwloD9cPG+E6iIi8QVN8AaCCciiWSEaBUUAmXDNYBSUSHBpBBYAKyq3hQAGwoao6FZRIcIxzHUBUUK6NAELhmsHVoWjlzleHExFX6knF9fnomP4C3BoD2Mjg0YNdBxGRneiXRsdUUG5NBjLhmiH1roOIyE5UUI6poNwaDXSEY/UqKJHgqXMdoNypoByJJZIGGAp0harqVFAiwaMRlGMqKHeq8K7emQ9V1qigRIJHIyjHVFDu1AMWwFTGVFAiwaMRlGMqKHfeKKhQtFK/qYkET9R1gHKngnKnHjAAJhytcpxFBkBLl211nUH2SdZ1gHKngnKnnu3//UORSrdRZCCkHu6677EVuUcK1lrXWWSvqKAcU0G5Uw/kTaQibEKhsOsw0m8KeFNFoYLFfvex7oevfzp7S0fWtrsOJnvU7TpAuVNBuVML5ExFrMJ1EOlXS4C/AY1ANcB9S3JLv/C3zutWtxSWOcwle6YRlGMqKHdqgHwoWhVxHUT6z92Ls93Ab4AfA4PxThDMirRt+9S9nb/WlF+gqaAcU0G5EwNyJlqplUIl7u7FWXv34ux84L+ALXiXctCUX/CpoBxTQblTARRMOKL9T2Xi7sXZtcA3gIfQlF8x6HIdoNypoNypAAq2UCi4DiL75IB+obh7cbYLTfkVi62uA5Q7FZQ7FUCBQk4FVVymNc6d9+vGufNq9vcNNOVXNDa5DlDuVFDuWMDYQl4FVXwuBp5unDtv5oG8iab8Aq2VVFrLzB1TQbmTA4zN5/Kug8h+OQh4qnHuvMsO5E005RdYG1wHEBWUSznAaIqvqFUDN2jKryStcR1AVFAu5QFj81mNoIqfpvxKjwoqAFRQ7ngFle3KuQ4ifUJTfqVFBRUAKih3ckDI5rrzNp/TztjSoCm/0rHUdQBRQbmUxf/vb3Pd+rApLZryK34vuw4gKiiX0kAEwOa6M46zSN/TlF9xU0EFgArKnS14B+tic10aQZUmTfkVpxZS6dWuQ4gKyqWW7XcK2S6NoEqbpvyKi0ZPAaGCcieDdzYJbHeHfvstfZryKx4qqIBQQbnTjl9Qhc62VsdZZGBoyq84qKACQgXlzhsfILnWTZtdBpEBpym/YHvBdQDxqKDcaQMMQG7rWhVU+dGUXzBZ4EnXIcRj9P+uG7FE0gDXA+sxocLw8/7jK8aE9AtDeboFuHLZd846oGm5c6ZFRwOfBMYCq4ACwBlTIhMvmRN9T3XU7Pe0Yhl5iVR6husQ4tEHoiOZ5iYLrAOqsQVruzp0cbTypSm/4HjMdQB5kwrKrZX4HyKFrjZN85U3TfkFw6OuA8ibVFBurcAvqHymRQUlWuXnnkZQAaKCcmsj/lLzXMuG9Y6zSHBoys+NdaTSr7kOIW9SQbm1Gb+gute/vspxFgkWTfkNPE3vBYwKyq2NeH8HJrtx6Wabz3a6DiSBoim/gXWv6wDyVioohzLNTRlgA9v3Q7WndZE06Y2m/PqZtbYA3OM6h7yVCsq9l4F6gFzrRp1BWXZFU379yBjzBKn0Rtc55K1UUO4txr/sRm7LahWU7I6m/PrPXa4DyM5UUO6txl8o0bV2cSAWShQ629h457dY/YtPsPoXn6Br9Zvnzkw3/Ynl3z2bfCbd62u3PvRL1tzwSVb/4hNs+fv1WGuxuSzr7/gqa278JK3PznvjuZvv/zHd67Voaj9oyq/v3e06gOxMBeXeOryCCuVbN7fnO1o3uA605R//R9Wkwxl7+XWM+eiPiQ4dB0CuZSOdyxYQrh/e6+s6V71M1+qXGf3RHzPmsp/StfZVulY+T8fSZ6kYNYXRH/0JrQvvB6B7w+tgLRUjJw/Yz1ViNOXXR6y1i0mlF7vOITtTQTmWaW7KAkuBOoDctrVLXOYpdGXoXPkitbNPA8CEo4SqagHY+o9fMPikS/HPcbsTY8DmurH5HDafhUKecGwwJhTGZrugkH/judv+9Rvib/9gv/88Ja6/pvwmUEZTfsYYTe8FlAoqGBbgL5ToXrfEaUHltq0jHKtn870/ZM1Nn2HzfddS6O4k09xEuG4oFSMm7fK1lWOnUzV+Nqt++mFW/eTDVE08jOiwcVRNPJR8+zbW/vrzxJPvIdPcRMXIKUTqhg7gT1bS+nrK70F6n/JbeqBBA+q3rgNI71RQwfDG9ELnikUrbCGXdRXEFvJ0r3uNukPPZMyl12KilaQfu5X0E79j0HEf2u1rs1vXkN28koZP3kzDp35F5/KFdK58ARMKM/ycLzDm0muJTXs7LU/fRf1R57HlH79g453fItPcNEA/XUkbiCm/W0ptys9a+wyp9CLXOaR3KqhgWA5kgYjNdefzrVuWuQoSqRtGuG4YlWOmARCb9ja61y8hl17Pml9exaqff5R86ybW3nw1+ba3noA98+oTVIyZRqiimlBFNdWTjqBrzStveU7rgnnUzjyZrtWvYMJRhr3730k/cfuA/XwlTlN++8gYc6PrDLJrKqgAyDQ35YBFeL+xkt280tk0X7h2MJH6YWQ3ewsKO5cvpGLkFMZd9VsarvwlDVf+knDdMEZf8kPCtYPf8tpI/XC6Vr6ALeSx+RxdK59/Y4EFQL6zjY4l86mZ+Q5srsvbaWUM1t2AsVRpym8vWGs7gVtd55BdU0EFxzNADKBj+cJXXQYZcson2HTP91jzy0/TvWEp9cdctMvndq1tZvN91wLeaCsyaDRrbvwUa2+6iujwicSmJN94bvqx24gf+16MMVRPPIzudUtYe+OnqT3k9H7/mcqQpvz27E+k0r0fLyGBoCvqBkQskRwKXIN3CQ6GvvMzl4VrBjW4TSUloq+v2NuAdy2zYr9i78mk0g+6DiG7phFUcGwB1gO1AN3rX3vBbRwpIZry20HB2mV4ByhLgKmgAsK/BPxDwBCAzJKmF6yGt9J3BmTK79EimfILGfNDUunA5yx3KqhgWYh/FGy+dVN7vm1z0fxGKkWh31f5/c9j3Q9fF/BVfvmCTQM3uM4he6aCCpBMc9N6vCXncYDutc3Pu00kJapfp/zuD/6U37Wk0oEtUHmTCip4HsIvqMySJ1+2hXzOcR4pTWU55VewtjMcMj9ynUP2jgoqeLYf1W4KHa1d2S2rX3SaRkpZ2U35FSw3kkpvdp1D9o4KKmAyzU1bgVfwD9rtWNKk8wBJfyuLKT9rbT4SMte4zCD7RgUVTP/AX27etfrltfn2bbqQofS3kp/yy1t+Ryq93MW2Zf/oQN0AiiWSFcD3gXags2bGO2bVHPT28x3HkvLRrwf2vnNKZOKlA3xgb8HabMiYhAqquGgEFUCZ5qZu4H5gBEDmlX+9VMh2BWIOX8pCyU35deb4ucqp+KiggusJ/8+QzWfz3Rtef8ZpGik3JTPll83b1ljU/Fd/bkP6h6b4AiyWSF4BHAqsC9cPrx1y8sf/zYTCEde5pOwU9ZRfe7f9Ys23WrQ4oghpBBVs/wCqAPItG9uyG5c96ziPlKeinfLrzNnVNRXmh339vjIwVFDB9hremSUGA7S98I/HbKGQdxtJylRRTvlZy/8jldYFx4qUpvgCLpZIzgE+CywFGHTcxWdVjJh4hNtUUuaKYsqvrds+VfutluSenylBpRHUPjLGWGPMLT2+jhhjNhpj7tnD607c03N24XlgNf7pj9oW/e2fOv2ROBb4Kb9cwWbDhvcfSD5xTwW179qBmcaYav/rU/EKpF9kmpvywB/wL8ORS69r7d6wVCv6xLVAT/ltaLfXVH+z5fUDySbuqaD2z33AWf799wO3bX/AGHOUMeZxY8wC/89pO77YGFNjjPmlMWa+/7x372F7C/FKcBBA26IH/mXzua6++VFE9lsgz+W3rdO+NqYu9J/7m0eCQwW1f24H3meMqQJmAz3Pl/cKcLzDIgmkAAANlklEQVS19lDgq8C3enn9l4EHrbVHAicB1xiz6/l2fxR1B35B5Vs3t3eufOGRPvlJRA5cYKb88gVbaO2y7yOVLhxIFgkGFdR+sNYuwvsH9H7g3h0ejgO/N8a8APwAmNHLW5wGzDXGPAc8jLeUfPweNrsIWAYMBWh97t6mQme7zsosQRGIKb/17fb6cT9offpAMkhwqKD2393A9+gxvef7OvCQtXYm8C7845h2YID3WGvn+Lfx1tqXd7exTHNTAe8fbj0QIp8rtC9+9P4D/ilE+o7TKb90p11l4Or9Ti+Bo4Laf78Evmat3fGqt3HeXDRxyS5e+wBwlTHGABhjDt2bDWaam5YAjwKjATqWNC3JpTc072Nukf424FN+2bzNrWktnDv6+63dB7JNCRYV1H6y1q6y1vZ2Zc7/Ab5tjHkMCO/i5V8HosAifyrw6/uw6T/5f1YAtD533/06eFcCaECn/F7ZVPj29J+2aXVridGBukUolkieCVyId5YJ6pMXnFTVcPDxblOJ7FJ/Htg77vgJ4RX/XJ7/2t2Ls/owKzEaQRWnf+DNzdcDtDz950fyHS3r3UYS2aX+mvIbA2z+5/L8NSqn0qSCKkKZ5qYu4NfAMMCQzxVan7vvz9YWtLRWgqo/pvzSwM/uXpzN9EE+CSBN8RWpWCJpgMuBo4BVAPXJ95xQ1TDjRJe5RPZCn0z5SenTCKpIZZqbLN4Bwx1ALUDL/D//K9/Rss5pMJE965MpPyl9KqgilmluagFuwLs0vKGQL7Q+O+9OreqTItAnU35S2lRQxW8R8E9gLED3uuYNncue/avbSCJ7pU8O7JXSpYIqcv5U3++ADFAH0Lrg3qeyW1a/4DSYyN7bPuVX5zqIBIsKqgRkmptagevxVvVFALY9fvtfCp1tm5wGE9l7Dy37zlmtrkNIsKigSkSmuelFvLNMjAOwXe3dLU/fdYct5HS5awk0m8suQufQk16ooErLPXj7pMYAdK9/bWPm1Sf+4jaSyK4Vsp0dHcsWfGzZd87SOfRkJyqoEuJfN+oGvP1RgwDaX3zo+a51S550GkykF7aQz3cuX/jpDX/47/mus0gwqaBKTKa5KY13lH0c/4Sy6cdv+2t229pXnAYT6cFaS8fSBT9rW/jATa6zSHCpoEpQprnpNbzTwTQAIay12/55yx/z7dtWOY4mAkDX6pfva3vu3s/7q1BFeqWCKl0P4l13agKAzXbmtj3629sKXZmtbmNJueveuPz5lqY/XJRpbtICHtktFVSJ6nF81DP4K/vybZsz6Sd//xub6+5wGk7KVi69YVXbwvvfmWluanOdRYJPBVXCMs1NOeAXwApgFEB20/ItrQvm3WrzOa2akgGVa9m4ofW5+85oefruNa6zSHFQQZW4THNTB3At0I53IC+dK55f1frcfbfqGCkZKLnWzZtanrn7vekn7tAZTmSvqaDKQKa5aSvwfby/7zhA57IFy1sX3PdbW8irpKRf5du2bGl56o+XtzT96WHXWaS4qKDKRKa5aQ3wPbwTdL5ZUs/df6tKSvpLvn3btvT8Oz+Z27buLtdZpPiooMpIprnpdeB/gBjbS2rpM8vaFt5/my3kc07DScnJZ9LbWub/+arcltV3aDm57A9dUbcMxRLJycAX8fZLtQBUTTy8se6Q099nwpFKp+GkJORaNm5IN/3hc/mWjbeqnGR/qaDKVCyRnIJXUm34JVUxetrI+iPf/cFQtEqXPZD9lt28cuW2J+74ku1qVznJAVFBlTG/pL4AdAJbASKDx8Tjx77vg+Gq2uFOw0lR6lrb3Jx+8vdfopC7M9PcVHCdR4qbCqrMxRLJRuBzeNeR2gAQisWrBh138fsjtUPGu8wmxaVj2XOLWp+5+7PAQxo5SV9QQQmxRHIEXkkNAdYAmEhFeNDxHz4/OnjMwU7DSeDZQj6feeXRJ9tffuTqTHPT067zSOlQQQkAsUSyHvg0MAVYCViA+qPOP76yYcaJxhjjMp8EU6G7o63l6bv+1r321S9nmptedp1HSosKSt4QSySrgI8BR+KdHikPUD35qMm1M9/xHhOpqHaZT4Il17JxbfqJ392Tb9vyzUxz03LXeaT0qKDkLWKJZAS4ADgTWAt0gL944ugLLwrH4mNc5pNg6Frzyivpp+68lXz2p5nmpi2u80hpUkHJTmKJpAGOAD4OdAGbwNsvFT/2fWdWDG88zGU+ccfmc93tL/9zfmbxo9cDv8s0N+mkw9JvVFCyS7FEcixwFTAcWIW/X6rm4JNmxqYefZYJR6tc5pOBlWvdvKal6Y+P59LrrgUe1Uo96W8qKNmtWCJZA3wEOBpv8UQWIDJodH39UeefG6kbOtFlPul/1hYKnUsXPNP63L2PY+21/imzRPqdCkr2KJZIhoBTgfcBrcAb+xzqDj3rqKrGOaeYUDjqKp/0n3xH6+aWp+96Irvh9QeAX2eam1pcZ5LyoYKSveYf1HsFMBJYjb/KLzp0/OC6I855d6R2yASH8aQPWVsodK1++fnWZ/7yjM113wg8oSk9GWgqKNkn/lL084B34p0eadv2x2pnnTqnatLhp4QiFTWu8smBy7VuXtH6zF+ezW5e8RRwY6a5aYPrTFKeVFCyX2KJ5DTgcryzT7wxmgpV11XWHX7OSRUjJh5pTEiXcykihWxXe+bVx5/MvPKvFcDvgb9lmpt0GRZxRgUl+y2WSFYD7wZOwzteauP2xypGTRlRO/v0MyJ1QxsdxZO9ZK213etfe67l6btesV3tC4Df+he4FHFKBSUHLJZIjgM+CEzHK6m27Y/VTD9hRvXkI98RqowNcZVPemetJbdt7cttCx94Kbt55RrgFuAZnYVcgkIFJX3CX+l3GHAxUId30llveigUDtXOeMchVY1zjg9VVA9yl1K2y7VsfK3t+b8v6F7X3AY8APwl09zU7jqXSE8qKOlTsUQyhreA4my8/VJrAe838nAkVDvzlEOrxs8+PlRRVe8uZfnKt21d2fbSw/O7Vj7fBryIdzYInUdPAkkFJf0ilkiOBM4CjgO6gfX4RWUiFeHaWaccXtkw4xiNqAZGrmXja5nmJxd2LlvQCrwO3AEs1tJxCTIVlPSrWCI5Gm809Ta88/qtwz9lEiZkYlOPnVY14ZCkFlP0PVso5HNbV7/Y/sq/FnavW1LAm3a9HXhB+5mkGKigZED45/U7BzgKb9/UOvyl6QAVo6eOjCWOSUaHNswyoXDEUcySUMh2tXWvX/J0+4sPLcm3bYniXSn598Czmeam/B5eLhIYKigZULFEsgF4B3A8EMJb9dex/fFwzeDq2EHHzakYOWl2uLp+lKOYRccWCvlcet3izpUvLOx4bX4rhXwF3lTe3XgjJhWTFB0VlDjhX8H3GLzrTtUDLXhnpnhDxcgpw6snHT47Omz8rFBFddxBzMDLt29d1bW2eWHm1ceXFDpa6vxvPwX8HXhd+5ikmKmgxKlYIhkFZuLtp5qEt5BiEz1GVQBVjYdOqBo3c1Zk8OipoWhV3c7vVB6stbaQ2bY6u3nl4o6lC17NbloeBqJ4Bf8P4PFMc9NmtylF+oYKSgLBv0jiaLxjqU4G4nj7qjbiX+Jju4ox00ZVjT04ER3SkAjVDGowxpgBDzyAbD7XnWvZ+Fr3hqWLO5c9uyTftqUS71izLPAE8DiwRNN4UmpUUBI4/kG/E4Ek3jL1Sryy2gJ09nxuKBavqm6cMzk6rHFSuG7ouFBlzfBi7yubz3XnM9tW59IbVmQ3LlvRsXzhKvLZOFDtP+VVvNHSC5nmpo5dv5NIcVNBSaDFEskKIAHMxius7Qf4tgJpth8E7AtV11VWjjlobHTo+HGR+uEN4ZrBDSYS3Cv/Wmux2c5t+fatq3Nb167s3vD6iq41i9dhC1V4J+IN4ZXzQmA+8GqmuSntMrPIQFFBSdHoMQ04Da+sEj0ebsMrrZ3Ovh0ZNLo+OrRhWKR++LBwzZBhoVj9sFBV7bCB3JdlbaFguzvThc7Wjfn2bRtzrZs25rau2dC9cdkm292RA2rwpjVDgMFbMNIELMJb7NA9UFlFgkIFJUXLvxz9eGAC3kKLBBDB+4DP4pVWhh7HW/VkKmsqIvGR9ZHawXWh6nhdqKq2NlRRHTPRqpiJVlabUDiKCYVNKBTBhMKEQmFjQhFMKEQhn7OFQpZCLmsL+awt5HMU8lmb6+4qdGdaCx1trfmOltZCZltbrnVTa751UzveP7YQ3lRdDVCFd9CyAVYBzwPNwApgq1bgSblTQUnJiCWSYbyr/TYAU/FWBY7FK63t5VDAK60u/9Yf1zuKABV4+862/9nzH9paYDmwFFgJrMw0N2X6IYdIUVNBSUnzpwXrgWH+bQzeiGsYMBiI4ZXW9n8IZoc/wSs2y5ujHXjrvq+erzV4Czm2AJvxlsyvwTsX4QZgiy4CKLJ3VFBS1vxFGDG8KbcY3vRbGG8UFO5xf/vXXXjThzn/z+23Lrx9YK3aXyTSN1RQIiISSCHXAURERHqjghIRkUBSQYmISCCpoEREJJBUUCIiEkgqKBERCSQVlIiIBJIKSkREAkkFJSIigaSCEhGRQFJBiYhIIKmgREQkkFRQIiISSCooEREJJBWUiIgEkgpKREQCSQUlIiKBpIISEZFAUkGJiEgg/X9EL7Y+SHLgSAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#绘制一个展示男女乘客比例的扇形图\n", + "Male = (titanic.Sex == 'male').sum()\n", + "Female = (titanic.Sex == 'female').sum()\n", + "# female = titanic.query('Sex==\"female\"')\n", + "proportions= [Male,Female]\n", + "plt.pie(proportions,labels=['Male','Female'],shadow=True,\n", + " autopct='%1.1f%%',startangle=90,explode=(0.15,0))\n", + "plt.axis('equal')\n", + "plt.title('Sex Proportion')\n", + "plt.tight_layout()\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(-5, 85)" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAaMAAAFtCAYAAACqdwUwAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzs3Xt8XHWd+P/X+5yZSSbJtEnbpPQGpQJW0eVilYrY7Q9hv6gVEeW74iriohTXRVaXVVZdVlF31cVVZBXaLyq4q4BcFKhXlK1lxeoiWBWpUMulpSWXNve5z3n//jhnkpk0SSdpJmeSvJ+PRx+TnDmZ+cw0Oe/5fD7vz/sjqooxxhgTJifsBhhjjDEWjIwxxoTOgpExxpjQWTAyxhgTOgtGxhhjQmfByBhjTOgsGBljjAmdBSNTM0TkaRFJichAyb+lYbdrNCJyloioiHww7LYYMxtYMDK15g2q2lTyb99EH0BE3Go0bIR3AgeDW2PMEbJgZGqeiDgicqeIPC8iPSKyVUReVHL/f4nIl0XkhyIyCLxaROpF5N9FZI+ItIvIV0SkfozH/38iclvJ958XkR+JiIxxfhNwPvBe4MUicvKI+98lIs+KSJeIfERE9orI+pLX8hER+VNw/20i0nLEb5IxM5wFIzNTbAGOB44Cfg/854j73wZ8AkgAvwCuBY4F/iz4uZXAR8d47A8Aa0Tk7UHQuAh4l45dK+sCoBu4E/hJcD4AIvJS4EvAW4FlQGvQ5qIPAq8H1gHLgcHgfGPmNLHadKZWiMjTwCIgHxzaqqrnjXLeIqATaFLVQRH5LyCrqn8d3O8ASeCFqvpMcOzVwNdU9fgxnvt04D784HClqn57nHZuBR5W1StF5B34gW+ZquZF5BrgWFV9R3BuI9ALnKWqW0XkSeDdqvqz4P4VwC4grqpexW+WMbNMJOwGGDPCear6k9IDwRzQvwJvwQ9WxYv2IvzgAbCn5EeOAuqAHSUjbaMOuZX4BfAs0Izf4xmViKzE79V8IDj0HeBG4Bz83tvS0rYEwbK75CGOBu4TkdLAo0Ab8Pxh2mjMrGXDdGYmuAh4HXAmMB84LjheGmBKu/jtQBa/Z9Qc/JuvqvPHeY73B4/XBfz9YdoiwA9E5Hn8Xk2M4aG6/fjDb34D/Z5R6ZzQXuDsknY1q2q9qlogMnOaBSMzEySADHAAaAA+Pd7JqloAbgK+KCKt4lsuIn8x2vlBMsTHgXcAbwc+Esz9jOYi4Grg5JJ/fwmcGyQi3AGcJyJrRSQGXDPi528E/kVEjg6eu01Ezh331RszB1gwMjPB14F9wb/HgIcq+Jm/B54BfoU/Z/Nj/ESGMiISBf4L+LSq/k5V/4gfbP4zCCal556BPwz3ZVV9vvgPf6juaeAvVfW3+EN4dwTtPRD8ywQP8+/AD4Gfikh/8FpeXuH7YMysZQkMxlSRiMwDeoBjVHXP4c43Zq6ynpExU0xEzhWRhmA90ueBRywQGTM+C0bGTL034Q/R7cVf33RhqK0xZgawYTpjjDGhs56RMcaY0FkwMsYYE7oZXYHhnHPO0R/+8IdhN8MYY0Y6XMUPM8KM7hl1dXWF3QRjjDFTYEYHI2OMMbODBSNjjDGhs2BkjDEmdBaMjDHGhM6CkTHGmNBZMDLGGBM6C0bGGGNCZ8HIGGNM6CwYGWOMCZ0FI2OMMaGzYGSMMSZ0FoyMMcaEbkZX7TZmxwN34G6/ngW5/RyMLmHXcX/N7T2r2dOdZEVLAxvXrWL96rawm2mMOQzrGZkZa8cDd7DowY/SlOtiUBI0Zrs45bFPs7h9G83xKB39aa6+9zG27uwIu6nGmMOwYGRmLHf79eSIkHPiIMKg1pHTCBfmv4uI0BCLEHWFTdt2h91UY8xhWDAyM9aC3H5yUj/0vaqSlhhLGe4JxaMue7uTYTTPGDMBFozMjHUwuoSopoe+FxHqNcs+hueIUrkCy1sawmieMWYCLBiZGauw9nKi5Il6KVClUTJEJc+tkfNQVZLZPLmCsnHdqrCbaow5jKpm04nI00A/UADyqrpGRBYAtwMrgaeB/6uq3SIiwHXA64AkcLGqPlLN9pmZ7aQzL2AHDGfTxfxsuvae1fR2J1lu2XTGzBiiqtV7cD8YrVHVrpJjnwMOqupnROQqoEVVPywirwMuxw9GpwHXqepp4z3+mjVr9OGHH65a+40xZpIk7AbMNGEM070RuCX4+hbgvJLj31DfdqBZRJaE0D5jjDHTrNrBSIEfi8ivReTS4NhiVd0PENwWx1CWAXtKfnZvcMwYY8wsV+0KDK9S1X0i0gbcLyI7xzl3tG7tIWOIQVC7FODoo4+emlYaY4wJVVV7Rqq6L7jtAL4DvAJoLw6/BbfFRSF7gRUlP74c2DfKY25W1TWquqa1tbWazTfGGDNNqhaMRKRRRBLFr4G/AH4P3Au8MzjtncA9wdf3AheJby3QWxzOM8YYM7tVc5huMfAdP2ObCPAtVf2hiPwv8G0RuQR4FrggOP/7+Jl0u/BTu99VxbYZY4ypIVULRqq6GzhplOMHgNeMclyB91WrPcYYY2qXVWAwxhgTOgtGxhhjQmfByBhjTOgsGBljjAmdBSNjjDGhs2BkjDEmdBaMjDHGhM6CkTHGmNBZMDLGGBM6C0bGGGNCZ8HIGGNM6CwYGWOMCZ0FI2OMMaGzYGSMMSZ0FoyMMcaEzoKRMcaY0FkwMsYYEzoLRsYYY0JnwcgYY0zoLBgZY4wJnQUjY4wxobNgZIwxJnQWjIwxxoTOgpExxpjQWTAyxhgTOgtGxhhjQmfByBhjTOgsGBljjAmdBSNjjDGhs2BkjDEmdBaMjDHGhM6CkTHGmNBZMDLGGBM6C0bGGGNCZ8HIGGNM6CwYGWOMCZ0FI2OMMaGzYGSMMSZ0FoyMMcaEzoKRMcaY0FkwMsYYEzoLRsYYY0JnwcgYY0zoLBgZY4wJnQUjY4wxobNgZIwxJnQWjIwxxoSu6sFIRFwReVREtgTfHysivxSRJ0XkdhGJBcfrgu93BfevrHbbjDHG1Ibp6BldATxe8v1ngS+o6vFAN3BJcPwSoFtVjwO+EJxnjDFmDqhqMBKR5cDrgZuC7wU4E7gzOOUW4Lzg6zcG3xPc/5rgfGOMMbNctXtGXwQ+BHjB9wuBHlXNB9/vBZYFXy8D9gAE9/cG55cRkUtF5GERebizs7OabTfGGDNNqhaMRGQD0KGqvy49PMqpWsF9wwdUN6vqGlVd09raOgUtNcYYE7ZIFR/7VcC5IvI6oB6Yh99TahaRSND7WQ7sC87fC6wA9opIBJgPHKxi+4wxxtSIqvWMVPUfVXW5qq4E3go8oKp/Bfw38JbgtHcC9wRf3xt8T3D/A6p6SM/IGGPM7BPGOqMPAx8UkV34c0JfDY5/FVgYHP8gcFUIbTPGGBMCmcmdjzVr1ujDDz8cdjOMMWYkywSeIKvAYIwxJnQWjIwxxoTOgpExxpjQWTAyxhgTOgtGxhhjQmfByBhjTOgsGBljjAmdBSNjjDGhs2BkjDEmdBaMjDHGhM6CkTHGmNBZMDLGGBM6C0bGGGNCZ8HIGGNM6CwYGWOMCZ0FI2OMMaGzYGSMMSZ0FoyMMcaEzoKRMcaY0FkwMsYYEzoLRsYYY0JnwcgYY0zoLBgZY4wJnQUjY4wxobNgZIwxJnQWjIwxxoTOgpExxpjQWTAyxhgTOgtGxhhjQmfByBhjTOgsGBljjAmdBSNjjDGhs2BkjDEmdBaMjDHGhM6CkTHGmNBZMDLGGBM6C0bGGGNCZ8HIGGNM6CwYGWOMCZ0FI2OMMaGzYGSMMSZ0FoyMMcaEzoKRMcaY0FkwMsYYEzoLRsYYY0JnwcgYY0zoqhaMRKReRH4lIjtE5DER+URw/FgR+aWIPCkit4tILDheF3y/K7h/ZbXaZowxprZUs2eUAc5U1ZOAk4FzRGQt8FngC6p6PNANXBKcfwnQrarHAV8IzjPGGDMHVC0YqW8g+DYa/FPgTODO4PgtwHnB128Mvie4/zUiItVqnzHGmNpR1TkjEXFF5DdAB3A/8CegR1XzwSl7gWXB18uAPQDB/b3Awmq2zxhjTG2oajBS1YKqngwsB14BvGi004Lb0XpBOvKAiFwqIg+LyMOdnZ1T11hjjDGhmZZsOlXtAbYCa4FmEYkEdy0H9gVf7wVWAAT3zwcOjvJYm1V1jaquaW1trXbTjTHGTINqZtO1ikhz8HUcOAt4HPhv4C3Bae8E7gm+vjf4nuD+B1T1kJ6RMcaY2Sdy+FMmbQlwi4i4+EHv26q6RUT+ANwmIp8CHgW+Gpz/VeA/RWQXfo/orVVsmzHGmBpStWCkqr8FThnl+G78+aORx9PABdVqjzHGmNplFRiMMWYWEJGPBgUGfisivxGR08Ju00RUc5jOGGPMNBCRVwIbgFNVNSMii4BYyM2aEOsZGWPMzLcE6FLVDICqdqnqPhF5mYj8TER+LSI/EpElIhIRkf8VkfUAIvKvIvLpMBsPFQYj8b1dRK4Ovj9aRA6Z9zHGGBOKHwMrROQJEfmKiPy5iESB64G3qOrLgK8Bnw6KClwM3CAiZwPnAJ8Iq+FFlQ7TfQXw8Ev5XAP0A3cBL69Su4wxxlRIVQdE5GXAq4H/D7gd+BTwEuD+oLKaC+wPzn9MRP4TuA94papmQ2l4iUqD0WmqeqqIPAqgqt3FatvGGGPCp6oF/OICW0Xkd8D7gMdU9ZVj/MhLgR5g8fS0cHyVzhnlgvVCCv6CVvyekjHGmJCJyAtF5PiSQyfjFxloDZIbEJGoiJwYfH0+fu3PdcCXigUKwlRpz+hLwHeAtmCi6y3Ax6rWKmOMMRPRBFwfBJU8sAu4FNiMH2zm41/vvygi7cBngNeo6h4R+Q/gOoYr4IRCKq24IyKrgdfgFzT9qao+Xs2GVWLNmjX68MMPh90MY4wZyba/maDD9oxExAF+q6ovAXZWv0nGGGPmmsPOGamqB+wQkaOnoT3GGGPmoErnjJYAj4nIr4DB4kFVPbcqrTLGGDOnVBqMQl8QZabG1p0dbNq2mz3dSVa0NLBx3SrWr24b/4eeuB8eug56noFYAkQg0wfNx8DpV8AJZ09P401NmdTvkjFjqDiBoRZZAkMFSgJJd2wpn+45m0fr1hCPuqRyBXIF5ZpzT2S9s2M44JQGmSfuhx9cCU4MCjno2+M/7vwV4ETBy8Jrr7WANMds3dnB1fc+RtSVQ3+XLCCBJTBMWKXlgNYGtYwGRCQrIgUR6at248wRKgaS/naob2HwwHN8MLeZM/Q3iAgNsQhRV9j+49vLzqO/3f++GMicGMQaINkJ4vr/Bjv9Y07MP8fMKZu27Sbq+r9Dpb9Lm7btDrtpZoaqdNHrfwAXAk8CceDdwTFTy0oDiQgDXoy8RDk/fdfQKfGoy9k9t5WdVxZkep6BaNw/uZD17xfH/xr8+3qeDeHFmTDt6U4Sj7plx+JRl73dyZBaZKpBRNaLyJbpeK6Kq3ar6i7AVdWCqn4dWF+1VpmpURpIgFjEIaUxFnvtQ8dSuQIrpLPsPGA4yDQfA7mUf8yNgSqo538N/n3Nlmg516xoaSCVK5QdS+UKLG9pCKlFZqarNBglg1p0vxGRz4nIB4DGKrbLTIXSQAK0NtVRR4b90oaqkszmyRWU6MJjy84DhoPM6Vf480LZJDS0ghb8f42t/jEv659j5pSN61aRK/i/Q6W/SxvXrQq7aTPayqu+d87Kq77305VXfW93cHvOkT6miKwUkZ0icpOI/F5EvikiZ4nIz0XkSRF5RfDvIRF5NLh94SiP0ygiXwumbB4VkTceadtKVRqM3hGc+7f4qd0rgDdPZUNMFZQGElUSTpbFDQ4/mv+X9KZytCXquebcE2k568qy88qCzAln+wkKicWAB4teCK2r/d5RYrElL8xR61e3cc25J9KWqC/7XbLkhckLAs+X8ZfSHAxuvzwVAQk4Dr/kz58Bq4G3AWcAVwIfwS9osE5VTwGuBv5llMf4KPCAqr4cvzL4v4nIlHVKxk3tFpGjVfVZVX0mOJTG0rxnjhPOBq4N5n6eheajif+fK7jqhLO5quzEQ88rS9k+4WwLOOYQ61e3WfCZWv8AZIDixFuy5PgPj/Cxn1LV3wGIyGP4Jd00qO69EpgP3BIUW1UgOspj/AVwrohcGXxfDxyNX5D1iB1undF3gVMBROQuVbXe0ExTaSCxgGNM2I7F7xGVSgbHj1Sm5Guv5HsPPw58EvhvVX2TiKzE34piJAHerKp/nIL2HOJwwag0V94Gg40tdKyG0kXFtpB4LnsKf2iuNCWxIThebfOB54KvLx7jnB8Bl4vI5UGv6hRVfXSqGnC4OSMd42szBxUXOnb0p2mOR+noT3P1vY+xdWdH2E2buUasBStb42Xmmn8D6vADEMFtXXC82j4H/KuI/Bx/R9jRfBJ/+O63IvL74PspM24FBhEp4CcsCP76omLEFkBVdd5UNmairALD9Lpw83Y6+tM0xIY71MlsnrZEPbdeujbEls1gN2/wA1CsJCU6m/STQy6eluUdpjomVYEhSFb4B/yhuaeAf3v6M68/0vmiGWHcYTpVHStCmjloT3eS5nj5vKYtdDxCPc/4PaJStpB4zgoCz5wIPiNVvOjVGFvoWAUj1oIBtpDYzEkWjEzFbKFjFYxYC2YLic1cZcHIVMwWOlZB6aLidI8tJDZzlm0hYYwxU8+2kJgg6xkZY4wJnQUjY4yZxUTk/SLyuIh8s0qP//GSEkGTVum248YYY2amvwFeq6rTUclh0iwYzXZWasY3mffB3jsz3T4+/5BFr3y8d9LrjkTkRvxSbveKyG3AC4CX4l/7P66q94jIxcB5+JUXXgJ8Hojh79aQAV6nqgdF5D3ApcF9u4B3qGpyxPO9AL/yeCt+kYT3qOrOStpqw3SzmZWa8U3mfbD3zkw3PxAdsoVEcHxSVPUyYB/+lg+NjL0FxEvwt5V4BfBpIBlsJ/EL4KLgnLtV9eWqehJ+pe5LRnnKzcDlqvoy/O0pvlJpWy0YzWYjth0v2058LpnM+2DvnZl+o20hkQmOT4W/AK4Skd/gV+UubgEBfsXuflXtBHqB+4LjxS0mAF4iIg8G2078FXBi6YOLSBNwOnBH8Byb8ANqRWyYbjazUjO+ybwP9t6Z6VfNLSRgjC0gROQ0Dr/FBMDNwHmquiMY2ls/4vEdoEdVT55M46xnNJtZqRnfZN4He+/M9HuK4YrdRVO5hURxCwgBEJFTJvjzCWC/iETxe0ZlVLUPeEpELggeX0TkpEof3ILRbGalZnyTeR/svTPTr9pbSBzpFhD/BPwSuB9/m/LR/BVwiYjsAB4D3ljpg1sFhtluKCNslO3E55LJvA/23pnJm1wFhinOpptJLBgZY8zUs3JAE2TDdMYYY0Jn2XQzWQ0vyty6s4NN23azpzvJipYGNq5bNVzdu4bbPaaZ2GZjZhAbppupiosynZifcpxL+RPsNbD9wNadHVx972NEXSEedUnlCuQK6m834eyo2XaPqYbfa1OzbJhugmyYbqaq4UWZm7btJuoKDbEIIv5t1BU2bdtd0+0e00xsszEzjAWjmarnGf9TeqkaWZS5pztJPOqWHYtHXfZ2J2u63WOaiW02ZoaxYDRT1fCizBUtDaRyhbJjqVyB5S0NNd3uMc3ENhszw1gwmqlqeFHmxnWryBWUZDaPqn+bKygb162q6XaPaSa22ZgZpmrBSERWiMh/B5s6PSYiVwTHF4jI/SLyZHDbEhwXEfmSiOwSkd+KyKnVatuscMLZ/gR6YjGke/zbGplQX7+6jWvOPZG2RD29qRxtiXo/eWF1W023e0wzsc3GzDBVy6YTkSXAElV9REQSwK/x98y4GDioqp8RkauAFlX9sIi8DrgceB1wGnCdqp423nPM6Ww6Y0wts2y6Capaz0hV96vqI8HX/fj7XyzDr1V0S3DaLfgBiuD4N9S3HWgOApoxxphZblrmjERkJXAKfpG9xaq6H/yABQQrIVkG7Cn5sb3BsZGPdamIPCwiD3d2dlaz2cYYY6ZJ1YNRsOHSXcDfBSXGxzx1lGOHjCGq6mZVXaOqa1pbW6eqmcYYY0JU1WAU7HtxF/BNVb07ONxeHH4LbjuC43uBFSU/vhx/u1xjjDGzXDWz6QT4KvC4qv57yV33Au8Mvn4ncE/J8YuCrLq1QG9xOM8YY8zsVs1Cqa8C3gH8LtgPHeAjwGeAb4vIJcCzwAXBfd/Hz6Tbhb/V7ruq2DZjjDE1pGrBSFX/h7HTG18zyvkKvK9a7THGGFO7rAKDMcaY0FkwMsYYEzoLRsYYY0JnwcgYY0zoLBgZY4wJnQUjY4wxobNgZIwxJnQWjIwxxoTOgpExxpjQWTAyxhgTOgtGxhhjQlfNQqnGTMwT98ND10HPM9B8DJx+BZxwdtitOryZ2m5jaoj1jExteOJ++MGV0N8O9S3+7Q+u9I/XspnabmNqjAUjUxseug6cGMQaQMS/dWL+8Vo2U9ttTI2xYGRqQ88zEI2XH4vGoefZcNpTqZnabmNqjAUjUxuaj4FcqvxYLgXNR4fTnkrN1HYbU2MsGJnacPoV4GUhmwRV/9bL+sdr2UxttzE1xrLpTG044Wzg2iAr7Vm/ZzGFWWlbd3awadtu9nQnWdHSwMZ1q1i/us2/80iy4arc7ilnmX+mRom/2/fMtGbNGn344YeP6DFGXqSuOm4PJz17i/2xVnLRmiEXtq07O7j63seIukI86pLKFcgVlGvOPZH1zg4/+82J+XM9uZTfs3nttTX5Wo5IMfNvLrzW8EnYDZhp5vQwXfEi1dGfpjke5ZiDP2fRgx9l8MC+uZ2mW0m68gxKad60bTdRV2iIRRDxb6OusGnb7rmVDTeXXquZceZ0MBp5kbow/11yRGhPO3P7j7WSi9YMurDt6U4Sj7plx+JRl73dybmVDTeXXquZceZ0MBp5kVrstZOTerJ5b/ikufjHWslFawZd2Fa0NJDKFcqOpXIFlrc0zK1suOZjINkFB3ZBxx/822TX7HytZsaZ08Fo5EWq3VlMVNPEIiVvy2y9MI2nkgv0DLqIb1y3ilxBSWbzqPq3uYKycd2quZUNt/LVMNAO+Qzg+LcD7f5xY0I2p4PRyIvUrZHziJJncb03+y9M46nkAj2DLuLrV7dxzbkn0paopzeVoy1R7ycvrG7zJ+5fey0kFkO6x7+drRP6Tz8IDW0QqQM8/7ahzT9uTMgsmy7IptvbnWR5WTbdDEjTraahTLlx3odKzjG144sv9ZNNpCTRS9UPwn/32/DaNTtZNt0EzflgZMyccfMGP+sx1jB8LJv0e4MXbwmvXbOTBaMJmtPDdMbMKTNoaNXMPVaBwYxq3IoFtWTkwtuVr/bnQGp8IW4oZlq1CDOn2DCdOcS4FQtqKSCNrCgw0AnJDmhaDA2LKq8wUBrQYgl/TiXTN23BbMYEfjMRNkw3QTZMZw4xbsWCWjJy4W22DxBI91a+ELe0kgQudP0ROneCuNNSVWJkFZCO/jRX3/sYW3d2VO05jalFFozMIcatWFBLRi68LWT9IFLIDh873ELc0oCW7PR/XlwY7JyWqhIzJvAbU2UWjMwhxq1YUEtGLrx1Y6AF/7bocAtxSwNaIev3qMQZDmhVrioxYwK/MVVmwcgcYtyKBbVkZHZYbB6gUD+/8myx0oDmxvyfU284oFW5qsSMCfzGVJkFI3OIcSsW1JKR1RMWvQDWfQgWrKq8mkJpQGto9XtWWoDG1mlJfZ4xgd+YKrNsOmNKK0nEmoJsuv5pS30eWQXEsulmBcummyALRsYYM/UsGE2QLXqtERWtNZkhO6uGaccDd+Buv54Fuf0cjC6hsPZyTjrzgrCbZYw5DJszqgEVrTWZQTurhmXHA3ew6MGP0pTrYlASNOW6WPTgR9nxwB1hN80YcxgWjGpARWtNZtDOqmFxt19Pjgg5Jw4i5Jw4OSK4268Pu2nGmMOwYboasKc7SXM8WnbskLUmPc/4PaJS07Wz6nQNDx7h8yzI7WdQEmXHclLPgtz+qW7pjGWlh0ytsp5RDahorUlYO6tO1/DgFDzPwegSopouOxbVNAejS6a2rTOUlR4ytcyCUQ2oaK3JBMr/b93ZwYWbt3PGZx/gws3bj+xiM13Dg1PwPIW1lxMlT9RLgSpRL0WUPIW1l5ef+MT9/t4+X3ypfxvCvNuU/h9VyEoPmVpmw3Q1YP3qNq6B8deaVFj+f+vODrbc/Q0+VPguS7SDvftbufGbr+fvY2s4YfG8iQ/LTNfw4BQ8z0lnXsAOGD+brrTSd2kPjOnbary0KnppD+UaqOqQWUXDwcaExIJRjVi/uu3wF6ITzj7sBXP7j2/ng7nN5CVKrzbSXOjmaufrfCon/Kn/lRO/6DUfc+juoFM5PFicJ+pv97eASBzll/OZ5POcdOYFEASfpaOdUNoDA/82GxyfpmBU2kMBKHhKR1+ajf/1a049uqVq8zgrWhro6E8PPS9Y6SFTO2yYbpY5u+c28hIlI/XkPEhLHVmivIt7JzcsU83dQUvnieYtBS8HvXsg1Vu9UjwjK33D9CWCBEqLo/anc+zrSeOp4qlWdR7HSg+ZWmbBaJZZIZ2k1C/yWayukdYYK6QTmMSwzMj6b5XUe6tUaS+lfr7fC3KiMLBvap+nVFiJICVKE1Y6+zN+oXCEmOtUdR5nxtQcNHNS1YbpRORrwAagQ1VfEhxbANwOrASeBv6vqnaLiADXAa8DksDFqvpItdo2m0UXHktd5x4yWo+IoKrEydDhHgVMclimguHBSRk5T1Q3DxYl/KB38Zapfz7we1o/uNIfmovGh3eDrWIx1JE2rlvF1fc+RjKbJ5Mv4IigwKKmeqC68zgVDQcbE4Jq9oxuBs4Zcewq4Keqejzw0+B7gNcCxwf/LgVuqGK7ZrWWs65kcYNDo2RxRIlLlnqnwHcb3lx7wzJh9FKq2dOrUGkPxXUcHEdYOj/OvCC5wOZxzFxU1UKpIrIS2FLSM/ojsF5V94vIEmCrqr5QRDYFX9868rzxHt8KpY6hpAp1d2wJm/Ib+F7qxNqrCF2a2VbaS5nm4BCm0sy6eNQllSuQK6gNn818Vih1gqY7m25xMcAEAan417YM2FOeWa6lAAAgAElEQVRy3t7gmC2dn4ySYbUW/O7nVeP+QEgqTFefzSpK6zdmDqiV1O7RPkWM2mUTkUvxh/I4+ujpm3Q21TZztzI5UuPO41ildjNHTHc2XXswPEdwW8xf3QusKDlvObBvtAdQ1c2qukZV17S2tla1sabKrBL5+Oz9MXPIdPeM7gXeCXwmuL2n5PjfishtwGlA7+Hmi8wkTeEn7SMuujmRBahjtbvC1zPVBUKnpeBoDSzQNWa6VC2BQURuBdYDi4B24J+B7wLfBo4GngUuUNWDQWr3f+Bn3yWBd6nqYTMTLIFhgqYwYWBKJt6/+FL/E7+UjNKq+lluf/fbw7f7pLfBjm8d9vVMdZLAVDxeRcGs0vfH1CJLYJigqg3TqeqFqrpEVaOqulxVv6qqB1T1Nap6fHB7MDhXVfV9qvoCVX1pJYHIjFBJ8c8pLHo6JUU3m4+BZBcc2AUdf/Bvk12HpnY/dB3kstC/Dzof929zWdj+5Ypez1QXCD3Sx6u4enYNLNA1ZrpYBYbZoNK5hSkshVNa0qZowos1V74aBtohnwEc/3ag3T9equNxSHVBIQfi+LepLkj3VfR6pqStU/h4FQezapZiMqbGWDCaDSrt8UzFJ+2gB3Z39jI+2fuPnJoZ7sROeLHm0w9CQxtE6gDPv21o84+X8nL+xdhx/NfnOMPfV9CzGrlf1KmZh/lk7z9yV/aySW0hMfLx+tM5dnUM0NGfqWg7iIqD2WQX6NbAFhnGTJQFowkIYw+ailTa4znST9olPbB4YhEt3kE2Dn6FUzL/O251hzHft55noKkVFh4HbS/2b5taD223W+ffep6fAe55wfH6inpWpQVCT8n8LxsHv0KLd5B4YtGkMtRKH68vlWVvd4q8pxw1r66iQqcVbaZYdMLZfmmkv/utf1tJILIMPDMDVbUCQ7VNZwJDTa+Uv3nDods8ZJP+J+nTryjPNlv5ar/nMZlFpjdvYPDAPtrTDtm8h+MIdZqmi2auPerzXHXcHk569payzLat3kljv2/b/3rsdpfWprt5AxzcDeleKGTBjfmFVbMDEGmEbN/Q8bTTxC5vMZe5Hy9LDNjxwB2426/n+OwfEBTXdXHR4cdasGpC9fCKCQiPPNuNCCxO1DMvHqUvlaO9P40qY24HMZHfpQln7Y33uzDO6xv3eWyt02RYAsMEWTCq0IWbtx+yF0wym6ctUc+tl66dljaM6QizzYChi/WYm9IBqX87kWeSMUQERwRPFVXlmIYs8Td+cdQ2fEbezf25l47+vq3vryy7b6zXlxmAecuGss3603me60kynwHe0/K1oYv89Wu6OOl3n/J//uBu0Lz/uG4MEFAP4i3wD09O+K0/47MP0ByPIiL0pXLs600hgKfKMQsbDxtkRq26EFz8U51PsTcZQVCaJM1+aeOb7nlsOP+isgBb9n/222smnIE3bnB0dpS/98kuSB6AWBO0vcgC09gsGE1QrVRgqHk1vUvmWGV1KlynsuOBO1j04EfJEWFQEjTluog++FF2QFlA+lNuIU10kRN/SNARIapp/pRbxEtGPFe/F6O3L8Wf577Ff/LPLGqqGyoEOvS+jVcOaOSn8ZPedmiPrrgpX/CcnQMZ6oMK5cXEgGQ2j7v9ekgU21b88CXg5f15qoIHhcyk3vrSDeu6BjI4CAjUBdtBJLN5Nm3bzfrVbWW9jw3xx/hKZAstdfsgdgw4VwBnlwXenlSBlcFyuw5tZaHTzQdzm/nGj+to2XfUqP9n/fOaSeRSE9oMcdO23ZzuPcKF2e+yeLCddmcxt0bOY9O2OOtjJf+vmT4Y7PSDWz4dyi65ZvayYFShmt8lc7RtHr7/QfpJ0Nk1SDbvEYs4tDbGSIyYk3G3X09GIwx6MRSPNDEaHf84JcHo6/oGPsj/I59PkdIocckRdfJ8Xd/A53u+MbQdRH86z3O9KUSjrJBOsnmPfb1+4sS8eLT8fRut3U/cT+qeD3AgDQOFKE39T7Ow82nib/zCoeeWbAfh5JLUOQXurn/z0N3xqMuCgf0QXTLiDVP/oup5QVJEbEJvd1HpdhDZgud/HFahNVE39Px7u5NlvY8z3R1c1H0DvUSIzG8mUXpRLwnq87xn8YJp3RZ6eU6WAf4Giu52lxwRco7/wSAncfBSHBjIkpinE9oiY2nng1xRuIkcEfpposU7yBXZzVzb6UFjyTYfAx1AkEBSyNoiXDOlLIGhQjNxl8zu2FIO9PaQK3i4jpAreBzo7aE7Vn5hbs7sY8CLDvUZFBjwojRnyisyPdbwCj6WvZgubaZZBunSZj6WvZjHGl5RlqnXOZBBgLhk/V5KMGLRNZCp6H3r/sm1tCc9BjWG6zoMaoz2pEf3T64tP3FEttlAbBHXxS7lkbo1Q6ekcgUORpcMZxFG4yAR/FEUATcK8UXQtnqC766vdDsIJxi+XNpcT6K+fDuI0nTuN6fvHtqNt3MwW579WJKMEiOPIihClJz/eMFGiQty+8lJfVlbclJPzBuccAbeu+Q+MuqSkXoQISP1ZNTlXXJfeQZmIeun1msw11Z8P6dxl1wze1nPqEIzsbrypvwGLuJ6HDJktI44GSLk2ZTfUFbFe4+2sogeUtQNHYuTZY+2srzkPBHhQT2Zh7xTEPGvSQVVjhcp27QumyvQ4GSJkueehrewNF5PR1+adN6jLVF/2Pctd+ApMjTiBPMejggZrSN34KlDTy7pWXXt7CB/9ze4pucqlmjH0BxLYe3l8OuP+lua5zOAB+IO7yx7hGt3ioVOi70f1/E3NSzOvWxct4qP3fP7oWHexV47/TThiJDNB5mBxYt68zFDQ48SqUPyWf89IYqnSh0ZoguPpaMnRVNueMgUIKppDkaXsHSCmyG+IHqAZ3J1iOrQXGCaOl4QPQCn/9Nw79OJBgFJoDGoCzmFi3CnpcSSqVnWM5qA9avbuPXStTz44TO59dK1Nf+HsiV1Ijc2vpduZwEJBuh2FnBj43v5XurEsvM25TcQI0+cDODvDBsLglap/kyeq+L38Cv3En7vvI1fuZdwVfweBjL5sl7KAneQA9LCjQ3v5ZG6NSTqoyxpjvOKlQsqet/2aCtxyZYdi4sfHMez3tnBJ6M300oPPV4jrfTwyejNnOTsZmiuyHH9i6o4kB2c0s31xtvWuzSdu91ZTB0ZPFVikeBPsHhRL0m/jyTaiIqHi8cB5tEoWRY3OLScdSWFtZcTJU/US4EqUS9FlLwfeCco3nosK5qEqOtQ8JSo67CiSYi3Hlve+4w1+u9ffJG/K+8ULsKtuCqFmbWsZzSLrWhp4Of9p/Do/JcPHUtm8yxvKR/eeSS2ho9n4T3uFpZLJ3u1lV94L+a9se/BF28bSue93L2HNxfuwBPIEyFOmosLd5Bwo8CZQ72UPxTnR0SIj+ghwOE/Ad/f/FYu6r4egAx11JEhojnub3krLxvvBT90HfH6OMvnjUhr3v5laFwM85aWHz9MuvNkjLUdROnc0l3153PZ4A3UoSxsbC6/qI9I6nDaXoSjyorsQFmCx0knwA44bAZkRU6/gsYfXMmqeS5Em4J5psJwkCntaZVs3DiV+0+VDmMChyR/mNnPUrtnsUrXs3zpJ09w3QO7cAQcgVfxG/7Z/TpNDQ0snD9/aBI839cOhUwwi6FD8xkabSL60T2HPPdoQ5qVtGnrzg623P0N/qrw3bLhtmJK85jGKiza/ntY/JLQC46WpmJn3UYWNsZISLo2NhWsUpCpVGmKfJGq0pvK8eCHz5y2dkwhS+2eIOsZzWKVznO9/6wTALjpf55iMFtgY2wLTfEGFjY3A8Np2ssKqWCwy5/8F8DBQ/IDoz73aIGjkk/A61e3wfkX8bltZ0xsfq5kvmVILgV1waf9CaQ7T7kn7vfXOiVifmZfLgVeBl77+drIRJvgPNNUq/lsVVN1FoxmuXF3ES3x/rNOGApKfPHDo6Zpl/ahhaCjoZT3OA6j0vValba7TEkSRVla89r3+Yt/J5DuPFljDkFOYG+imTqRfyTtLh3GLO0x13K2qplalsBgDjVGmrY3lKStaHGdDvjzDBWaUF22iRqrsOj6D0+u4OgEjTsJX2H9wAlN5NdQQdQjTUAYL/nDzA02ZzRblFYsiCX83kqmb3K1xEqqAOw8kB9K005JnAWFLhIM+sNz4vp13RafWHEiwMg5o5ckf8UF2e/w4ng36cblbMpvYEvqxNrvEYxSr+3CrYmxS0bFPlU2hNifztPb10u7zufaoz4/9ForLjs1hRslToWaLpcVDpszmiALRrNB6YWpkIO+IJlg/orhdTQTvUgFF9uOPU/wHG18N/4WAC5L3kBGXTw3zuK4MpAc5HPOu9nX+mpeuWoBv9h98JBhmpHDN8XzlnY+yIe8m2hqaMRz6znQ20OMPDc2vpf7ki+mJ5VHgKa6CO8+49jhYcSpeL+OpPDnGIHg7wfezh8Ta0efhH9TYehn+gvRstd6f+6lHBzM0VTnMpApcNS8OubFY4c+RulE/iQLolbLLExAOFIWjCbIhulmg9L5iGSnv6BTXL+O2BHs5gqQqI/iKWTyBX4dexnXxS7lgCxgoZtk52ADX4heyh8Ta3mqa4DrHtjF0wcGyoZpvvSTJw4ZvrnzkefYuG4Vn1/2MxY3z6OxKUHnYJaM1JOXKG8YvJPuZB4NRgJTuQLXPbCLL/3kiSN/r6Zii4Ux9o96l9w39hBkyRBiqr+LbmcBmxr/hm16MgcGcv5C05xfTui5njR9qdyhj1FqCjdKnApVHX41c4IlMMwGPSX1w4olWxD/ayi7SFU0yVzyyT+eWMhqZ4APJDfzuX6PZ1pfTf+6d3DZtt1DwzKCP+zkCPSl8ixqqidfUDr603zhJ09SF3VYnKhHYlKePZccbnc274FAXyHKYm0Hhj9aRhyHV+ojnPY/n4Lf95f3ZrZ+1l9HlBnws+bWvs+fI8JPWS9mCDbGXL93tbfyRIJRf/6sE8rf76JonBdEDwyVjCpOwr948JdckrqPfZ9op8NZzJ1153Nr6m+ojzgsqqujayDjl8ZDyBY8ljXH2dudor0/TaI+MvZEfvMxZdt5xCIOi+s9GheGsyW5JSCYI2XBaDYoTWl2g6E6SuqHBWnMpfM1pb2Xa6A8II3I/GpsStAYc/l84mdw8T8AlJW3AcgWPBzxb0u3UvD3wtOyQqlD2XOLh9vtOEImV6CeDHuDSguKH5DO4FH+yf06WS8C9a3DvZnfnQaP3eWf5UT9YaptnwPgS/k3Da2dijjDvat3Jv7E/JYRlRxG6VGUrr0q/XmA94+RQh5vPZZr1p44lEq/Tn7De72vktcIfTTRlDvApfkbeN55Fz8rnMy+3hQFz6/CoB7EXIdEfZRlzcrzfRl6U7nytPaS4cV+jZPp78KRJlypx8kn6RnIs+uUd3LSJH+NjsRMLJdlaosFo9mgNKW5oXV4zqhxadnq/k1bK1zl3vMM4PrbeBc3s2sIdmANLoh3Z5/guaw/l/RI3RpirkO24BFznbKtFBxRRARRv1BqWdXuknZ7BY/6YhmiwnAZIgUukfvIaoSMUz88LJYFHrsTcMAt/hpHoJCH7V/mpvTJQSDxR6IdgbznsTPTwmkVrDm66X+eGvXnb/qfp3j/28ZIIT/9CtafMJyS/vt/+Th58Str5/MeeeqBDO92trCtcIqfkQgUPP92UZNfGSPiOpx6dMvYCQv1LfR2HiSO4EmUBAO0u/62D8/sWsGtIU3RTCodfwwzNb3dTJ4FI6bvF3+856mkDWOec8LZsO9tw8NVkTq/kKV6w7u9nnA2e77zQGV7MsUS0PXHYO7JGU6KSCwtGb5bREuvv+34jbyXzvqX0jmQZV48QtdAdngrhaY6DgxmyXtKpgBPtveTqI/wT69/MZzQRrH0TWPXTvbSyqb8Bn7mnVzWnGXSQY820tY0XMiVaNwvWeOWvx7EhcwAg9kCkREzoo7AjbkNnObdftg1RyN//gwe5RL3XpZpJzy0evT9lUYM8y3I7WdQEoA/mS8ipImxTDpY2uwXjy14fnHSloYoifrI2FXNR/RWB7wYntNEvzOPK+Z/eeg5emthf60jVHEP3swqcz4YTdcv/njPAxy2DeO209nhL+psXAzNK8dM8614lXvZItbiYBv+Dp/zlkGsgQSAtNDb18sbk3fy5FGv5G2v8LPkDg52I8BR84MaeIPDj4RQtni2uPL/rI/9AFXFdR3iLuQKHvmgx7BP2jiuYZCFiZJglEv5RTu1QNmvsRagrolG9ectnJKX4in8OvoyeO3LD1v6pjE2/PNn8Cj/5HyNrEbokyZ/iG7Htw6boXgwumSosraI/8LrJcs+2kjUR3EdGapiftjhrRHzVLGIQyofY7HXPnRstiQMWJ26uWnOZ9OV/uIXdweNusKmbbun7XkqacO454yR3TUyg67iPZkyfX5auBv1L+5u1P8+ny7L4ErUR1jeuoCXzevn1kvX8v6zTuDWS9ey6e0vo21ePa4jdPSlEYGoKxy9oIHj2xLMj0cPeX9XLWrEU3+7bkVxHSHiCC86KsFpb/sEC+vxhxxVh4ceT3wLoP7QnBfcorD2fbz7jGPx1B9a89QLbuHdZwSVqC/e4telu3jLqAGl9OcvkXvJaoQUdf5QWoUZiqWVtSMO1JMmRo47695U9t5XVA2+dF8hoLXJLyC7X9pmzP5aldrTnSQedcuO1cyuyqZq5nwwGvcXfwpXuI/3PJX88Y17ToVpvhWvcm8+BnIjtuHOZYZrvAX603n2dh7k130JLty8fWi1fenzZApKzHVYOj9+6LbjJT58zmpaGqIIkA92TG1piPLhc1aPXVnhzZth3Yf84ODl/Nt1H4L1H+b9Z53AFWceRzzqkvf857zizOMqXqtU+vPLpJOMU0fbvHoWF3tnFaRRn3TmBXS9+tMMRBcxjwEGogvZ3Phetrsvm3iFgZKtJVAl4fjbSfxo/l/OuooFliY+N835Ra8Xbt7OH5/voyeVIxgVIuII693f8OnYLTQ1NNLYGFyE0z3Q1DZuZYOx5nXGW6EOHHb1+oWbt/NU1wD96fxQokCiPsKxi5q4NfYp0s8/iZfpJaI58hLFqZtP/VHHT24B5NbPBllp4s/BaAFQOPHNsPeXoy7c/LmcMmpF8ImszB+r0veEmj6Z+b/SRbB184LeV0kK+UPXTc0C06lYbFulytq1lDBQabX5GmeLXidozveMjpoX42ByOBAB5D3lUncLKc9lzyD0Zwr+J+/UQTjwpzEXS45Xn2u8IbJKhs9euWoBnQPZshTqzoEsr1y1gN1NpxJJdxLRLB4OEc0SSXeyu+nUyb0pTz8ITYv9RAg8/7ZpMfTvG3Xh5qN1Lx9zeHMi27Uf6eaFk6qPVroIVlzo3Oknb+AO/x+vfHVZr2Qim8pt3dnBhZu38/ef/jfab/9bBg/sm/xi2wqGFyej1ja2szp1c9OcT2D46c7OUY8v8TpIR+Yh+MVCE9I53EsoTS8uWSw52sRrZ3+a99/2KPPiURJ1kaESKSM/+R9ujcYvdh+kLRGjLzXcM5oXj/CL3Qc5s2srB2gmQZIoOXLE6KeB5BNbD3ldFX0C7nkGGhYNby0N/kW459mhhIPzRyn/Mlb17bfs7Tlk8ehoF5Yj/XQ+qYnv0vm2A7v8/2PwK1ksPM7/P376QT8Ij9ErGavdpZ/wr9J7SXku3YOwLFIgUT/2YtsjNdH3sRYTBqYyTdzMDHM+GPWn86Me36OtLKePjNT71QGcrJ8GFhmuGTZy3mDk9gh9qRwHBrN4qhy9oKGsKGg8diw4VwD+hehwf3x7upMsbKwbWosCfirv3u4kC3L76Zb5dHrzh1KII46fWlzqsBl5xSGkdK+fNl0ajEasxak0M2/rzg7ufOQ5WhN1HB0Mudz5yHP82fLmstc7FVmNlW5PUeaQ6hUuflLEiOoVY+z3M167N23bTTZf4MBAngWynwIOK+Q5Yt15iNUPr92aQpN5H0e+b/3pHB19aZ4+kOTCzdtDGbKrpWFDMz3m/DCdE+T+jtySZ1Nhw1AmVMwN5k7w/DmjouIFOkh0uDt7GZ/s/UdOzfjzWF0DfhJAfcTlZdlfc0V2Mwv1IPsz9RMephlvUrfDXUykkA5eh/9CIoU0He7i8tc0Rkbe9h/fXl6vLdIIA+1+bbsxhqUqHX4rXpCf703zx/Z+nu9Nk80XDhnOm1BW4xiJJZOa+C7NUnNj/tosPbR6xVjGa/cT7X3+GquCMqBxltGFq3nyyPDarVjl229UYjLZoaXvW386x97uFMmch+cpj+7p5so7d0zrkF2tDRua6THne0aNMZe+dH5o8cufO79ho7uFFdLJgDaQLyjztI+n3aNodfvo7s0xUOhjkdNHC/24/fvhtgtBhEWektBu3j/w71zHB3g8/0IEaE3UcX76LsTLskiTxLw8yYNBkkFxmOYwk9sb163yt+JOjtiK+/UXcce957MxdwNohrTEqNcsMclzR+x8SpeP7ulOcqa7gzf33s1ir512ZzF31Z/P2T13QktJvbZEEHCzA+BERp0sX7+6jev3/czfRntgPwejS9h13F+zaVucj93z+6EhyT+2+7vAFlO18wWlcyBD10CGMz77ABvij7ExsoXPd+6m0z2Ku/XNPFK3ZujT+VNdg/zZx39E1BVOWDyPq47b4++YGlQiGArqXMvGdSeNXR9tRCmdA4NZYoVBsk4jrU4f3V4KLTSxhE4cEZzE0ormhsbrjeUK/i9V8QNP6S65Qw6zMWGlPYTieb96+iAR8T+UFNTPZFzUFBu3d1haV25/T2pofVfE8WNzTzLHZ37w+LT1TMIcNrQeWXjmfDBa1hxnsKOfgucHomsiN5MlQjeNxAtZEk6eTU1/w4+zL2X1wC/ZGNnCcfIcjYUkHZKgLT+I6/kVlh0nShSYpwO8te+rfJPPUR8ROvszLJWnmUcSBQoIruaRdBeZ/TnqRpR6Kb3AFgPAemcHp0Vv5kABerxGWt0ePhm9mbhzEh/Tk8nWXcpbMt9hKR3skzburHsT27W8ksGG+GNc1H0DeYnSTxMt3kEuG7yBBtIQXVn+xkTrIHUA6sfIthyxjfb8wQFaHv8XttdtZJ9zCk92+EGo+NPFSgP+1341hDPdHVzUfQO9RMhKgvmFA1yWvIEv5N7DdwdOpKDeUNXuVA6e6hog//x1DDa6NDYdWuh0/cVbyubemuoiRB3lvrtu4UXBVhVSgHjyCY5G8XDIFXpI5yOknCYSjvI0K1BPWZ7LEW9eftiMtdLhyv50js7+DOl8gcbi8GWwdirhpNjHIhbRS4w8uPV+uaZM/5gfRCodcis9L+IImbwHKDFXyHvKcz1pjm9rGjp3tItt8X37U+cggp9RGnH9gRP1lKcOTN8an0kNt04Bq/wQrjkdjLbu7Ah2MhViLlzmbiFCnoXSR4w8WSL0eQ2cl7yLb2dXs9U7ma3Zk/lW9FMcI88znySOV1yPI6hXwMPFpcBqZw+3xj7FttyLeJX7BxbQT7H0p4iiCAWFdDrNk3d+kmPrRr/ADl0IH7qOeH2c5fNGpBc/dB0rWj7GI/0vZ2filUN3JbN5lieG55cANka2kNE8i7QvSHSI0kcDjVH1h6OKPaNMH/Tu8YuPjgyOQVvY8yu/VFDiKJAG2tMODhEuzH+X+7In4jp+xYF8EI4UPwOwyFN4bd+3SUqElMYAj5gUmM9BPlH4DOc5x7OpsIGfOycTcRxepY/wnswWTpLHyfTH2D/YQq/67c17HvO7dvL6j/+IpfPreLIzOVTvrSHq8Nm64eSBld5+nKE+ioeoRyMZ9uc91ua+gCMwPx5h9fz5vHL5Am761lMMZr9PneuwoDEKIqxoafB7aM/ewtd6n6JrIE2L9lMvOQao5yZ5HXfGLqQ7mSNRHyGT99ijrbRKL0/pEgShQV0W5z0aGxoP+SCSuucDXFe3ka93HIcIo1c8L7k4lvUkSpZqZAuKoDjizy9u3dnBlru/wYcKQe+6vY1v3n0enH/RuH8n+YLiobzgI98vr14+yt/TVPQqKq4UMsVqMZFjLpnTwWjTtt3Mj0dpjEXoGshwHHtplgF/F1PAJU+dZInk86TzwxfS453nmMcAijNcWhoFlAjD5y3X57ki8jid2uxXFcA/TxUEJeJ/x8LcfvbkmlgWyZOoD/5LRi6qHGPbAnqeZeM5q7jyzh081+NXgXYdoakuqP9WomVwNx4HkeBiHCFPPWkcd16Quhw8Zl+Q+JA4qjxz8Cf/DINdfrAqZPxX3P0UHg5tGiMl9SzJd/BD+Vv2Oq3cmN/Azzh5aOhzuXSyV1vZpy2c5TzKfElSQOiimRQxlnAgeDuVVunhmsjNXJ2/GCnAv0Q30UQKB496TRMttJPSVgZoIE6GPdpKXy7PKdmHudrdwvKI/1ybChtYkN1PrzThOhDTfFDhSJCgdwQexzrPA36Q7E7mefjpA9Q/8wCb3PtYHu1kj9fKpr4N/KHh5Rxz8Ocs3XYdKdJENctyFBXI4RKXDFdE7oZB2KTn05Pyt3fY7L2Bz7g3slRSRMRDcyA5D2/AwXGCLT9Q8hKlN1/H/0nfzk3eP+KIjF7xnOEtLvqC7TsWNcbIj9KRVfz5y+0/vp0P5jYP9YwXajcfzG3my/c6PMgpRF2hzhUyBSXn+X14Txn6jR5ZvfzPljcPBZ9EXYTOgQzz49Ej7lWEtR1FWD0y45vTwaj4yycx8f/QOzO4wZ+e4l+sXDwa8Hs/xYvqAvoAJYf/h+qO8thZYsxjEA9hniQBBw2CnASPD0qCFC6CowU6B9zhYDRy4nyMbQuK5xTjoaoGF9pA6RDQYOdQr6BIUMil4fyS1GU8mLfC31K8KBqHjj/4pXXUwQUcJdiLxyNGjkZNkxWXXppYhB9M7iis4x3u/SQkhUuBo+QgUQrk/H4JDspi6Q5CuVDAIUuUFH6lg43uFprpp5kBPIScukQpEG6LytwAAB4YSURBVMXjGGknQ4wB4nwq//ayYdYeGocCWr/WU0+GVKEORIfGDrVk7kYYnr5RhdP5DZ+I3EyWKD06/Fj/nIRLYrfTrAP+cGvJTFCEAhliQIF3u9/nhtz5/sXcUzzVocd38HDw8HBQzUMx58KJ4hWyLCBDrFCgLuKS93TUiudf+skTPPrfd/rBMtbJHm1lU9IvMlusJugIwWN4ZAvK2T23kZcoGfF7zBn82zcM3Mn2+afSEIuwJNhPKe8peW94mDXqCI44Q9XLb/zZbhYl6oaGtHZ1DJD3lMZYZNxeXCXC2o4irB6Z8c3pYDTyly8mxTTv8otUo2T4fvTDLHUOEiM3dEGvo0CO8mDkX1RdDshCWrUTBRrw67MxfB2k+JWKkNJ6FtKD5gBtGL2S9Oljb1uwaetu5sWjHDV/uCRQMptn+49vZ73eNDwExBhpxIVMeepycUvrUrkU6uXJ4aI4uDr8gkTwP+0reOr3FiMUaJUePhC50y/xg0sehzj+/Fqk5CJevBUUhwIH1Z/fSBFjuXTSKj14CB7O0IcF8FNBHTzm08+10U1ENccg9fTSGPx8ULpHhCj+/22aKPX4+z3lieCgOCi7dGlZBdeN7hayREhTh6JDj3Wpu4UVuo9C0J5Sxe8KODRJeqilUdfhMrbQRxMdupCV7CMqfgSK4jFUjFYLFIjikicqeVoTdezrSQNKtlCesXj7bV/jE5GvB8GyqawnWax67oo/X4X6hVVXaCfdXmNZ8diU+lXEi6WmEvVRlrdAR1+aTEEpeErEYWj+CPwgl8wVyoa0CuoPBxaDJhxZryKMdUa2QWC45nQw2rhuFU/ecTV/2X8vDeoPARWvRzLUd/H/rXL2EyNPHhcv6DUJEC2Wog4WxGaJ0sUC0k4jnh4gpllU/IExEf9TLoCHUBCHPDF63Ra8gtIkGb/kUGn22milakacs+c7D+AK7O4cGFoQu6gpxtmDtzHY6NKeVrL5AV449NoOY4zAl8dB8Pj/2zvzOMvK8s5/n3PO3Wpfuqp6q26aQUBBuwE/AspEwkgg/SEYWmagQ6JBCJgRASeOwSyOmmgGY2z5yMRpJGJMBAQhwnScUT9sihENW7M2yNprLV1de93tnPPMH+85t+6tpRe6696C+34/n9tV99a5533O0ud5n/d93t/jEVRGWNFQZVFcHFUamWK5mCE3J/qzRzArEplPiKpbRmkiz6g28LoupVtGSn/zCKKrE2WqEeIS0skoCDSSo6AJxjG92SxJ2pjkL/1L+Zi3hRadwJOwdA1DHMZo4nr/YgCucu/mcveHtERDiEO0MUAbGu2rV6YXSc93Hl1CJjSNKiQcM1fW6w0yQhMIJPEJMeuZKvahWnK2Pgma0wmWt0HfaA6FksL3mcd3kwrvoSDGWYpATtNAjivdLfxCTkIwUbvnCC2NCY7qbCLhryE1uIO8pnFECFVJkWcosZRsMSg5lnJF8Wd3j85Klw+jDki5VmLSdSgGYcW84JstqrAFAmtLXTujM/tu4T8Gd+ArFHBJR31dn8oFWPlSb9o8aEIc81CMnySOmf2RE/8LvPJvSA6CwAzFiBD1oiGhZm4BoKguojAkrYSq7KMVmOTc/NfoLTRwZXg0Z87MsoujofV/V5Hh1ZzyeLF/nDCKvPwgYOdwlmXpAabGi6xmFKcsoojSKKbfJRorT8yxZxPXGSpXHBi49Y9ZzmzFigIeRfWipAiPLhktc+UxEjmS8k/mRoAMOdKS5/8mzqE7nGJVuMOc4xmxpVfWgVAEl5BVMoCPaxJQIof2M13Hi5lT6RvNc5a3lT9ytrBSBtih0dxWuI5rE//Cx527TRQmgqNKF8OowIC2kaFAn9vNRJDhP8guVBQfF0/NcZkhW+OovxWuJ+05pfTqAXcpLf4+siQpiEeCwHR0xEHEhdCPbqUke/00e5zlpqSGI3S3zJbD6XVMlBMP/RmHlGSVM8jS5swsXbcrf+No2p1Pkb7nkwzlCkwECZrcIp0Zh9FTrqH4qM4ZETy1c4Qb7n8JPzQyVEZZHVa0piscWFdzip3DWTxXUNU3bVRhlR9qR107o+LPb4w06YQU00oM8TyAmcMQ+rSD1TIQZSaZoaQYAaPdlm6F8d1kPriJlfFDfMKFZCcJf5JiwcynqEKKIiEO/drOJA0kRUhTYI/TUzH5e0/TV2gvK6g2Z5YdZqFiMCNQCdRkQS1zpudjpMI5mNgixOEfgt/h7k0PISKM5/0oE2otZ84QAfVcx8xvzApplFFtiOZ+iqQITOSHUMDM8cyKAg5APGz3Yf8OXtIVFMQjI4VSZBlExxM7VjPdDonoewFCkiLdMsJtwVn0tKRIuC4r2zM8NLqOhzkJERNonsbj3Jr4a051njcH5yRwxUHDIgos0REmpIGMBPxv7wIyGZdrJm+gUacQTOJC7GizmuK7znnc3/1h2ibypYKDP0h8iCsmvgEK+6SV5ew165kaukwKveNCSy+em6A1l+XbqYvmlI0qnfHW1WSGd5NVExk1kaVb9pFw4J6m/8lm/zz+NXvCjO+fXXl/th0F772GtceezReWzy1SG7c7U87pXSvbKoa0XMcUCOxsTO7XbotlPupatTv4XDu+SvSwlFImV/yA8XHp03YmaOA42U4yioYqHqpOAnpOmB4+u/ap6b/Fcy/JBp7bM0YmnKRHhvEICHAY1mZGnFZaXB8nLLC58b/yeOrdgJnzuW3qCrq7llYujFSF8T3QdRwMPA9hkcEsvBSuYHNgevhxosV7nOcq5gfKdxGKw6RmuN39HW5NX8SuEaPgsKItjec6FSrJW++/E/eRr3NCfuu85/J5XcVy2UsSnzSFUpJhiIkyy+KwEvM5J52x8R7toEeGCcTBiYayypMHAIp4eBIgaq5fAY8iHqPawA6WcsPKTaVe+n///lbGcz5+GPJ+ZyufdW4hcBKs0V2lPRbFKyUlOKgRSy1b/3PXHbdwiX8PK2SACc3gOMKqxoBc48oKR3Cm8wTrdv4Ty3WAScnQ2ZCiK1mAVHOkbjFR+fvBqnG/+BP23vkJRvKCi88KGTJl0ttWmfpTcxRXPNIcCZX1tzBWtfsQqevIaJIMjUzCrJjBICgpikxS1q8vpXJHhEX8wV8zHGTYLkv5SrmWV9ncSwOTrJC9KLCbJSTx6ZAxEvhs11Xc03ghT0SOCMx4/A7tort8/Q/AVJRavfdl81OVFkJWO/18wfk2d4fv5/ecH0dp0DMOqOzt23L/bIa5HMEr5HHFeNm9EwWO7moqZUK1736I9of+jLx6+/3vNaJNJPDJkqKbffTIKDA70zDehR/Fl6my4cOSfVqZ3baMfVG2oLJdu8iQo1vGyvYliOPi6HR0m4xm9yYlzdHeELedOQ7/9lEYeZ1bkx18KXsOD4Rrucz9PyTw6dSxkn0KeBrg46BRlPXoa/vY07CL3z3WzCkMNJ7KF5Pv4+T8o1w9sYkGpvAmQ9rzQ1yXeoXrLvh7tu7cwZKfbaIoHjmnhVSYIzs5ylXZyxhadmaFoOrmn77CjvEpegsNnL69g188+Ag7hqcgDNmX9cn7YcUanwfDtWyRy7kk8QPeEWwjwKWfDtqkkeakV4qgHwzXHlap+/1hh7QsR5K6joy+/rk/4iq9Y5Z/id/ncXGAURppZQInmrOQGdFRMdru1tRF/GPyosraK1ECQu61RwhVGKCDiWhyPa05ht0Ovrrs7yqy+sZzRfpGc5whT1TWVJraC2O7jXUSvdwE+aJPUV32aAfLGCItJnHamSdLIEA4Jv/dis/Ocp/kcsesBdoj3TztvZOT9BlODF8gUKFP21kj/bN3FrFDuxihERCOkZ2lrLkjTRGndB3i5Ij4mNyKpJPpYckhaaWrvR2cJP05h/HxMZLi84XwUr4k36BVjDKGS1haJ1Z+2ga0jQkaSIjPEyf8OV95dVVJsfyG4Y/TG+6IkrWFjCtG2X3JcTwz4pmy406GUJWCr2TIMSTt/FnLlygGyoUnryDzi69ycXAvGbJMkeGb/nrubLiYIAwZnDDnMeEAIoQK15x1DL94ZV/pnvnm8EcZp8nMS7oORy9pBFWy40P8ZfFSLglmSEhFi1wPtmbQG3Fa1frOIsZGRodIXQulbtYNDGjzrLvGrIkU4tOzV9vIapoAhzzJGdPo4JNkn7SzNnhmtjBlVINmzO3gdVnJBA3EHYCik2a1M1ghOjqWLZTWefy6+TQ2Ja5g22QD+eFdMDVkrHOT5oEX+hAGOI4bRSVJGiUfPRZl3nS1OMq7yr2bJ5OX83LqEr7pfZl3O9vokX2sZRuX+t/jhGAbSS2SokCv7N3vudypXWQwStfpI+iIZkasHmHJ6YQIfmkp8XSKhpb9K8ASHcUf62PP8Dj943mmSFHQBJfLFpL4OIQkCHArsinN/ge0nQHao+94LHvupgph0RXhLrNeCMfIHTmOyazc9xIdxT3kSJH3Q/J+GKWIJ1nOQOk+kYf/lkuDO0iRw8cjpTmudu9iY+52hiaLJVsCBc8x63xufvjVisq//U4PKfI4IkZhHqCYpT+X4L8Vb6JThysWuT7y4+8dtKDqTNHS1ft+TvMdG8j+7QnzVj9+I0KnVhzVUrfO6MFtAxQDGNI2fFzy8YhltCo1dkghwhrZQ0HM2glXpl2RAr667HJXMCqt9IQmcphrfUWicw0ZyZNwhXTCNT1SyZPoXFNRTKxvLI/nCivaMrRkkqQ8F0dA8qNGtRKFSKFbAQ0KeEGOJD4nyGtlhzB/xOsS8nLq9/gT7/s0SbYUZSQISRKQiuZJ4qQOB2Zlws3kXfIyK2WAd8hrR7RLGKfWx5Tv24/m9Qp4UR6kQz6aoYoXF8cOyvd9OoJBmjDXZYoEyxkwvp0wSoaQUpshwnO6mgHaSu1lSbIsHGDrzhFeHZzk6V2jZkhRAxJaIBHmCQo5Cn6Rgh+yR7rxgpxZ6xORpsCOsItXBifwg5AP6xZCIFCXUIlcovAR/rVU8FGZVvlxBCYLQYVDvDv9IRL4eEGWQENe2zNI/8gY+SCcXuQqQl7S+JLg7JHb2TE8hR+EvDI4wba+sZI9M+/bcqd1IOX5uJDglf/8GAPjOfxAD1o5vLydibxP32iOXSNTXH37Ewd0YhtveoQzrr+fjTc9Yp3Xm5i6dUabf/oKHY0Jmp0cu1iCz7SwZfwwS7qmtysCL+tKhqWNAI/4UR/gkidRWq/R75iSDXOtr2j/wKfoaXBolAJBENIoBXoaHNo/8ClgusppV3OKY7qaaMkkODn/KB+b+gadOmxmWIIClf3+Sg72YsYPaqAUZRwuaSmQjmZZjgTxXsxQnOBTuci0GKUWlG8/oWkEIU8CjdLpp0cqzTXriuayMhTYqV3Gt0cDf7FDCuIhtyjSi4m/ky0EJSfXr214Zc7MyDyFDNDOjbn1JPDJkAeUDHmS+GwOzsMPjIBpIzl8dSILDfGi2bnOR6hGab48mn4seQpfdi6jL2yljUlGvU42Ja6gUaeYDJMV+8mqWSvVnPLYNZLDj+SjYkHVppRX8YB/fPswfrR2aEPuLop4FJ0MhUDNXKaTNHNTZZFNEJryE7tHs4xlTXR3oAWwcaQ3niuyO7LLc4SpQjBvhGSjqbcWdeuM4mJ1g+5SfDxe1WXkSKAyHVW4KElHSXUfy4NLNhKKx16nkz30RIsWYdRpI6U5PC1yV3rD/GW1j43SanuP4vi2gJW9R5H54KZZ2U7lPd74P3+WVPSgKtcrODyO9IC2e4hO6EBbl093+dHS1n5to4BTtuRWI2kd5dVwKTcH63FQXIJSViTACI2la5qkWOEU4qiqiEuOBEVcQhwmNUVyHkdSbvukpiMLppfihjiMBSkeCNfxWf8PGdQ22phkUNumFRIi4ybJVKhKmHNpFs3OxA9DQqVUKbe8NPd9/lo+mf4rPtZ5C3/R+jc823gqfU4PCc2XIrO405ToXFMaKi6FntHb8Wyh4gEvArtGcoznivSE/eRJEaqS9KJHR6SPWB7ZpDwXEcFBSjW9DrQANr7vB8fzRmJKBFRIec68UdUbqd1kWbwsKmckIueKyAsi8pKIXLeQbcU3/z0NF9LoBrR6RfZKR/QIE7PuQxzIdMAHPs9pv3URX01cwZC04zrK67KS16SXjgaP1q5evtP+CR4I1tLdPHuBYolo/ohrnzI/50i7Le/x9oT9ZDVpHnQVdW8OP/p4o3uY+b14SCtmf8oK8falXv5+XGL5MzKrqZIaw9f9DQxpc0kaKMRhWJu4PtjIjcEGbvA3kNVUaf8D2s5O7Wa3dkZJBk6FU3hJV7JXWyji4aIU8dirLTyna+Z3JGU0SY7tuoQp0hTxmCLNdl1Ck+QQ4KFwHZfxP3h/4QYuKf5F6fueI6xoS3NzsB5XwCFAI0fqoNwcrJ91TjIJl2vOOqakmB1H0z/707NoySRY0pSq2P7exgtJS3HOaHyiEERp/KbukRkaTjM4Wax4wPdEyu99ozn6nR4SatQguuK2In3E8jmsruYURoVIKQTh/B20MuL7PuebNWlhaJTClzSl5o2qytssP0dW2PTNyaJJ7RYRF/hfmDrcO4F/F5F7VfW5hWgv1qF62F2HNnyMC7J30SP9TLUcS3M6YerMlK35OBNgw4f58k/PqFhX8bbju8kA10Wvw6VckmTXZBc9ziitLa04kxnw86WV+rEcjiKzhsZmZgfOhY8T6aIdOvH+pyMX19ToYTqTrXyRqxnSFHKkeFWXsZxBWmWqJL8US/M4ZdvHw6AvhctZX7y+ov2n9egKFfB4fRXAjcEGbgw2VIimGh06d06Hsjk4jy9436ZPO8iSJEOhFAE9FK6b5XxmslO76JIRXtVlpc8y5OnTNjwHiqERSo2PCyDlCl3NKfpGc9wYXIAr8FH3hzSQZSI0DurGYEOFcKvrCE997px57ZhL5PPnchINHVdzXcuPKha5cuzZ9LY/wsB4jqO7pivNThXMNSx/wBudOaVvLM935Hw+7dxMVwM0ptyK4oO9D063vz8Zo/mI7/urb3+CqUJAyhOWNKVpySRMOZQ5oiorbPrWYtGkdovI6cDnVPWc6P1nAFT1b+b7zuGmdi/6RXvlckBh0dQYAmjppTA5TKI4YvrRSiklOWB6kemUujTI7MSDACiQIEkxUkibHdHM5cxCKEUkeVxS0eLdYuSMXJQA40QSBAgwrA1Gcw/YqZ0EeCTxS07hKvdurvLuiWaApp1jAY9RbeTT/pUHdAjzUV61d8cMpzXXdnM5t5nE6eRa9t3Y6ZU7sy87l/FL7xQKxYBCqBQD09sXYElTkn1TZi6lvcFjeMo4gRVtaYYm8kwUZncSLli3jE0XnzzvsZYXhjtQqvb+tm9MuhSCsOIBP1Xw6W5Oc9sVp5VpJW6v6KwdavtH4jiOVJsLhE3tPkQWkzO6EDhXVS+P3v8BcKqqXjXfdw7XGb0pKP/PP2Ol/h7toHn7faR1yrgCVRKE5EgwFDYjIqQ0R6czgYvi47AtXE6v7KNJckzodC88FgiNPx/WDKudoZKTCnAQ2O93ntbVvFNep0ly5DTBEM0IwgQZUKVJcnM+7GNncIyzi6QWKeDxkq7cr1PYH7GGWrzOSoWowBylDLUDkXCEnpYU+yaL5IMQzxE0NM62MelWFPErd3o76eIf5XxGV/xmaVgq7vA0Js1cyit7J0tF81oyidK6MgVOXtUOGvKr10dKtanOf9fS/TqimEPtXM21PRz8+qPDbf9I7GcRdyitMzpEFpMz+s/AOTOc0XtU9RMztrsCuAJg1apVp7z++utVt/XNyhnX319arDmWLbJ7NGvSn1VZ3dl4SL3K8n3FqCqj2SI/+9OzjrjtB/PQmc+m5/vGeftS45y39Y2VqtAG0b0fO6/jl7Ys+HHsz86FbPNQWMQP+DcT1hkdIotmzggzT9Rb9n4lsHvmRqp6E3ATmMioOqa9NSgfY49rzvSP5xCVgxrXn29fMQs5Xn8w0jPz2dSYdEsK00nXwY/kzZNRjZ647EY1jmN/di6WuQ4r82OpBYspm+7fgbeJyBoRSQIXA/fW2Ka3FOWZehplUHU3p9n8+6dw2xWnHdIDaOa+DiZjaqGZz6bLz1hT+nxJU5IgVAJVljQlacl4hArNaa9qx7EYz53FUmsWzTAdgIisB76G0df8lqp+8QDbDwKHM063BNi/zs3CU1UbnFRTi9PYtlRcL6WBnw8nR/rC/ETyjdgwz77G3qBpR+Q8zGdT+edoaLI6xHE18PNayI5JMtOihWxGkpnsYR7H4dj5hq7DEabu/k8skA17VfXcI2VMPbConFG1EZFHVfXdB97S2mBteOu3b21YXDbUG4tpmM5isVgsdYp1RhaLxWKpOfXujG6qtQFYG2KsDbVvH6wNMYvBhrqirueMLBaLxbI4qPfIyGKxWCyLgLp1RtVUCC9r81siMiAiz5R91iEiPxGRX0c/2xew/V4ReUBEnheRZ0XkmhrYkBaRX4nI1siGz0efrxGRX0Y2fC9aa7agiIgrIk+IyJZa2CAir4nI0yLypIg8Gn1WtWsRtdcmIt8XkW3RfXF6tWwQkeOiY49fYyJybQ3OwSeje/EZEbktukerfj/WO3XpjMoUwn8beAewUUTeUYWmvw3MXHtwHXCfqr4NuI8jI/49Hz7wJ6r6duA04OPRcVfThjxwlqquBdYB54rIacD1wKbIhmHgsgW0IeYa4Pmy97Ww4TdVdV1ZGnE1rwXADcD/U9XjgbWY81EVG1T1hejY1wGnAFPAv1SrfQARWQFcDbxbVU/ErHG8mNrcC/WNqtbdCzgd+FHZ+88An6lS20cBz5S9fwFYFv2+DHihiufhHkzJjprYADQAjwOnYhYYenNdnwVqeyXmQXcWsAWjJVZtG14Dlsz4rGrXAmgBXiWaO66FDWVt/hbw8xqcgxXADqADI4+2BTin2veCfWl9RkZM34AxO6PPakGPqu4BiH5WRRRMRI4CTgJ+WW0bouGxJ4EB4CfAy8CIqvrRJtW4Hl8DPg2luhWdNbBBgR+LyGORADBU91ocDQwCt0TDlTeLSGOVbYi5GLgt+r1q7avqLuArwHZgDzAKPEb174W6p16d0VyKunWTVigiTcBdwLWquqCyN3OhqoGaoZmVwHuAt8+12UK1LyLnAQOq+lj5x9W0IeJ9qnoyZrj44yLyGwvc3kw84GTgG6p6EjDJwg8LziKajzkfuLMGbbcDHwTWAMuBRsz1mEndPB9qRb06o4NSCK8S/SKyDCD6ObCQjYlIAuOIvquqd9fChhhVHQEexMxftYlILGO90NfjfcD5IvIacDtmqO5rVbYBVd0d/RzAzJW8h+pei53ATlX9ZfT++xjnVO374beBx1W1P3pfzfY/ALyqqoOqWgTuBt5Lle8FS/06o8WkEH4v8JHo949g5nEWBBER4B+A51X1qzWyoUtE2qLfM5iHwfPAA8CF1bBBVT+jqitV9SjMtb9fVS+ppg0i0igizfHvmDmTZ6jitVDVPmCHiBwXffSfgOeqaUPERqaH6Khy+9uB00SkIfr/EZ+Dqt0LlohaT1rV6gWsB17EzFf8eZXavA0zLl3E9Eovw8xV3Af8OvrZsYDtn4EZbngKeDJ6ra+yDe8CnohseAb4bPT50cCvgJcwwzWpKl2TM4Et1bYhamtr9Ho2vgereS2i9tYBj0bX4wdAe5XvhwZgCGgt+6za5+DzwLbofvwnIFWr+7GeX1aBwWKxWCw1p16H6SwWi8WyiLDOyGKxWCw1xzoji8VisdQc64wsFovFUnOsM7JYLBZLzbHOyFI3iMgFIqIicnytbbFYLJVYZ2SpJzYCD2MWuloslkWEdUaWuiDS43sfZqHxxdFnjoj8fVTLZouI/FBELoz+doqIPBSJmP4olqexWCwLg3VGlnrhdzF1e14E9onIycAGTEmPdwKXY0oFxPp9XwcuVNVTgG8BX6yF0RZLveAdeBOL5S3BRowYKhhx1I1AArhTVUOgT0QeiP5+HHAi8BMjV4aLkXGyWCwLhHVGlrc8ItKJUeY+UUQU41wUo5Q951eAZ1X19CqZaLHUPXaYzlIPXAh8R1VXq+pRqtqLqXC6F/hQNHfUgxFNBVNptEtESsN2InJCLQy3WOoF64ws9cBGZkdBd2GKqe3EqDVvxlS9HVXVAsaBXS8iWzHq5u+tnrkWS/1hVbstdY2INKnqRDSU9ytM9dW+WttlsdQbds7IUu9siYr9JYG/so7IYqkNNjKyWCwWS82xc0YWi8ViqTnWGVksFoul5lhnZLFYLJaaY52RxWKxWGqOdUYWi8ViqTnWGVksFoul5vx/n3tPgVGBPcwAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#绘制一个展示船票Fare, 与乘客年龄和性别的散点图\n", + "lm = sns.lmplot(x='Age',y='Fare',data=titanic,hue='Sex',fit_reg=False)\n", + "lm.set(title='Fare x Age')\n", + "#设置坐标轴取值范围\n", + "axes = lm.axes\n", + "axes[0,0].set_ylim(-5,)\n", + "axes[0,0].set_xlim(-5,85)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "342" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#有多少人生还?\n", + "titanic.Survived.sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYgAAAEWCAYAAAB8LwAVAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAG31JREFUeJzt3Xu0XnV95/H3h4uCgFwkaEzAoMYLdTTSlNLadixai1gLtlhlrFILpV3iGu3YVrC26iyZwVmtqK0yglKBiop4o2hVRK2lMwJBIxfREiUjMSlE5CKoKPE7f+zfgYdk55wnl+c8z8l5v9ba69n7t3977+/vycn5nt9v31JVSJK0sZ3GHYAkaTKZICRJvUwQkqReJghJUi8ThCSplwlCktTLBCFtoyS7JKkkS7ZhH59N8pLtF5W07UwQ2i6SrE7yoyR3D0yPnoXjnphkQzveXUm+muSoUR93SyS5PMkfbFT27CSrp5ar6jlV9f4Z9rPNiUjaEiYIbU/Pr6o9B6a1W7qDJDtvxXH/tar2BPYFzgM+nGTvrdjPnJdkl0nen+YWE4RGKslOSS5K8h9J7kjyxSRPHlj/j0nemeTTSe4BfjXJbknemuTmJLckeVeS3WY6VlVtAM4BHgYcnOQRST6VZH2S25P8U5JF7bjHJblio1hfm+SiNj9tDElOaW36LnD8dvie7u9lJHlCki8luTPJ95Jc0Kp9qX1e33pMvzvVE0nyuiT/AZzd9vEnSVYluS3Jx5MsHDjWc5P8e9v/3yX5t4Fjn9iO/Y4k3wden2Rpki+0fX0vyfmDCTjJmiR/luS6FtdZSR6Z5DOtV/fZJPts63ek2WeC0Gy4BFgKPAq4Djh/o/X/BXgTsBfwf4G/AQ4Gntq2WwL85UwHaX/tngD8APgW3c/32cBBwGOAnwJvb9U/DjwxydKBXfz+QGybjSHJbwGvAo4AngD85kyxbaHTgE/S9YgWA+9s5b/WPn+u9dA+0pYXA3vStfMVSZ4D/HfgWGARsBZ4f4v9AOBC4M+B/YGbgMM2Ov4vAzcAC4C3AAHeDCwEDgEeC/zVRtv8Dt338STgd1v8fwEcADwUOHmrvgmNV1U5OW3zBKwG7gbuaNPHN1Nvf6CAPdryPwLnDKzfCfgx8JiBsl8FbtzM/k4E7mvH/B7wf4AjNlN3ObB+YPls4E1tflnbfteZYqAbxnrzwLpDWpuWbOa4lwM/HPhu7mjf1eqN6vxBm78AOBNYtNF+dtn4OMCzW6wPGSg7F/gfA8sPBzbQJZI/pBuSm1oXYN3AsU8Evj3Dv/WxwFUDy2uAFw0sfwL4u4HlPwUuGvfPqNOWT/YgtD0dU1X7tOkY6M4pJPlfSb6d5C5gVau7/8B2Nw/MP4ruL86vtSGpO+h6IAdMc9zL2zH3r6pfrqrPt2PvkeQ9Sb7Tjv35jY57LjB15dDvAx+qqp8OEcOjN4r5/w3x3bxi4LvZBzhmmrqvoUtUK5Jcm2SmIaxbquonA8uPHoypqu4CbqfrTTwo9up+g6/ZaH+DbSPJo5JcmOS77Xt8Hw/+HgFuGZj/Uc/ynjO0QRPIBKFRexlwFN3ww97A41t5BuoMPlL4FuAnwBMHfqHuXVVbc9L5L+iGiQ6rqoe3GB44aNXlAEmeARzHA8NLM8WwDjhwYFcHbUVsm1VV66rqxKpaSDc0c1aSg3nw9/SgTTZaXks3pAZAkr3ohqu+Sxf74oF1oUsc0+3vLcC9wH9q3+Mf8OB/P+2gTBAatb3ofrncRnfy+LTpKld3ovk9wNuSLEhncRtX35pj/xC4PckjgL/uqXM+3XDOPVX15SFjuBD4wyRPSrIH8IatiG2zkvze1Ml0uuGoAja0uG6jOwcwnQ8AJyR5apKHAv+TblhpDV1P6NAkz2/nbF5Fd65hOnsB9wB3JjkQ+LOtapjmHBOERu0f6P6iXQtcT3eOYCavoRsiuRK4E/gs3YniLfVWul7Lbe24/9xT5zzgKWx64nyzMVTVP9GdOP4X4N+BS7citun8InBVu6rro8DJVfWdtu4NwAVt6Ot3+jauqk/TnaT+GF2P4SDaUFpV3QK8iO67uQ14HPBVuiS+OW+gO5F9J3Ax8JFp6moHkm4IUpqfWg/gVuApVXXTuOOZbenuO1kLHFtV/zrueDRZ7EFovjsZ+Lf5lBySHJlk7zb89Fd0V4FdOeawNIG8S1LzVpI1dPdGHD3uWGbZr9DdF/EQumG/Y6pquiEmzVMOMUmSeo1siKk9quDKJF9Lcn2SN7Xy9yW5KcnKNi1r5Wm3969Kck2SQ0cVmyRpZqMcYrqX7o7Wu5PsClyeZOoqkj+vqos2qv9cuqtEltJdxXFm+9ys/fffv5YsWbJ9o5akHdzVV1/9vaqa6fLm0SWIdofm3W1x1zZNN551NHBe2+7LSfZJsrCq1m1ugyVLlrBixYrtFrMkzQdJhrn7f7RXMbXHLKyku4zw0qqaenrmaW0Y6Yx2JQV0d3MO3uK/hk3v8CTJSUlWJFmxfv36UYYvSfPaSBNEVW2oqmV0t/YfluQpwKl0T3z8BWA/4LWtet+t+5v0OKrqrKpaXlXLFyyYsYckSdpKs3IfRFXdAXwROLI9Z6baZXX/wAOPGl7Dg59vs5juBh5J0hiM8iqmBVMvCUmyO91jib8x9eKS9pCwY+jeDwDdLfwva1czHQ7cOd35B0nSaI3yKqaFwLntVv6dgAur6pIkn0+ygG5IaSXwJ63+p+ie+rmK7gFrLx9hbJKkGYzyKqZrgKf3lB/RU33qqiffOiVJE8JnMUmSepkgJEm9TBCSpF7z9mmuS075ZG/56tOfN8uRSNJksgchSeplgpAk9TJBSJJ6mSAkSb1MEJKkXiYISVIvE4QkqZcJQpLUywQhSeplgpAk9TJBSJJ6mSAkSb1MEJKkXiYISVIvE4QkqZcJQpLUywQhSeplgpAk9RpZgkiyW5Irk3wtyfVJ3tTKD05yRZIbk3woyUNa+UPb8qq2fsmoYpMkzWyUPYh7gSOq6mnAMuDIJIcDbwHOqKqlwO3ACa3+CcDtVfV44IxWT5I0JiNLENW5uy3u2qYCjgAuauXnAse0+aPbMm39s5JkVPFJkqY30nMQSXZOshK4FbgU+BZwR1Xd16qsARa1+UXAzQBt/Z3AI3r2eVKSFUlWrF+/fpThS9K8NtIEUVUbqmoZsBg4DHhyX7X22ddbqE0Kqs6qquVVtXzBggXbL1hJ0oPMylVMVXUH8EXgcGCfJLu0VYuBtW1+DXAgQFu/N/D92YhPkrSpUV7FtCDJPm1+d+DZwA3AF4BjW7XjgU+0+YvbMm3956tqkx6EJGl27DJzla22EDg3yc50iejCqrokydeBDyZ5M/BV4L2t/nuB85Osous5vHiEsUmSZjCyBFFV1wBP7yn/Nt35iI3Lfwy8cFTxSJK2jHdSS5J6mSAkSb1MEJKkXiYISVIvE4QkqZcJQpLUywQhSeplgpAk9TJBSJJ6mSAkSb1MEJKkXiYISVIvE4QkqZcJQpLUywQhSeplgpAk9TJBSJJ6mSAkSb1MEJKkXiYISVIvE4QkqZcJQpLUa2QJIsmBSb6Q5IYk1yd5VSt/Y5LvJlnZpqMGtjk1yaok30zym6OKTZI0s11GuO/7gNdU1VeS7AVcneTStu6MqvqbwcpJDgFeDPwc8Gjgc0meUFUbRhijJGkzRtaDqKp1VfWVNv8D4AZg0TSbHA18sKruraqbgFXAYaOKT5I0vVk5B5FkCfB04IpW9Mok1yQ5J8m+rWwRcPPAZmvoSShJTkqyIsmK9evXjzBqSZrfRp4gkuwJfAR4dVXdBZwJPA5YBqwD/naqas/mtUlB1VlVtbyqli9YsGBEUUuSRpogkuxKlxzeX1UfBaiqW6pqQ1X9DDibB4aR1gAHDmy+GFg7yvgkSZs3yquYArwXuKGq3jpQvnCg2guA69r8xcCLkzw0ycHAUuDKUcUnSZreKK9iegbwUuDaJCtb2euA45Isoxs+Wg38MUBVXZ/kQuDrdFdAnewVTJI0PiNLEFV1Of3nFT41zTanAaeNKiZJ0vC8k1qS1MsEIUnqZYKQJPUyQUiSepkgJEm9TBCSpF4mCElSLxOEJKmXCUKS1MsEIUnqZYKQJPUyQUiSepkgJEm9TBCSpF4mCElSr6ESRJKnjDoQSdJkGbYH8b+TXJnkFUn2GWlEkqSJMFSCqKpfAV4CHAisSHJBkt8YaWSSpLEa+hxEVd0IvB54LfCfgXck+UaS3xlVcJKk8Rn2HMRTk5wB3AAcATy/qp7c5s8YYXySpDHZZch6fw+cDbyuqn40VVhVa5O8fiSRSZLGatghpqOAC6aSQ5KdkjwMoKrO79sgyYFJvpDkhiTXJ3lVK98vyaVJbmyf+7byJHlHklVJrkly6LY3T5K0tYZNEJ8Ddh9Yflgrm859wGvaUNThwMlJDgFOAS6rqqXAZW0Z4LnA0jadBJw5ZGySpBEYNkHsVlV3Ty20+YdNt0FVrauqr7T5H9Cdv1gEHA2c26qdCxzT5o8GzqvOl4F9kiwcuiWSpO1q2ARxz+CQT5KfB340Tf0HSbIEeDpwBfDIqloHXRIBDmjVFgE3D2y2ppVJksZg2JPUrwY+nGRtW14IvGiYDZPsCXwEeHVV3ZVks1V7yqpnfyfRDUFx0EEHDROCJGkrDJUgquqqJE8Cnkj3i/wbVfXTmbZLsitdcnh/VX20Fd+SZGFVrWtDSLe28jV0N+JNWQysZSNVdRZwFsDy5cs3SSCSpO1jSx7W9wvAU+mGio5L8rLpKqfrKrwXuKGq3jqw6mLg+DZ/PPCJgfKXtauZDgfunBqKkiTNvqF6EEnOBx4HrAQ2tOICzptms2cALwWuTbKylb0OOB24MMkJwHeAF7Z1n6K7nHYV8EPg5cM3Q5K0vQ17DmI5cEhVDT2kU1WX039eAeBZPfULOHnY/UuSRmvYIabrgEeNMhBJ0mQZtgexP/D1JFcC904VVtVvjyQqSdLYDZsg3jjKICRJk2fYy1z/JcljgKVV9bn2HKadRxuaJGmchn3c9x8BFwHvbkWLgI+PKihJ0vgNe5L6ZLrLVu+C+18edMC0W0iS5rRhE8S9VfWTqYUku9DzGAxJ0o5j2JPU/5LkdcDu7V3UrwD+aXRhjc+SUz65Sdnq0583hkgkabyG7UGcAqwHrgX+mO6uZ98kJ0k7sGGvYvoZ3StHzx5tOJKkSTHss5huouecQ1U9drtHJEmaCFvyLKYpu9E9YG+/7R+OJGlSDHUOoqpuG5i+W1VvA44YcWySpDEadojp0IHFneh6FHuNJCJJ0kQYdojpbwfm7wNWA7+33aORJE2MYa9i+vVRByJJmizDDjH9t+nWb/RKUUnSDmBLrmL6Bbr3RgM8H/gScPMogpIkjd+WvDDo0Kr6AUCSNwIfrqoTRxWYJGm8hn3UxkHATwaWfwIs2e7RSJImxrA9iPOBK5N8jO6O6hcA540sKknS2A17FdNpSf4Z+NVW9PKq+urowpIkjduwQ0wADwPuqqq3A2uSHDxd5STnJLk1yXUDZW9M8t0kK9t01MC6U5OsSvLNJL+5xS2RJG1Xw75y9A3Aa4FTW9GuwD/OsNn7gCN7ys+oqmVt+lTb/yHAi4Gfa9u8K4nvvJakMRq2B/EC4LeBewCqai0zPGqjqr4EfH/I/R8NfLCq7q2qm4BVwGFDbitJGoFhE8RPqqpoj/xOssc2HPOVSa5pQ1D7trJFPPieijWtbBNJTkqyIsmK9evXb0MYkqTpDJsgLkzybmCfJH8EfI6te3nQmcDjgGXAOh54xlN66va+87qqzqqq5VW1fMGCBVsRgiRpGMNexfQ37V3UdwFPBP66qi7d0oNV1S1T80nOBi5pi2uAAweqLgbWbun+JUnbz4wJop0s/kxVPRvY4qSw0b4WVtW6tvgCYOoKp4uBC5K8FXg0sBS4cluOJUnaNjMmiKrakOSHSfauqjuH3XGSDwDPBPZPsgZ4A/DMJMvoho9WA3/cjnF9kguBr9M9TvzkqtqwpY2RJG0/w95J/WPg2iSX0q5kAqiq/7q5DarquJ7i905T/zTgtCHjkSSN2LAJ4pNtkiTNE9MmiCQHVdV3qurc2QpIkjQZZrrM9eNTM0k+MuJYJEkTZKYhpsH7Ex47ykAm2ZJTNh1dW33688YQiSTNnpl6ELWZeUnSDm6mHsTTktxF15PYvc3TlquqHj7S6CRJYzNtgqgqn6gqSfPUlrwPQpI0j5ggJEm9TBCSpF4mCElSLxOEJKmXCUKS1MsEIUnqZYKQJPUyQUiSepkgJEm9TBCSpF4mCElSLxOEJKmXCUKS1MsEIUnqNbIEkeScJLcmuW6gbL8klya5sX3u28qT5B1JViW5Jsmho4pLkjScUfYg3gccuVHZKcBlVbUUuKwtAzwXWNqmk4AzRxiXJGkII0sQVfUl4PsbFR8NnNvmzwWOGSg/rzpfBvZJsnBUsUmSZjbb5yAeWVXrANrnAa18EXDzQL01rWwTSU5KsiLJivXr1480WEmazyblJHV6yqqvYlWdVVXLq2r5ggULRhyWJM1fs50gbpkaOmqft7byNcCBA/UWA2tnOTZJ0oDZThAXA8e3+eOBTwyUv6xdzXQ4cOfUUJQkaTx2GdWOk3wAeCawf5I1wBuA04ELk5wAfAd4Yav+KeAoYBXwQ+Dlo4pLkjSckSWIqjpuM6ue1VO3gJNHFYskactNyklqSdKEMUFIknqZICRJvUwQkqReJghJUi8ThCSplwlCktTLBCFJ6mWCkCT1MkFIknqZICRJvUwQkqReJghJUi8ThCSplwlCktTLBCFJ6jWyFwbt6Jac8slNylaf/rwxRCJJo2EPQpLUywQhSeplgpAk9TJBSJJ6mSAkSb3GchVTktXAD4ANwH1VtTzJfsCHgCXAauD3qur2ccQnSRpvD+LXq2pZVS1vy6cAl1XVUuCytixJGpNJGmI6Gji3zZ8LHDPGWCRp3htXgijgs0muTnJSK3tkVa0DaJ8H9G2Y5KQkK5KsWL9+/SyFK0nzz7jupH5GVa1NcgBwaZJvDLthVZ0FnAWwfPnyGlWAkjTfjaUHUVVr2+etwMeAw4BbkiwEaJ+3jiM2SVJn1hNEkj2S7DU1DzwHuA64GDi+VTse+MRsxyZJesA4hpgeCXwsydTxL6iqTye5CrgwyQnAd4AXjiE2SVIz6wmiqr4NPK2n/DbgWbMdjySp3yRd5ipJmiC+D2LEfG+EpLnKHoQkqZcJQpLUywQhSeplgpAk9TJBSJJ6eRXTBPGKJ0mTxB6EJKmXCUKS1MsEIUnqZYKQJPUyQUiSepkgJEm9vMx1DPouZ5WkSWMPQpLUyx7EdjSKnoE3z0kaF3sQkqReJghJUi8ThCSpl+cg5qBhz0tsS71t3aekuc8EIW3EJCh1Ji5BJDkSeDuwM/Ceqjp9zCHNCcNeQTWX78EYNnZ/mUvbx0QliCQ7A+8EfgNYA1yV5OKq+vp4I5M0n9iL7ExUggAOA1ZV1bcBknwQOBowQYzBtvRKJu0/01yIUZo0qapxx3C/JMcCR1bViW35pcAvVtUrB+qcBJzUFp8IfHMrD7c/8L1tCHfS2J7JtSO1BXas9uxIbYHh2/OYqlowU6VJ60Gkp+xBGayqzgLO2uYDJSuqavm27mdS2J7JtSO1BXas9uxIbYHt355Juw9iDXDgwPJiYO2YYpGkeW3SEsRVwNIkByd5CPBi4OIxxyRJ89JEDTFV1X1JXgl8hu4y13Oq6voRHW6bh6kmjO2ZXDtSW2DHas+O1BbYzu2ZqJPUkqTJMWlDTJKkCWGCkCT1mpcJIsmRSb6ZZFWSU8YdzzCSnJPk1iTXDZTtl+TSJDe2z31beZK8o7XvmiSHji/yTSU5MMkXktyQ5Pokr2rlc7U9uyW5MsnXWnve1MoPTnJFa8+H2oUXJHloW17V1i8ZZ/x9kuyc5KtJLmnLc7ktq5Ncm2RlkhWtbK7+rO2T5KIk32j/f35plG2Zdwli4HEezwUOAY5Lcsh4oxrK+4AjNyo7BbisqpYCl7Vl6Nq2tE0nAWfOUozDug94TVU9GTgcOLn9G8zV9twLHFFVTwOWAUcmORx4C3BGa8/twAmt/gnA7VX1eOCMVm/SvAq4YWB5LrcF4NeratnAPQJz9Wft7cCnq+pJwNPo/o1G15aqmlcT8EvAZwaWTwVOHXdcQ8a+BLhuYPmbwMI2vxD4Zpt/N3BcX71JnIBP0D1/a863B3gY8BXgF+nuaN2lld//c0d3ld4vtfldWr2MO/aBNixuv2iOAC6hu4F1TralxbUa2H+jsjn3swY8HLhp4+93lG2Zdz0IYBFw88DymlY2Fz2yqtYBtM8DWvmcaWMbkng6cAVzuD1tSGYlcCtwKfAt4I6quq9VGYz5/va09XcCj5jdiKf1NuAvgJ+15Ucwd9sC3dMYPpvk6vaoHpibP2uPBdYD/9CG/96TZA9G2Jb5mCBmfJzHDmBOtDHJnsBHgFdX1V3TVe0pm6j2VNWGqlpG99f3YcCT+6q1z4ltT5LfAm6tqqsHi3uqTnxbBjyjqg6lG3I5OcmvTVN3ktuzC3AocGZVPR24hweGk/psc1vmY4LYkR7ncUuShQDt89ZWPvFtTLIrXXJ4f1V9tBXP2fZMqao7gC/SnVvZJ8nUzaiDMd/fnrZ+b+D7sxvpZj0D+O0kq4EP0g0zvY252RYAqmpt+7wV+BhdAp+LP2trgDVVdUVbvoguYYysLfMxQexIj/O4GDi+zR9PN5Y/Vf6ydhXD4cCdU13QSZAkwHuBG6rqrQOr5mp7FiTZp83vDjyb7uThF4BjW7WN2zPVzmOBz1cbJB63qjq1qhZX1RK6/xufr6qXMAfbApBkjyR7Tc0DzwGuYw7+rFXVfwA3J3liK3oW3asQRteWcZ94GdPJnqOAf6cbJ/7LccczZMwfANYBP6X7y+AEurHey4Ab2+d+rW7ortT6FnAtsHzc8W/Ull+h6+peA6xs01FzuD1PBb7a2nMd8Net/LHAlcAq4MPAQ1v5bm15VVv/2HG3YTPteiZwyVxuS4v7a226fur/+xz+WVsGrGg/ax8H9h1lW3zUhiSp13wcYpIkDcEEIUnqZYKQJPUyQUiSepkgJEm9JuqNctJckGQD3WWDU46pqtVjCkcaGS9zlbZQkruras+t2G7nqtowipikUXCISdoOkixJ8q9JvtKmX27lz0z37osLaL2OJL+f7v0RK5O8uz2CXpo4DjFJW2739uRWgJuq6gV0z7/5jar6cZKldHe+T7174DDgKVV1U5InAy+ie4DcT5O8C3gJcN4st0GakQlC2nI/qu7JrYN2Bf4+yTJgA/CEgXVXVtVNbf5ZwM8DV3WPpGJ3Hni4mjRRTBDS9vGnwC10b/naCfjxwLp7BuYDnFtVp85ibNJW8RyEtH3sDayrqp8BLwU2d17hMuDYJAfA/e9GfswsxShtEROEtH28Czg+yZfphpfu6atUVV8HXk/3hrNr6N4+t3DWopS2gJe5SpJ62YOQJPUyQUiSepkgJEm9TBCSpF4mCElSLxOEJKmXCUKS1Ov/A6PmXhXp2lVVAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#绘制一个展示船票价格的直方图\n", + "df = titanic.Fare.sort_values(ascending=False)\n", + "plt.hist(df,bins=(np.arange(0,600,10)))\n", + "plt.xlabel('Fare')\n", + "plt.ylabel('Frequency')\n", + "plt.title('Fare Payed Histrogram')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/实验 探索Chipotle快餐数据/8.探索Apple公司股价数据.ipynb b/实验 探索Chipotle快餐数据/8.探索Apple公司股价数据.ipynb new file mode 100644 index 0000000..d017184 --- /dev/null +++ b/实验 探索Chipotle快餐数据/8.探索Apple公司股价数据.ipynb @@ -0,0 +1,767 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "# -- 读取数据并存为一个名叫apple的数据框\n", + "# -- 查看每一列的数据类型\n", + "# -- 将Date这个列转换为datetime类型\n", + "# -- 将Date设置为索引\n", + "# -- 有重复的日期吗?\n", + "# -- 将index设置为升序\n", + "# -- 找到每个月的最后一个交易日(business day)\n", + "# -- 数据集中最早的日期和最晚的日期相差多少天?\n", + "# -- 在数据中一共有多少个月?\n", + "# -- 按照时间顺序可视化Adj Close值" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "#读取数据并存为一个名叫apple的数据框\n", + "apple = pd.read_csv('data/appl_1980_2014.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Date object\n", + "Open float64\n", + "High float64\n", + "Low float64\n", + "Close float64\n", + "Volume int64\n", + "Adj Close float64\n", + "dtype: object" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#查看每一列的数据类型\n", + "apple.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
DateOpenHighLowCloseVolumeAdj Close
02014-07-0896.2796.8093.9295.356513000095.35
12014-07-0794.1495.9994.1095.975630540095.97
22014-07-0393.6794.1093.2094.032289180094.03
32014-07-0293.8794.0693.0993.482842090093.48
42014-07-0193.5294.0793.1393.523817020093.52
\n", + "
" + ], + "text/plain": [ + " Date Open High Low Close Volume Adj Close\n", + "0 2014-07-08 96.27 96.80 93.92 95.35 65130000 95.35\n", + "1 2014-07-07 94.14 95.99 94.10 95.97 56305400 95.97\n", + "2 2014-07-03 93.67 94.10 93.20 94.03 22891800 94.03\n", + "3 2014-07-02 93.87 94.06 93.09 93.48 28420900 93.48\n", + "4 2014-07-01 93.52 94.07 93.13 93.52 38170200 93.52" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "apple.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
DateOpenHighLowCloseVolumeAdj Close
02014-07-0896.2796.8093.9295.356513000095.35
12014-07-0794.1495.9994.1095.975630540095.97
22014-07-0393.6794.1093.2094.032289180094.03
32014-07-0293.8794.0693.0993.482842090093.48
42014-07-0193.5294.0793.1393.523817020093.52
\n", + "
" + ], + "text/plain": [ + " Date Open High Low Close Volume Adj Close\n", + "0 2014-07-08 96.27 96.80 93.92 95.35 65130000 95.35\n", + "1 2014-07-07 94.14 95.99 94.10 95.97 56305400 95.97\n", + "2 2014-07-03 93.67 94.10 93.20 94.03 22891800 94.03\n", + "3 2014-07-02 93.87 94.06 93.09 93.48 28420900 93.48\n", + "4 2014-07-01 93.52 94.07 93.13 93.52 38170200 93.52" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "apple['Date'] = pd.to_datetime(apple['Date'])\n", + "apple.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
OpenHighLowCloseVolumeAdj Close
Date
2014-07-0896.2796.8093.9295.356513000095.35
2014-07-0794.1495.9994.1095.975630540095.97
2014-07-0393.6794.1093.2094.032289180094.03
2014-07-0293.8794.0693.0993.482842090093.48
2014-07-0193.5294.0793.1393.523817020093.52
\n", + "
" + ], + "text/plain": [ + " Open High Low Close Volume Adj Close\n", + "Date \n", + "2014-07-08 96.27 96.80 93.92 95.35 65130000 95.35\n", + "2014-07-07 94.14 95.99 94.10 95.97 56305400 95.97\n", + "2014-07-03 93.67 94.10 93.20 94.03 22891800 94.03\n", + "2014-07-02 93.87 94.06 93.09 93.48 28420900 93.48\n", + "2014-07-01 93.52 94.07 93.13 93.52 38170200 93.52" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将Date设置为索引\n", + "apple = apple.set_index('Date')\n", + "apple.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#有重复的日期吗?\n", + "apple.index.is_unique" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
OpenHighLowCloseVolumeAdj Close
Date
1980-12-1228.7528.8728.7528.751172584000.45
1980-12-1527.3827.3827.2527.25439712000.42
1980-12-1625.3725.3725.2525.25264320000.39
1980-12-1725.8726.0025.8725.87216104000.40
1980-12-1826.6326.7526.6326.63183624000.41
\n", + "
" + ], + "text/plain": [ + " Open High Low Close Volume Adj Close\n", + "Date \n", + "1980-12-12 28.75 28.87 28.75 28.75 117258400 0.45\n", + "1980-12-15 27.38 27.38 27.25 27.25 43971200 0.42\n", + "1980-12-16 25.37 25.37 25.25 25.25 26432000 0.39\n", + "1980-12-17 25.87 26.00 25.87 25.87 21610400 0.40\n", + "1980-12-18 26.63 26.75 26.63 26.63 18362400 0.41" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#将index设置为升序\n", + "apple = apple.sort_index(ascending=True)\n", + "apple.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "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", + "
OpenHighLowCloseVolumeAdj Close
Date
1980-12-3130.48153830.56769230.44307730.4430772.586252e+070.473077
1981-01-3031.75476231.82666731.65476231.6547627.249867e+060.493810
1981-02-2726.48000026.57210526.40789526.4078954.231832e+060.411053
1981-03-3124.93772725.01681824.83636424.8363647.962691e+060.387727
1981-04-3027.28666727.36809527.22714327.2271436.392000e+060.423333
\n", + "
" + ], + "text/plain": [ + " Open High Low Close Volume \\\n", + "Date \n", + "1980-12-31 30.481538 30.567692 30.443077 30.443077 2.586252e+07 \n", + "1981-01-30 31.754762 31.826667 31.654762 31.654762 7.249867e+06 \n", + "1981-02-27 26.480000 26.572105 26.407895 26.407895 4.231832e+06 \n", + "1981-03-31 24.937727 25.016818 24.836364 24.836364 7.962691e+06 \n", + "1981-04-30 27.286667 27.368095 27.227143 27.227143 6.392000e+06 \n", + "\n", + " Adj Close \n", + "Date \n", + "1980-12-31 0.473077 \n", + "1981-01-30 0.493810 \n", + "1981-02-27 0.411053 \n", + "1981-03-31 0.387727 \n", + "1981-04-30 0.423333 " + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#找到每个月的最后一个交易日(business day)\n", + "#resample参数详解:https://www.jianshu.com/p/5367ef7453ce\n", + "apple_month = apple.resample('BM').mean()\n", + "apple_month.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "12261" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#数据集中最早的日期和最晚的日期相差多少天?\n", + "(apple.index.max() - apple.index.min()).days" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "404" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(apple_month)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "pycharm": { + "name": "#%%\n" + } + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} \ No newline at end of file diff --git a/实验 探索Chipotle快餐数据/data/Euro2012.csv b/实验 探索Chipotle快餐数据/data/Euro2012.csv new file mode 100644 index 0000000..1424001 --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/Euro2012.csv @@ -0,0 +1,17 @@ +Team,Goals,Shots on target,Shots off target,Shooting Accuracy,% Goals-to-shots,Total shots (inc. Blocked),Hit Woodwork,Penalty goals,Penalties not scored,Headed goals,Passes,Passes completed,Passing Accuracy,Touches,Crosses,Dribbles,Corners Taken,Tackles,Clearances,Interceptions,Clearances off line,Clean Sheets,Blocks,Goals conceded,Saves made,Saves-to-shots ratio,Fouls Won,Fouls Conceded,Offsides,Yellow Cards,Red Cards,Subs on,Subs off,Players Used +Croatia,4,13,12,51.9%,16.0%,32,0,0,0,2,1076,828,76.9%,1706,60,42,14,49,83,56,,0,10,3,13,81.3%,41,62,2,9,0,9,9,16 +Czech Republic,4,13,18,41.9%,12.9%,39,0,0,0,0,1565,1223,78.1%,2358,46,68,21,62,98,37,2.0,1,10,6,9,60.1%,53,73,8,7,0,11,11,19 +Denmark,4,10,10,50.0%,20.0%,27,1,0,0,3,1298,1082,83.3%,1873,43,32,16,40,61,59,0.0,1,10,5,10,66.7%,25,38,8,4,0,7,7,15 +England,5,11,18,50.0%,17.2%,40,0,0,0,3,1488,1200,80.6%,2440,58,60,16,86,106,72,1.0,2,29,3,22,88.1%,43,45,6,5,0,11,11,16 +France,3,22,24,37.9%,6.5%,65,1,0,0,0,2066,1803,87.2%,2909,55,76,28,71,76,58,0.0,1,7,5,6,54.6%,36,51,5,6,0,11,11,19 +Germany,10,32,32,47.8%,15.6%,80,2,1,0,2,2774,2427,87.4%,3761,101,60,35,91,73,69,0.0,1,11,6,10,62.6%,63,49,12,4,0,15,15,17 +Greece,5,8,18,30.7%,19.2%,32,1,1,1,0,1187,911,76.7%,2016,52,53,10,65,123,87,0.0,1,23,7,13,65.1%,67,48,12,9,1,12,12,20 +Italy,6,34,45,43.0%,7.5%,110,2,0,0,2,3016,2531,83.9%,4363,75,75,30,98,137,136,1.0,2,18,7,20,74.1%,101,89,16,16,0,18,18,19 +Netherlands,2,12,36,25.0%,4.1%,60,2,0,0,0,1556,1381,88.7%,2163,50,49,22,34,41,41,0.0,0,9,5,12,70.6%,35,30,3,5,0,7,7,15 +Poland,2,15,23,39.4%,5.2%,48,0,0,0,1,1059,852,80.4%,1724,55,39,14,67,87,62,0.0,0,8,3,6,66.7%,48,56,3,7,1,7,7,17 +Portugal,6,22,42,34.3%,9.3%,82,6,0,0,2,1891,1461,77.2%,2958,91,64,41,78,92,86,0.0,2,11,4,10,71.5%,73,90,10,12,0,14,14,16 +Republic of Ireland,1,7,12,36.8%,5.2%,28,0,0,0,1,851,606,71.2%,1433,43,18,8,45,78,43,1.0,0,23,9,17,65.4%,43,51,11,6,1,10,10,17 +Russia,5,9,31,22.5%,12.5%,59,2,0,0,1,1602,1345,83.9%,2278,40,40,21,65,74,58,0.0,0,8,3,10,77.0%,34,43,4,6,0,7,7,16 +Spain,12,42,33,55.9%,16.0%,100,0,1,0,2,4317,3820,88.4%,5585,69,106,44,122,102,79,0.0,5,8,1,15,93.8%,102,83,19,11,0,17,17,18 +Sweden,5,17,19,47.2%,13.8%,39,3,0,0,1,1192,965,80.9%,1806,44,29,7,56,54,45,0.0,1,12,5,8,61.6%,35,51,7,7,0,9,9,18 +Ukraine,2,7,26,21.2%,6.0%,38,0,0,0,2,1276,1043,81.7%,1894,33,26,18,65,97,29,0.0,0,4,4,13,76.5%,48,31,4,5,0,9,9,18 diff --git a/实验 探索Chipotle快餐数据/data/US_Crime_Rates_1960_2014.csv b/实验 探索Chipotle快餐数据/data/US_Crime_Rates_1960_2014.csv new file mode 100644 index 0000000..237c9bf --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/US_Crime_Rates_1960_2014.csv @@ -0,0 +1,56 @@ +,Year,Population,Total,Violent,Property,Murder,Forcible_Rape,Robbery,Aggravated_assault,Burglary,Larceny_Theft,Vehicle_Theft +0,1960,179323175,3384200,288460,3095700,9110,17190,107840,154320,912100,1855400,328200 +1,1961,182992000,3488000,289390,3198600,8740,17220,106670,156760,949600,1913000,336000 +2,1962,185771000,3752200,301510,3450700,8530,17550,110860,164570,994300,2089600,366800 +3,1963,188483000,4109500,316970,3792500,8640,17650,116470,174210,1086400,2297800,408300 +4,1964,191141000,4564600,364220,4200400,9360,21420,130390,203050,1213200,2514400,472800 +5,1965,193526000,4739400,387390,4352000,9960,23410,138690,215330,1282500,2572600,496900 +6,1966,195576000,5223500,430180,4793300,11040,25820,157990,235330,1410100,2822000,561200 +7,1967,197457000,5903400,499930,5403500,12240,27620,202910,257160,1632100,3111600,659800 +8,1968,199399000,6720200,595010,6125200,13800,31670,262840,286700,1858900,3482700,783600 +9,1969,201385000,7410900,661870,6749000,14760,37170,298850,311090,1981900,3888600,878500 +10,1970,203235298,8098000,738820,7359200,16000,37990,349860,334970,2205000,4225800,928400 +11,1971,206212000,8588200,816500,7771700,17780,42260,387700,368760,2399300,4424200,948200 +12,1972,208230000,8248800,834900,7413900,18670,46850,376290,393090,2375500,4151200,887200 +13,1973,209851000,8718100,875910,7842200,19640,51400,384220,420650,2565500,4347900,928800 +14,1974,211392000,10253400,974720,9278700,20710,55400,442400,456210,3039200,5262500,977100 +15,1975,213124000,11292400,1039710,10252700,20510,56090,470500,492620,3265300,5977700,1009600 +16,1976,214659000,11349700,1004210,10345500,18780,57080,427810,500530,3108700,6270800,966000 +17,1977,216332000,10984500,1029580,9955000,19120,63500,412610,534350,3071500,5905700,977700 +18,1978,218059000,11209000,1085550,10123400,19560,67610,426930,571460,3128300,5991000,1004100 +19,1979,220099000,12249500,1208030,11041500,21460,76390,480700,629480,3327700,6601000,1112800 +20,1980,225349264,13408300,1344520,12063700,23040,82990,565840,672650,3795200,7136900,1131700 +21,1981,229146000,13423800,1361820,12061900,22520,82500,592910,663900,3779700,7194400,1087800 +22,1982,231534000,12974400,1322390,11652000,21010,78770,553130,669480,3447100,7142500,1062400 +23,1983,233981000,12108600,1258090,10850500,19310,78920,506570,653290,3129900,6712800,1007900 +24,1984,236158000,11881800,1273280,10608500,18690,84230,485010,685350,2984400,6591900,1032200 +25,1985,238740000,12431400,1328800,11102600,18980,88670,497870,723250,3073300,6926400,1102900 +26,1986,240132887,13211869,1489169,11722700,20613,91459,542775,834322,3241410,7257153,1224137 +27,1987,242282918,13508700,1483999,12024700,20096,91110,517704,855088,3236184,7499900,1288674 +28,1988,245807000,13923100,1566220,12356900,20680,92490,542970,910090,3218100,7705900,1432900 +29,1989,248239000,14251400,1646040,12605400,21500,94500,578330,951710,3168200,7872400,1564800 +30,1990,248709873,14475600,1820130,12655500,23440,102560,639270,1054860,3073900,7945700,1635900 +31,1991,252177000,14872900,1911770,12961100,24700,106590,687730,1092740,3157200,8142200,1661700 +32,1992,255082000,14438200,1932270,12505900,23760,109060,672480,1126970,2979900,7915200,1610800 +33,1993,257908000,14144800,1926020,12218800,24530,106010,659870,1135610,2834800,7820900,1563100 +34,1994,260341000,13989500,1857670,12131900,23330,102220,618950,1113180,2712800,7879800,1539300 +35,1995,262755000,13862700,1798790,12063900,21610,97470,580510,1099210,2593800,7997700,1472400 +36,1996,265228572,13493863,1688540,11805300,19650,96250,535590,1037050,2506400,7904700,1394200 +37,1997,267637000,13194571,1634770,11558175,18208,96153,498534,1023201,2460526,7743760,1354189 +38,1998,270296000,12475634,1531044,10944590,16914,93103,446625,974402,2329950,7373886,1240754 +39,1999,272690813,11634378,1426044,10208334,15522,89411,409371,911740,2100739,6955520,1152075 +40,2000,281421906,11608072,1425486,10182586,15586,90178,408016,911706,2050992,6971590,1160002 +41,2001,285317559,11876669,1439480,10437480,16037,90863,423557,909023,2116531,7092267,1228391 +42,2002,287973924,11878954,1423677,10455277,16229,95235,420806,891407,2151252,7057370,1246646 +43,2003,290690788,11826538,1383676,10442862,16528,93883,414235,859030,2154834,7026802,1261226 +44,2004,293656842,11679474,1360088,10319386,16148,95089,401470,847381,2144446,6937089,1237851 +45,2005,296507061,11565499,1390745,10174754,16740,94347,417438,862220,2155448,6783447,1235859 +46,2006,299398484,11401511,1418043,9983568,17030,92757,447403,860853,2183746,6607013,1192809 +47,2007,301621157,11251828,1408337,9843481,16929,90427,445125,855856,2176140,6568572,1095769 +48,2008,304374846,11160543,1392628,9767915,16442,90479,443574,842134,2228474,6588046,958629 +49,2009,307006550,10762956,1325896,9337060,15399,89241,408742,812514,2203313,6338095,795652 +50,2010,309330219,10363873,1251248,9112625,14772,85593,369089,781844,2168457,6204601,739565 +51,2011,311587816,10258774,1206031,9052743,14661,84175,354772,752423,2185140,6151095,716508 +52,2012,313873685,10219059,1217067,9001992,14866,85141,355051,762009,2109932,6168874,723186 +53,2013,316497531,9850445,1199684,8650761,14319,82109,345095,726575,1931835,6018632,700294 +54,2014,318857056,9475816,1197987,8277829,14249,84041,325802,741291,1729806,5858496,689527 diff --git a/实验 探索Chipotle快餐数据/data/appl_1980_2014.csv b/实验 探索Chipotle快餐数据/data/appl_1980_2014.csv new file mode 100644 index 0000000..9cdff61 --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/appl_1980_2014.csv @@ -0,0 +1,8466 @@ +Date,Open,High,Low,Close,Volume,Adj Close +2014-07-08,96.27,96.80,93.92,95.35,65130000,95.35 +2014-07-07,94.14,95.99,94.10,95.97,56305400,95.97 +2014-07-03,93.67,94.10,93.20,94.03,22891800,94.03 +2014-07-02,93.87,94.06,93.09,93.48,28420900,93.48 +2014-07-01,93.52,94.07,93.13,93.52,38170200,93.52 +2014-06-30,92.10,93.73,92.09,92.93,49482300,92.93 +2014-06-27,90.82,92.00,90.77,91.98,64006800,91.98 +2014-06-26,90.37,91.05,89.80,90.90,32595800,90.90 +2014-06-25,90.21,90.70,89.65,90.36,36852200,90.36 +2014-06-24,90.75,91.74,90.19,90.28,38988300,90.28 +2014-06-23,91.32,91.62,90.60,90.83,43618200,90.83 +2014-06-20,91.85,92.55,90.90,90.91,100813200,90.91 +2014-06-19,92.29,92.30,91.34,91.86,35486400,91.86 +2014-06-18,92.27,92.29,91.35,92.18,33493800,92.18 +2014-06-17,92.31,92.70,91.80,92.08,29689800,92.08 +2014-06-16,91.51,92.75,91.45,92.20,35561000,92.20 +2014-06-13,92.20,92.44,90.88,91.28,54525000,91.28 +2014-06-12,94.04,94.12,91.90,92.29,54749000,92.29 +2014-06-11,94.13,94.76,93.47,93.86,45681000,93.86 +2014-06-10,94.73,95.05,93.57,94.25,62777000,94.25 +2014-06-09,92.70,93.88,91.75,93.70,75415000,93.70 +2014-06-06,649.90,651.26,644.47,645.57,87484600,92.22 +2014-06-05,646.20,649.37,642.61,647.35,75951400,92.48 +2014-06-04,637.44,647.89,636.11,644.82,83870500,92.12 +2014-06-03,628.46,638.74,628.25,637.54,73177300,91.08 +2014-06-02,633.96,634.83,622.50,628.65,92337700,89.81 +2014-05-30,637.98,644.17,628.90,633.00,141005200,90.43 +2014-05-29,627.85,636.87,627.77,635.38,94118500,90.77 +2014-05-28,626.02,629.83,623.78,624.01,78870400,89.14 +2014-05-27,615.88,625.86,615.63,625.63,87216500,89.38 +2014-05-23,607.25,614.73,606.47,614.13,58052400,87.73 +2014-05-22,606.60,609.85,604.10,607.27,50190000,86.75 +2014-05-21,603.83,606.70,602.06,606.31,49214900,86.62 +2014-05-20,604.51,606.40,600.73,604.71,58709000,86.39 +2014-05-19,597.85,607.33,597.33,604.59,79438800,86.37 +2014-05-16,588.63,597.53,585.40,597.51,69064100,85.36 +2014-05-15,594.70,596.60,588.04,588.82,57711500,84.12 +2014-05-14,592.43,597.40,591.74,593.87,41601000,84.84 +2014-05-13,592.00,594.54,590.70,593.76,39934300,84.82 +2014-05-12,587.49,593.66,587.40,592.83,53302200,84.69 +2014-05-09,584.54,586.25,580.33,585.54,72899400,83.65 +2014-05-08,588.25,594.41,586.40,587.99,57574300,84.00 +2014-05-07,595.25,597.29,587.73,592.33,70716100,84.15 +2014-05-06,601.80,604.41,594.41,594.41,93641100,84.44 +2014-05-05,590.14,601.00,590.00,600.96,71766800,85.37 +2014-05-02,592.34,594.20,589.71,592.58,47878600,84.18 +2014-05-01,592.00,594.80,586.36,591.48,61012000,84.03 +2014-04-30,592.64,599.43,589.80,590.09,114160200,83.83 +2014-04-29,593.74,595.98,589.51,592.33,84344400,84.15 +2014-04-28,572.80,595.75,572.55,594.09,167371400,84.40 +2014-04-25,564.53,571.99,563.96,571.94,97568800,81.25 +2014-04-24,568.21,570.00,560.73,567.77,189977900,80.66 +2014-04-23,529.06,531.13,524.45,524.75,98735000,74.55 +2014-04-22,528.31,531.83,526.50,531.70,50640800,75.54 +2014-04-21,525.34,532.14,523.96,531.17,45637200,75.46 +2014-04-17,520.00,527.76,519.20,524.94,71083600,74.57 +2014-04-16,518.05,521.09,514.14,519.01,53691400,73.73 +2014-04-15,520.27,521.64,511.33,517.96,66622500,73.58 +2014-04-14,521.90,522.16,517.21,521.68,51418500,74.11 +2014-04-11,519.00,522.83,517.14,519.61,67929400,73.82 +2014-04-10,530.68,532.24,523.17,523.48,59913000,74.37 +2014-04-09,522.64,530.49,522.02,530.32,51542400,75.34 +2014-04-08,525.19,526.12,518.70,523.44,60972100,74.36 +2014-04-07,528.02,530.90,521.89,523.47,72462600,74.37 +2014-04-04,539.81,540.00,530.58,531.82,68812800,75.55 +2014-04-03,541.39,542.50,537.64,538.79,40586000,76.54 +2014-04-02,542.38,543.48,540.26,542.55,45105200,77.08 +2014-04-01,537.76,541.87,536.77,541.65,50190000,76.95 +2014-03-31,539.23,540.81,535.93,536.74,42167300,76.25 +2014-03-28,538.32,538.94,534.25,536.86,50141000,76.27 +2014-03-27,540.02,541.50,535.12,537.46,55507900,76.35 +2014-03-26,546.52,549.00,538.86,539.78,74942000,76.68 +2014-03-25,541.50,545.75,539.59,544.99,70573300,77.42 +2014-03-24,538.42,540.50,535.06,539.19,88925200,76.60 +2014-03-21,531.93,533.75,526.33,532.87,93511600,75.70 +2014-03-20,529.89,532.67,527.35,528.70,52099600,75.11 +2014-03-19,532.26,536.24,529.00,531.26,56189000,75.47 +2014-03-18,525.90,531.97,525.20,531.40,52411800,75.49 +2014-03-17,527.70,529.97,525.85,526.74,49886200,74.83 +2014-03-14,528.79,530.89,523.00,524.69,59299800,74.54 +2014-03-13,537.44,539.66,529.16,530.65,64435700,75.39 +2014-03-12,534.51,537.35,532.00,536.61,49831600,76.23 +2014-03-11,535.45,538.74,532.59,536.09,69806100,76.16 +2014-03-10,528.36,533.33,528.34,530.92,44646000,75.42 +2014-03-07,531.09,531.98,526.05,530.44,55182400,75.36 +2014-03-06,532.79,534.44,528.10,530.75,46372200,75.40 +2014-03-05,530.92,534.75,529.13,532.36,50015700,75.63 +2014-03-04,531.00,532.64,527.77,531.24,64785000,75.47 +2014-03-03,523.42,530.65,522.81,527.76,59695300,74.98 +2014-02-28,529.08,532.75,522.12,526.24,92992200,74.76 +2014-02-27,517.14,528.78,516.05,527.67,75470500,74.96 +2014-02-26,523.61,525.00,515.60,517.35,69054300,73.50 +2014-02-25,529.38,529.57,521.00,522.06,57988000,74.17 +2014-02-24,523.15,529.92,522.42,527.55,72227400,74.95 +2014-02-21,532.79,534.57,524.60,525.25,69696200,74.62 +2014-02-20,532.99,537.00,529.00,531.15,76464500,75.46 +2014-02-19,544.75,546.89,534.35,537.37,78442000,76.34 +2014-02-18,546.00,551.19,545.61,545.99,65062900,77.57 +2014-02-14,542.47,545.98,541.21,543.99,68231100,77.28 +2014-02-13,534.66,544.85,534.20,544.43,76849500,77.34 +2014-02-12,536.95,539.56,533.24,535.92,77025200,76.13 +2014-02-11,530.61,537.75,529.50,535.96,70564200,76.14 +2014-02-10,518.66,531.99,518.00,528.99,86389800,75.15 +2014-02-07,521.38,522.93,517.38,519.68,92570100,73.83 +2014-02-06,510.06,513.50,507.81,512.51,64441300,72.81 +2014-02-05,506.56,515.28,506.25,512.59,82086200,72.39 +2014-02-04,505.85,509.46,502.76,508.79,94170300,71.85 +2014-02-03,502.61,507.73,499.30,501.53,100366000,70.83 +2014-01-31,495.18,501.53,493.55,500.60,116199300,70.69 +2014-01-30,502.54,506.50,496.70,499.78,169625400,70.58 +2014-01-29,503.95,507.37,498.62,500.75,125702500,70.72 +2014-01-28,508.76,515.00,502.07,506.50,266380800,71.53 +2014-01-27,550.07,554.80,545.75,550.50,138719700,77.74 +2014-01-24,554.00,555.62,544.75,546.07,107338700,77.12 +2014-01-23,549.94,556.50,544.81,556.18,100809800,78.54 +2014-01-22,550.91,557.29,547.81,551.51,94996300,77.88 +2014-01-21,540.99,550.07,540.42,549.07,82131700,77.54 +2014-01-17,551.48,552.07,539.90,540.67,106684900,76.35 +2014-01-16,554.90,556.85,551.68,554.25,57319500,78.27 +2014-01-15,553.52,560.20,551.66,557.36,97909700,78.71 +2014-01-14,538.22,546.73,537.66,546.39,83140400,77.16 +2014-01-13,529.91,542.50,529.88,535.73,94623200,75.65 +2014-01-10,539.83,540.80,531.11,532.94,76244000,75.26 +2014-01-09,546.80,546.86,535.35,536.52,69787200,75.77 +2014-01-08,538.81,545.56,538.69,543.46,64632400,76.75 +2014-01-07,544.32,545.96,537.92,540.04,79302300,76.26 +2014-01-06,537.45,546.80,533.60,543.93,103152700,76.81 +2014-01-03,552.86,553.70,540.43,540.98,98116900,76.40 +2014-01-02,555.68,557.03,552.02,553.13,58671200,78.11 +2013-12-31,554.17,561.28,554.00,561.02,55771100,79.23 +2013-12-30,557.46,560.09,552.32,554.52,63407400,78.31 +2013-12-27,563.82,564.41,559.50,560.09,56471100,79.10 +2013-12-26,568.10,569.50,563.38,563.90,51002000,79.63 +2013-12-24,569.89,571.88,566.03,567.67,41888700,80.17 +2013-12-23,568.00,570.72,562.76,570.09,125326600,80.51 +2013-12-20,545.43,551.61,544.82,549.02,109103400,77.53 +2013-12-19,549.50,550.00,543.73,544.46,80077200,76.89 +2013-12-18,549.70,551.45,538.80,550.77,141465800,77.78 +2013-12-17,555.81,559.44,553.38,554.99,57475600,78.37 +2013-12-16,555.02,562.64,555.01,557.50,70648200,78.73 +2013-12-13,562.85,562.88,553.67,554.43,83205500,78.30 +2013-12-12,562.14,565.34,560.03,560.54,65572500,79.16 +2013-12-11,567.00,570.97,559.69,561.36,89929700,79.27 +2013-12-10,563.58,567.88,561.20,565.55,69567400,79.87 +2013-12-09,560.90,569.58,560.90,566.43,80123400,79.99 +2013-12-06,565.79,566.75,559.57,560.02,86088100,79.09 +2013-12-05,572.65,575.14,566.41,567.90,111895000,80.20 +2013-12-04,565.50,569.19,560.82,565.00,94452400,79.79 +2013-12-03,558.30,566.38,557.68,566.32,112742000,79.97 +2013-12-02,558.00,564.33,550.82,551.23,118136200,77.84 +2013-11-29,549.48,558.33,547.81,556.07,79531900,78.53 +2013-11-27,536.31,546.00,533.40,545.96,90862100,77.10 +2013-11-26,524.12,536.14,524.00,533.40,100345700,75.33 +2013-11-25,521.02,525.87,521.00,523.74,57327900,73.96 +2013-11-22,519.52,522.16,518.53,519.80,55931400,73.41 +2013-11-21,517.60,521.21,513.67,521.14,65506700,73.59 +2013-11-20,519.23,520.42,514.33,515.00,48479200,72.73 +2013-11-19,519.03,523.38,517.97,519.55,52234700,73.37 +2013-11-18,524.99,527.19,518.20,518.63,61236000,73.24 +2013-11-15,526.58,529.09,524.49,524.99,79480100,74.14 +2013-11-14,522.81,529.28,521.87,528.16,70604800,74.59 +2013-11-13,518.00,522.25,516.96,520.63,49305200,73.52 +2013-11-12,517.67,523.92,517.00,520.01,51069200,73.43 +2013-11-11,519.99,521.67,514.41,519.05,56863100,73.30 +2013-11-08,514.58,521.13,512.59,520.56,69829200,73.51 +2013-11-07,519.58,523.19,512.38,512.49,65655100,72.37 +2013-11-06,524.15,524.86,518.20,520.92,55843900,73.56 +2013-11-05,524.58,528.89,523.00,525.45,66303300,73.77 +2013-11-04,521.10,526.82,518.81,526.75,61156900,73.96 +2013-11-01,524.02,524.80,515.84,520.03,68722500,73.01 +2013-10-31,525.00,527.49,521.27,522.70,68924100,73.39 +2013-10-30,519.61,527.52,517.02,524.90,88540900,73.70 +2013-10-29,536.27,539.25,514.54,516.68,158951800,72.54 +2013-10-28,529.04,531.00,523.21,529.88,137610200,74.39 +2013-10-25,531.32,533.23,525.11,525.96,84448000,73.84 +2013-10-24,525.00,532.47,522.45,531.91,96191200,74.68 +2013-10-23,519.00,525.67,519.00,524.96,78430800,73.70 +2013-10-22,526.41,528.45,508.03,519.87,133515900,72.99 +2013-10-21,511.77,524.30,511.52,521.36,99526700,73.20 +2013-10-18,505.99,509.26,505.71,508.89,72635500,71.45 +2013-10-17,499.98,504.78,499.68,504.50,63398300,70.83 +2013-10-16,500.79,502.53,499.23,501.11,62775300,70.36 +2013-10-15,497.51,502.00,495.52,498.68,80018400,70.01 +2013-10-14,489.83,497.58,489.35,496.04,65474500,69.64 +2013-10-11,486.99,493.84,485.16,492.81,66934700,69.19 +2013-10-10,491.32,492.38,487.04,489.64,69650700,68.74 +2013-10-09,484.64,487.79,478.28,486.59,75431300,68.32 +2013-10-08,489.94,490.64,480.54,480.94,72729300,67.52 +2013-10-07,486.56,492.65,485.35,487.75,78073100,68.48 +2013-10-04,483.86,484.60,478.60,483.03,64717100,67.82 +2013-10-03,490.51,492.35,480.74,483.41,80688300,67.87 +2013-10-02,485.63,491.80,483.75,489.56,72296000,68.73 +2013-10-01,478.45,489.14,478.38,487.96,88470900,68.51 +2013-09-30,477.25,481.66,474.41,476.75,65039100,66.94 +2013-09-27,483.78,484.67,480.72,482.75,57010100,67.78 +2013-09-26,486.00,488.56,483.90,486.22,59305400,68.26 +2013-09-25,489.20,489.64,481.43,481.53,79239300,67.61 +2013-09-24,494.88,495.47,487.82,489.10,91086100,68.67 +2013-09-23,496.10,496.91,482.60,490.64,190526700,68.89 +2013-09-20,478.00,478.55,466.00,467.41,174825700,65.62 +2013-09-19,470.70,475.83,469.25,472.30,101135300,66.31 +2013-09-18,463.18,466.35,460.66,464.68,114215500,65.24 +2013-09-17,447.96,459.71,447.50,455.32,99845200,63.93 +2013-09-16,461.00,461.61,447.22,450.12,135926700,63.20 +2013-09-13,469.34,471.83,464.70,464.90,74708900,65.27 +2013-09-12,468.50,475.40,466.01,472.69,101012800,66.37 +2013-09-11,467.01,473.69,464.81,467.71,224674100,65.67 +2013-09-10,506.20,507.45,489.50,494.64,185798900,69.45 +2013-09-09,505.00,507.92,503.48,506.17,85171800,71.07 +2013-09-06,498.44,499.38,489.95,498.22,89881400,69.95 +2013-09-05,500.25,500.68,493.64,495.27,59091900,69.54 +2013-09-04,499.56,502.24,496.28,498.69,86258200,70.02 +2013-09-03,493.10,500.60,487.35,488.58,82982200,68.60 +2013-08-30,492.00,492.95,486.50,487.22,68074300,68.41 +2013-08-29,491.65,496.50,491.13,491.70,59914400,69.03 +2013-08-28,486.00,495.80,486.00,490.90,76902000,68.92 +2013-08-27,498.00,502.51,486.30,488.59,106047200,68.60 +2013-08-26,500.75,510.20,500.50,502.97,82741400,70.62 +2013-08-23,503.27,503.35,499.35,501.02,55682900,70.34 +2013-08-22,504.98,505.59,498.20,502.96,61051900,70.61 +2013-08-21,503.59,507.15,501.20,502.36,83969900,70.53 +2013-08-20,509.71,510.57,500.82,501.07,89672100,70.35 +2013-08-19,504.34,513.74,504.00,507.74,127629600,71.29 +2013-08-16,500.15,502.94,498.86,502.33,90576500,70.53 +2013-08-15,496.42,502.40,489.08,497.91,122573500,69.91 +2013-08-14,497.88,504.25,493.40,498.50,189093100,69.99 +2013-08-13,470.94,494.66,468.05,489.57,220485300,68.73 +2013-08-12,456.86,468.65,456.63,467.36,91108500,65.62 +2013-08-09,458.64,460.46,453.65,454.45,66716300,63.80 +2013-08-08,463.86,464.10,457.95,461.01,63944300,64.73 +2013-08-07,463.80,467.00,461.77,464.98,74714500,64.85 +2013-08-06,468.02,471.89,462.17,465.25,83714400,64.89 +2013-08-05,464.69,470.67,462.15,469.45,79713900,65.48 +2013-08-02,458.01,462.85,456.66,462.54,68695900,64.51 +2013-08-01,455.75,456.80,453.26,456.68,51562700,63.70 +2013-07-31,454.99,457.34,449.43,452.53,80739400,63.12 +2013-07-30,449.96,457.15,449.23,453.32,77355600,63.23 +2013-07-29,440.80,449.99,440.20,447.79,62014400,62.46 +2013-07-26,435.30,441.04,434.34,440.99,50038100,61.51 +2013-07-25,440.70,441.40,435.81,438.50,57373400,61.16 +2013-07-24,438.93,444.59,435.26,440.51,147984200,61.44 +2013-07-23,426.00,426.96,418.71,418.99,92348900,58.44 +2013-07-22,429.46,429.75,425.47,426.31,51949100,59.46 +2013-07-19,433.10,433.98,424.35,424.95,67180400,59.27 +2013-07-18,433.38,434.87,430.61,431.76,54719700,60.22 +2013-07-17,429.70,432.22,428.22,430.31,49747600,60.02 +2013-07-16,426.52,430.71,424.17,430.20,54134500,60.00 +2013-07-15,425.01,431.46,424.80,427.44,60479300,59.62 +2013-07-12,427.65,429.79,423.41,426.51,69890800,59.49 +2013-07-11,422.95,428.25,421.17,427.29,81573100,59.60 +2013-07-10,419.60,424.80,418.25,420.73,70351400,58.68 +2013-07-09,413.60,423.50,410.38,422.35,88146100,58.91 +2013-07-08,420.11,421.00,410.65,415.05,74534600,57.89 +2013-07-05,420.39,423.29,415.35,417.42,68506200,58.22 +2013-07-03,420.86,422.98,417.45,420.80,60232200,58.69 +2013-07-02,409.96,421.63,409.47,418.49,117466300,58.37 +2013-07-01,402.69,412.27,401.22,409.22,97763400,57.08 +2013-06-28,391.36,400.27,388.87,396.53,144629100,55.31 +2013-06-27,399.25,401.39,393.54,393.78,84311500,54.92 +2013-06-26,403.90,404.79,395.66,398.07,91931000,55.52 +2013-06-25,405.70,407.79,398.83,402.63,78540700,56.16 +2013-06-24,407.40,408.66,398.05,402.54,120186500,56.15 +2013-06-21,418.49,420.00,408.10,413.50,120279600,57.67 +2013-06-20,419.30,425.98,415.17,416.84,89327700,58.14 +2013-06-19,431.40,431.66,423.00,423.00,77735000,59.00 +2013-06-18,431.56,434.90,430.21,431.77,48756400,60.22 +2013-06-17,431.44,435.70,430.36,432.00,64853600,60.25 +2013-06-14,435.40,436.29,428.50,430.05,67966500,59.98 +2013-06-13,432.50,437.14,428.75,435.96,71458100,60.81 +2013-06-12,439.50,441.25,431.50,432.19,66306800,60.28 +2013-06-11,435.74,442.76,433.32,437.60,71528100,61.04 +2013-06-10,444.73,449.08,436.80,438.89,112538300,61.22 +2013-06-07,436.50,443.24,432.77,441.81,101133900,61.62 +2013-06-06,445.47,447.00,434.05,438.46,104233500,61.16 +2013-06-05,445.65,450.72,443.71,445.11,72647400,62.08 +2013-06-04,453.22,454.43,447.39,449.31,73182200,62.67 +2013-06-03,450.73,452.36,442.48,450.72,93088100,62.87 +2013-05-31,452.50,457.10,449.50,449.73,96075700,62.73 +2013-05-30,445.65,454.50,444.51,451.58,88379900,62.99 +2013-05-29,440.00,447.50,439.40,444.95,82644100,62.06 +2013-05-28,449.90,451.11,440.85,441.44,96536300,61.57 +2013-05-24,440.85,445.66,440.36,445.15,69041700,62.09 +2013-05-23,435.95,446.16,435.79,442.14,88255300,61.67 +2013-05-22,444.05,448.35,438.22,441.35,110759600,61.56 +2013-05-21,438.15,445.48,434.20,439.66,114005500,61.32 +2013-05-20,431.91,445.80,430.10,442.93,112894600,61.78 +2013-05-17,439.05,440.09,431.01,433.26,106976100,60.43 +2013-05-16,423.24,437.85,418.90,434.58,150801000,60.61 +2013-05-15,439.16,441.00,422.36,428.85,185403400,59.82 +2013-05-14,453.85,455.20,442.15,443.86,111779500,61.91 +2013-05-13,451.51,457.90,451.50,454.74,79237200,63.43 +2013-05-10,457.97,459.71,450.48,452.97,83713000,63.18 +2013-05-09,459.81,463.00,455.58,456.77,99621900,63.71 +2013-05-08,459.04,465.37,455.81,463.84,118149500,64.27 +2013-05-07,464.97,465.75,453.70,458.66,120938300,63.55 +2013-05-06,455.71,462.20,454.31,460.71,124160400,63.84 +2013-05-03,451.31,453.23,449.15,449.98,90325200,62.35 +2013-05-02,441.78,448.59,440.63,445.52,105457100,61.73 +2013-05-01,444.46,444.93,434.39,439.29,126727300,60.87 +2013-04-30,435.10,445.25,432.07,442.78,172884600,61.35 +2013-04-29,420.45,433.62,420.00,430.12,160081600,59.60 +2013-04-26,409.81,418.77,408.25,417.20,191024400,57.81 +2013-04-25,411.23,413.94,407.00,408.38,96209400,56.59 +2013-04-24,393.54,415.25,392.50,405.46,242412800,56.18 +2013-04-23,403.99,408.38,398.81,406.13,166059600,56.27 +2013-04-22,392.64,402.20,391.27,398.67,107480100,55.24 +2013-04-19,387.97,399.60,385.10,390.53,152318600,54.11 +2013-04-18,404.99,405.79,389.74,392.05,166574800,54.32 +2013-04-17,420.27,420.60,398.11,402.80,236264000,55.81 +2013-04-16,421.57,426.61,420.57,426.24,76442800,59.06 +2013-04-15,427.00,427.89,419.55,419.85,79380000,58.17 +2013-04-12,434.15,434.15,429.09,429.80,59653300,59.55 +2013-04-11,433.72,437.99,431.20,434.33,82091100,60.18 +2013-04-10,428.10,437.06,426.01,435.69,93982000,60.37 +2013-04-09,426.36,428.50,422.75,426.98,76653500,59.16 +2013-04-08,424.85,427.50,422.49,426.21,75207300,59.06 +2013-04-05,424.50,424.95,419.68,423.20,95923800,58.64 +2013-04-04,433.76,435.00,425.25,427.72,89611900,59.27 +2013-04-03,431.37,437.28,430.31,431.99,90804000,59.86 +2013-04-02,427.60,438.14,426.40,429.79,132379800,59.55 +2013-04-01,441.90,443.70,427.74,428.91,97433000,59.43 +2013-03-28,449.82,451.82,441.62,442.66,110709900,61.34 +2013-03-27,456.46,456.80,450.73,452.08,82809300,62.64 +2013-03-26,465.44,465.84,460.53,461.14,73573500,63.90 +2013-03-25,464.69,469.95,461.78,463.58,125283900,64.23 +2013-03-22,454.58,462.10,453.11,461.91,98776300,64.00 +2013-03-21,450.22,457.98,450.10,452.73,95813900,62.73 +2013-03-20,457.42,457.63,449.59,452.08,77165200,62.64 +2013-03-19,459.50,460.97,448.50,454.49,131693800,62.97 +2013-03-18,441.45,457.46,441.20,455.72,151549300,63.14 +2013-03-15,437.93,444.23,437.25,443.66,160990200,61.47 +2013-03-14,432.83,434.64,430.45,432.50,75968900,59.93 +2013-03-13,428.45,434.50,425.36,428.35,101387300,59.35 +2013-03-12,435.60,438.88,427.57,428.43,116477900,59.36 +2013-03-11,429.75,439.01,425.14,437.87,118559000,60.67 +2013-03-08,429.80,435.43,428.61,431.72,97870500,59.82 +2013-03-07,424.50,432.01,421.06,430.58,117118400,59.66 +2013-03-06,434.51,435.25,424.43,425.66,115062500,58.98 +2013-03-05,421.48,435.19,420.75,431.14,159608400,59.74 +2013-03-04,427.80,428.20,419.00,420.05,145688900,58.20 +2013-03-01,438.00,438.18,429.98,430.47,138112100,59.65 +2013-02-28,444.05,447.87,441.40,441.40,80628800,61.16 +2013-02-27,448.43,452.44,440.65,444.57,146837600,61.60 +2013-02-26,443.82,451.54,437.66,448.97,125374900,62.21 +2013-02-25,453.85,455.12,442.57,442.80,93144800,61.35 +2013-02-22,449.25,451.60,446.60,450.81,82663700,62.46 +2013-02-21,446.00,449.17,442.82,446.06,111795600,61.81 +2013-02-20,457.69,457.69,448.80,448.85,119075600,62.19 +2013-02-19,461.10,462.73,453.85,459.99,108945900,63.74 +2013-02-15,468.85,470.16,459.92,460.16,97936300,63.76 +2013-02-14,464.52,471.64,464.02,466.59,88818800,64.65 +2013-02-13,467.21,473.64,463.22,467.01,118801900,64.71 +2013-02-12,479.51,482.38,467.74,467.90,152263300,64.83 +2013-02-11,476.50,484.94,473.25,479.93,129372600,66.50 +2013-02-08,474.00,478.81,468.25,474.98,158289600,65.81 +2013-02-07,463.25,470.00,454.12,468.22,176145200,64.88 +2013-02-06,456.47,466.50,452.58,457.35,148426600,63.00 +2013-02-05,444.05,459.74,442.22,457.84,143336900,63.07 +2013-02-04,453.91,455.94,442.00,442.32,119279300,60.93 +2013-02-01,459.11,459.48,448.35,453.62,134871100,62.49 +2013-01-31,456.98,459.28,454.98,455.49,79833600,62.75 +2013-01-30,457.00,462.60,454.50,456.83,104288800,62.93 +2013-01-29,458.50,460.20,452.12,458.27,142789500,63.13 +2013-01-28,437.83,453.21,435.86,449.83,196379400,61.97 +2013-01-25,451.69,456.23,435.00,439.88,302006600,60.60 +2013-01-24,460.00,465.73,450.25,450.50,365213100,62.06 +2013-01-23,508.81,514.99,504.77,514.01,215377400,70.81 +2013-01-22,504.56,507.88,496.63,504.77,115386600,69.54 +2013-01-18,498.52,502.22,496.40,500.00,118230700,68.88 +2013-01-17,510.31,510.75,502.03,502.68,113419600,69.25 +2013-01-16,494.64,509.44,492.50,506.09,172701200,69.72 +2013-01-15,498.30,498.99,483.38,485.92,219193100,66.94 +2013-01-14,502.68,507.50,498.51,501.75,183551900,69.12 +2013-01-11,521.00,525.32,519.02,520.30,87626700,71.68 +2013-01-10,528.55,528.72,515.52,523.51,150286500,72.12 +2013-01-09,522.50,525.01,515.99,517.10,101901100,71.23 +2013-01-08,529.21,531.89,521.25,525.31,114676800,72.37 +2013-01-07,522.00,529.30,515.20,523.90,121039100,72.17 +2013-01-04,536.97,538.63,525.83,527.00,148583400,72.60 +2013-01-03,547.88,549.67,541.00,542.10,88241300,74.68 +2013-01-02,553.82,555.00,541.63,549.03,140129500,75.63 +2012-12-31,510.53,535.40,509.00,532.17,164873100,73.31 +2012-12-28,510.29,514.48,508.12,509.59,88569600,70.20 +2012-12-27,513.54,516.25,504.66,515.06,113780100,70.95 +2012-12-26,519.00,519.46,511.12,513.00,75609100,70.67 +2012-12-24,520.35,524.25,518.71,520.17,43938300,71.66 +2012-12-21,512.47,519.67,510.24,519.33,149067100,71.54 +2012-12-20,530.00,530.20,518.88,521.73,120422400,71.87 +2012-12-19,531.47,533.70,525.50,526.31,112342300,72.50 +2012-12-18,525.00,534.90,520.25,533.90,156421300,73.55 +2012-12-17,508.93,520.00,501.23,518.83,189401800,71.47 +2012-12-14,514.75,518.13,505.58,509.79,252394800,70.23 +2012-12-13,531.15,537.64,525.80,529.69,156314900,72.97 +2012-12-12,547.77,548.00,536.27,539.00,121786000,74.25 +2012-12-11,539.77,549.56,537.37,541.39,148086400,74.58 +2012-12-10,525.00,538.51,521.58,529.82,157621100,72.99 +2012-12-07,553.40,555.20,530.00,533.25,196760200,73.46 +2012-12-06,528.94,553.31,518.63,547.24,294303100,75.39 +2012-12-05,568.91,569.25,538.77,538.79,261159500,74.22 +2012-12-04,581.80,581.80,572.13,575.85,139267100,79.33 +2012-12-03,593.65,594.59,585.50,586.19,91070000,80.75 +2012-11-30,586.79,588.40,582.68,585.28,97829900,80.63 +2012-11-29,590.22,594.25,585.25,589.36,128674700,81.19 +2012-11-28,577.27,585.80,572.26,582.94,130216100,80.30 +2012-11-27,589.55,590.42,580.10,584.78,133332500,80.56 +2012-11-26,575.90,590.00,573.71,589.53,157644900,81.21 +2012-11-23,567.17,572.00,562.60,571.50,68206600,78.73 +2012-11-21,564.25,567.37,556.60,561.70,93250500,77.38 +2012-11-20,571.91,571.95,554.58,560.91,160688500,77.27 +2012-11-19,540.71,567.50,539.88,565.73,205829400,77.93 +2012-11-16,525.20,530.00,505.75,527.68,316723400,72.69 +2012-11-15,537.53,539.50,522.62,525.62,197477700,72.41 +2012-11-14,545.50,547.45,536.18,536.88,119292600,73.96 +2012-11-13,538.91,550.48,536.36,542.90,133237300,74.79 +2012-11-12,554.15,554.50,538.65,542.83,128950500,74.78 +2012-11-09,540.42,554.88,533.72,547.06,232478400,75.36 +2012-11-08,560.63,562.23,535.29,537.75,264036500,74.08 +2012-11-07,573.84,574.54,555.75,558.00,198412200,76.87 +2012-11-06,590.23,590.74,580.09,582.85,93729300,79.93 +2012-11-05,583.52,587.77,577.60,584.62,132283900,80.17 +2012-11-02,595.89,596.95,574.75,576.80,149843400,79.10 +2012-11-01,598.22,603.00,594.17,596.54,90324500,81.80 +2012-10-31,594.88,601.96,587.70,595.32,127500800,81.64 +2012-10-26,609.43,614.00,591.00,604.00,254608200,82.83 +2012-10-25,620.00,622.00,605.55,609.54,164081400,83.59 +2012-10-24,621.44,626.55,610.64,616.83,139631800,84.59 +2012-10-23,631.00,633.90,611.70,613.36,176786400,84.11 +2012-10-22,612.42,635.38,610.76,634.03,136682700,86.95 +2012-10-19,631.05,631.77,609.62,609.84,186021500,83.63 +2012-10-18,639.59,642.06,630.00,632.64,119156100,86.75 +2012-10-17,648.87,652.79,644.00,644.61,97259400,88.40 +2012-10-16,635.37,650.30,631.00,649.79,137442900,89.11 +2012-10-15,632.35,635.13,623.85,634.76,108125500,87.05 +2012-10-12,629.56,635.38,625.30,629.71,115003700,86.35 +2012-10-11,646.50,647.20,628.10,628.10,136520300,86.13 +2012-10-10,639.74,644.98,637.00,640.91,127589000,87.89 +2012-10-09,638.65,640.49,623.55,635.85,209649300,87.20 +2012-10-08,646.88,647.56,636.11,638.17,159498500,87.51 +2012-10-05,665.20,666.00,651.28,652.59,148501500,89.49 +2012-10-04,671.25,674.25,665.55,666.80,92681400,91.44 +2012-10-03,664.86,671.86,662.63,671.45,106070300,92.08 +2012-10-02,661.81,666.35,650.65,661.31,156998100,90.69 +2012-10-01,671.16,676.75,656.50,659.39,135898700,90.42 +2012-09-28,678.75,681.11,666.75,667.10,133777700,91.48 +2012-09-27,664.29,682.17,660.35,681.32,148522500,93.43 +2012-09-26,668.74,672.69,661.20,665.18,144125800,91.22 +2012-09-25,688.26,692.78,673.00,673.54,129697400,92.36 +2012-09-24,686.86,695.12,683.00,690.79,159941600,94.73 +2012-09-21,702.41,705.07,699.36,700.09,142897300,96.00 +2012-09-20,699.16,700.06,693.62,698.70,84142100,95.81 +2012-09-19,700.26,703.99,699.57,702.10,81718700,96.28 +2012-09-18,699.88,702.33,696.42,701.91,93375800,96.25 +2012-09-17,699.35,699.80,694.61,699.78,99507800,95.96 +2012-09-14,689.96,696.98,687.89,691.28,150118500,94.80 +2012-09-13,677.37,685.50,674.77,682.98,149590000,93.66 +2012-09-12,666.85,669.90,656.00,669.79,178058300,91.85 +2012-09-11,665.11,670.10,656.50,660.59,125995800,90.59 +2012-09-10,680.45,683.29,662.10,662.74,121999500,90.88 +2012-09-07,678.05,682.48,675.77,680.44,82416600,93.31 +2012-09-06,673.17,678.29,670.80,676.27,97799100,92.74 +2012-09-05,675.57,676.35,669.60,670.23,84093800,91.91 +2012-09-04,665.76,675.14,664.50,674.97,91973000,92.56 +2012-08-31,667.25,668.60,657.25,665.24,84580300,91.23 +2012-08-30,670.64,671.55,662.85,663.87,75674900,91.04 +2012-08-29,675.25,677.67,672.60,673.47,50701700,92.35 +2012-08-28,674.98,676.10,670.67,674.80,66854200,92.54 +2012-08-27,679.99,680.87,673.54,675.68,106752100,92.66 +2012-08-24,659.51,669.48,655.55,663.22,109335100,90.95 +2012-08-23,666.11,669.90,661.15,662.63,105032200,90.87 +2012-08-22,654.42,669.00,648.11,668.87,141330700,91.72 +2012-08-21,670.82,674.88,650.33,656.06,203179900,89.97 +2012-08-20,650.01,665.15,649.90,665.15,153346200,91.21 +2012-08-17,640.00,648.19,638.81,648.11,110690300,88.88 +2012-08-16,631.21,636.76,630.50,636.34,63633500,87.26 +2012-08-15,631.30,634.00,627.75,630.83,64335600,86.51 +2012-08-14,631.87,638.61,630.21,631.69,85042300,86.62 +2012-08-13,623.39,630.00,623.25,630.00,69708100,86.39 +2012-08-10,618.71,621.76,618.70,621.70,48734700,85.25 +2012-08-09,617.85,621.73,617.80,620.73,55410600,85.12 +2012-08-08,619.39,623.88,617.10,619.86,61176500,84.64 +2012-08-07,622.77,625.00,618.04,620.91,72611700,84.78 +2012-08-06,617.29,624.87,615.26,622.55,75525800,85.01 +2012-08-03,613.63,617.98,611.56,615.70,86230200,84.07 +2012-08-02,602.84,610.69,600.25,607.79,83039600,82.99 +2012-08-01,615.91,616.40,603.00,606.81,96125400,82.86 +2012-07-31,603.23,611.70,602.72,610.76,115581900,83.40 +2012-07-30,590.92,599.44,587.82,595.03,94785600,81.25 +2012-07-27,575.01,585.83,571.59,585.16,100984100,79.90 +2012-07-26,579.76,580.40,570.36,574.88,101658200,78.50 +2012-07-25,574.46,580.80,570.00,574.97,219328200,78.51 +2012-07-24,607.38,609.68,598.51,600.92,141283100,82.05 +2012-07-23,594.40,605.90,587.71,603.83,121993900,82.45 +2012-07-20,613.03,614.44,603.70,604.30,99367800,82.51 +2012-07-19,611.28,615.35,606.00,614.32,109215400,83.88 +2012-07-18,606.59,608.34,603.56,606.26,63175000,82.78 +2012-07-17,610.79,611.50,603.15,606.94,73406200,82.87 +2012-07-16,605.12,611.62,605.02,606.91,75315100,82.87 +2012-07-13,602.95,607.19,600.00,604.97,77856800,82.61 +2012-07-12,600.24,603.47,592.68,598.90,107010400,81.78 +2012-07-11,606.12,607.66,597.22,604.43,117330500,82.53 +2012-07-10,617.97,619.87,605.31,608.21,127989400,83.05 +2012-07-09,605.30,613.90,604.11,613.89,94851400,83.82 +2012-07-06,607.09,608.44,601.58,605.88,104732600,82.73 +2012-07-05,600.56,614.34,599.65,609.94,121095800,83.28 +2012-07-03,594.88,600.00,594.00,599.41,60428200,81.85 +2012-07-02,584.73,593.47,583.60,592.52,100023000,80.91 +2012-06-29,578.00,584.00,574.25,584.00,105375200,79.74 +2012-06-28,571.67,574.00,565.61,569.05,70709100,77.70 +2012-06-27,575.00,576.74,571.92,574.50,50749300,78.45 +2012-06-26,571.33,574.49,567.33,572.03,69134100,78.11 +2012-06-25,577.30,579.80,570.37,570.77,76095600,77.94 +2012-06-22,579.04,582.19,575.42,582.10,71117900,79.48 +2012-06-21,585.44,588.22,577.44,577.67,81587800,78.88 +2012-06-20,588.21,589.25,580.80,585.74,89735800,79.98 +2012-06-19,583.40,590.00,583.10,587.41,90351100,80.21 +2012-06-18,570.96,587.89,570.37,585.78,110103000,79.99 +2012-06-15,571.00,574.62,569.55,574.13,83813800,78.39 +2012-06-14,571.24,573.50,567.26,571.53,86393300,78.04 +2012-06-13,574.52,578.48,570.38,572.16,73395000,78.13 +2012-06-12,574.46,576.62,566.70,576.16,108845100,78.67 +2012-06-11,587.72,588.50,570.63,571.17,147816200,77.99 +2012-06-08,571.60,580.58,569.00,580.32,86879100,79.24 +2012-06-07,577.29,577.32,570.50,571.72,94941700,78.07 +2012-06-06,567.77,573.85,565.50,571.46,100363900,78.03 +2012-06-05,561.27,566.47,558.33,562.83,97053600,76.85 +2012-06-04,561.50,567.50,548.50,564.29,139248900,77.05 +2012-06-01,569.16,572.65,560.52,560.99,130246900,76.60 +2012-05-31,580.74,581.50,571.46,577.73,122918600,78.89 +2012-05-30,569.20,579.99,566.56,579.17,132357400,79.08 +2012-05-29,570.90,574.00,565.31,572.27,95127200,78.14 +2012-05-25,564.59,565.85,558.47,562.29,82126800,76.78 +2012-05-24,575.87,576.50,561.23,565.32,124057500,77.19 +2012-05-23,557.50,572.80,553.23,570.56,146224400,77.91 +2012-05-22,569.55,573.88,552.58,556.97,173717600,76.05 +2012-05-21,534.50,561.54,534.05,561.28,157776500,76.64 +2012-05-18,533.96,543.41,522.18,530.38,183073100,72.42 +2012-05-17,545.31,547.50,530.12,530.12,179305000,72.39 +2012-05-16,554.05,556.89,541.04,546.08,140224000,74.56 +2012-05-15,561.45,563.22,551.75,553.17,119084000,75.53 +2012-05-14,562.57,567.51,557.60,558.22,88156600,76.22 +2012-05-11,565.00,574.47,564.35,566.71,99886500,77.38 +2012-05-10,574.58,575.88,568.44,570.52,83300000,77.90 +2012-05-09,563.70,573.98,560.85,569.18,120176000,77.72 +2012-05-08,569.58,571.50,558.73,568.18,124313000,77.58 +2012-05-07,561.50,572.77,561.23,569.48,115029600,77.76 +2012-05-04,577.08,578.36,565.17,565.25,132498100,77.18 +2012-05-03,590.50,591.40,580.30,581.82,97637400,79.44 +2012-05-02,580.24,587.40,578.86,585.98,106847300,80.01 +2012-05-01,584.90,596.76,581.23,582.13,152749800,79.49 +2012-04-30,597.80,598.40,583.00,583.98,126536200,79.74 +2012-04-27,605.07,606.18,600.50,603.00,101680600,82.34 +2012-04-26,614.27,614.69,602.13,607.70,134017100,82.98 +2012-04-25,615.64,618.00,606.00,610.00,226444400,83.29 +2012-04-24,562.61,567.69,555.00,560.28,269037300,76.50 +2012-04-23,570.61,576.67,556.62,571.70,241632300,78.06 +2012-04-20,591.38,594.62,570.42,572.98,257746300,78.24 +2012-04-19,600.22,604.73,584.52,587.44,208679800,80.21 +2012-04-18,613.72,620.25,602.71,608.34,238632800,83.07 +2012-04-17,578.94,610.00,571.91,609.70,256382000,83.25 +2012-04-16,610.06,610.28,578.25,580.13,262696700,79.21 +2012-04-13,624.11,624.70,603.51,605.23,214911200,82.64 +2012-04-12,625.00,631.33,620.50,622.77,153584200,85.04 +2012-04-11,636.20,636.87,623.34,626.20,174153700,85.50 +2012-04-10,639.93,644.00,626.00,628.44,222431300,85.81 +2012-04-09,626.13,639.84,625.30,636.23,149384200,86.87 +2012-04-05,626.98,634.66,623.40,633.68,160324500,86.53 +2012-04-04,624.35,625.86,617.00,624.31,143245200,85.25 +2012-04-03,627.30,632.21,622.51,629.32,208639900,85.93 +2012-04-02,601.83,618.77,600.38,618.63,149587900,84.47 +2012-03-30,608.77,610.56,597.94,599.55,182759500,81.87 +2012-03-29,612.78,616.56,607.23,609.86,152059600,83.27 +2012-03-28,618.38,621.45,610.31,617.62,163865100,84.33 +2012-03-27,606.18,616.28,606.06,614.48,151782400,83.90 +2012-03-26,599.79,607.15,595.26,606.98,148935500,82.88 +2012-03-23,600.49,601.80,594.40,596.05,107622200,81.39 +2012-03-22,597.78,604.50,595.53,599.34,155967700,81.84 +2012-03-21,602.74,609.65,601.41,602.50,161010500,82.27 +2012-03-20,599.51,606.90,591.48,605.96,204165500,82.74 +2012-03-19,598.37,601.77,589.05,601.10,225309000,82.08 +2012-03-16,584.72,589.20,578.00,585.57,206371900,79.96 +2012-03-15,599.61,600.01,578.55,585.56,289929500,79.96 +2012-03-14,578.05,594.72,575.40,589.58,354711000,80.50 +2012-03-13,557.54,568.18,555.75,568.10,172713800,77.57 +2012-03-12,548.98,552.00,547.00,552.00,101820600,75.37 +2012-03-09,544.21,547.74,543.11,545.17,104729800,74.44 +2012-03-08,534.69,542.99,532.12,541.99,129114300,74.01 +2012-03-07,536.80,537.78,523.30,530.69,199630200,72.46 +2012-03-06,523.66,533.69,516.22,530.26,202559700,72.40 +2012-03-05,545.42,547.48,526.00,533.16,202281100,72.80 +2012-03-02,544.24,546.80,542.52,545.18,107928100,74.44 +2012-03-01,548.17,548.21,538.77,544.47,170817500,74.34 +2012-02-29,541.56,547.61,535.70,542.44,238002800,74.07 +2012-02-28,527.96,535.41,525.85,535.41,150096800,73.11 +2012-02-27,521.31,528.50,516.28,525.76,136895500,71.79 +2012-02-24,519.67,522.90,518.64,522.41,103768000,71.33 +2012-02-23,515.08,517.83,509.50,516.39,142006900,70.51 +2012-02-22,513.08,515.49,509.07,513.04,120825600,70.05 +2012-02-21,506.88,514.85,504.12,514.85,151398800,70.30 +2012-02-17,503.11,507.77,500.30,502.12,133951300,68.56 +2012-02-16,491.50,504.89,486.63,502.21,236138000,68.57 +2012-02-15,514.26,526.29,496.89,497.67,376530000,67.95 +2012-02-14,504.66,509.56,502.00,509.46,115099600,69.56 +2012-02-13,499.53,503.83,497.09,502.60,129304000,68.63 +2012-02-10,490.96,497.62,488.55,493.42,157825500,67.37 +2012-02-09,480.76,496.75,480.56,493.17,221053700,67.34 +2012-02-08,470.50,476.79,469.70,476.68,101972500,65.09 +2012-02-07,465.25,469.75,464.58,468.83,79055900,64.02 +2012-02-06,458.38,464.98,458.20,463.97,62353200,63.35 +2012-02-03,457.30,460.00,455.56,459.68,71649900,62.77 +2012-02-02,455.90,457.17,453.98,455.12,46699100,62.14 +2012-02-01,458.41,458.99,455.55,456.19,67511500,62.29 +2012-01-31,455.59,458.24,453.07,456.48,97920900,62.33 +2012-01-30,445.71,453.90,445.39,453.01,94835300,61.86 +2012-01-27,444.34,448.48,443.77,447.28,74927300,61.07 +2012-01-26,448.36,448.79,443.14,444.63,80996300,60.71 +2012-01-25,454.44,454.45,443.73,446.66,239578500,60.99 +2012-01-24,425.10,425.10,419.55,420.41,136909500,57.40 +2012-01-23,422.67,428.45,422.30,427.41,76515600,58.36 +2012-01-20,427.49,427.50,419.75,420.30,103493600,57.39 +2012-01-19,430.15,431.37,426.51,427.75,65434600,58.41 +2012-01-18,426.96,429.47,426.30,429.11,69197800,58.59 +2012-01-17,424.20,425.99,422.96,424.70,60724300,57.99 +2012-01-13,419.70,420.45,418.66,419.81,56505400,57.32 +2012-01-12,422.28,422.90,418.75,421.39,53146800,57.54 +2012-01-11,422.68,422.85,419.31,422.55,53771200,57.70 +2012-01-10,425.91,426.00,421.50,423.24,64549100,57.79 +2012-01-09,425.50,427.75,421.35,421.73,98506100,57.59 +2012-01-06,419.77,422.75,419.22,422.40,79573200,57.68 +2012-01-05,414.95,418.55,412.67,418.03,67817400,57.08 +2012-01-04,410.00,414.68,409.28,413.44,65005500,56.45 +2012-01-03,409.40,412.50,409.00,411.23,75555200,56.15 +2011-12-30,403.51,406.28,403.49,405.00,44915500,55.30 +2011-12-29,403.40,405.65,400.51,405.12,53994500,55.32 +2011-12-28,406.89,408.25,401.34,402.64,57165500,54.98 +2011-12-27,403.10,409.09,403.02,406.53,66269000,55.51 +2011-12-23,399.69,403.59,399.49,403.33,67349800,55.07 +2011-12-22,397.00,399.13,396.10,398.55,50589700,54.42 +2011-12-21,396.69,397.30,392.01,396.45,65737000,54.13 +2011-12-20,387.76,396.10,387.26,395.95,84303800,54.07 +2011-12-19,382.47,384.85,380.48,382.21,58882600,52.19 +2011-12-16,380.36,384.15,379.57,381.02,105369600,52.03 +2011-12-15,383.33,383.74,378.31,378.94,64050000,51.74 +2011-12-14,386.70,387.38,377.68,380.19,101721900,51.91 +2011-12-13,393.00,395.40,387.10,388.81,84732200,53.09 +2011-12-12,391.68,393.90,389.45,391.84,75266800,53.50 +2011-12-09,392.85,394.04,391.03,393.62,74248300,53.75 +2011-12-08,391.45,395.50,390.23,390.66,94089100,53.34 +2011-12-07,389.93,390.94,386.76,389.09,76186600,53.13 +2011-12-06,392.51,394.63,389.38,390.95,70899500,53.38 +2011-12-05,393.49,396.41,390.39,393.01,89302500,53.66 +2011-12-02,389.83,393.63,388.58,389.70,94763900,53.21 +2011-12-01,382.54,389.00,380.75,387.93,96795300,52.97 +2011-11-30,381.29,382.28,378.30,382.20,101484600,52.19 +2011-11-29,375.84,378.83,370.20,373.20,93963800,50.96 +2011-11-28,372.35,376.72,370.33,376.12,86603300,51.36 +2011-11-25,368.42,371.15,363.32,363.57,63690200,49.64 +2011-11-23,374.51,375.84,366.88,366.99,107067800,50.11 +2011-11-22,371.02,377.93,370.94,376.51,102255300,51.41 +2011-11-21,370.40,371.68,365.91,369.01,111995100,50.39 +2011-11-18,378.92,379.99,374.88,374.94,92984500,51.20 +2011-11-17,383.98,384.58,375.50,377.41,119975100,51.53 +2011-11-16,389.25,391.14,384.32,384.77,87302600,52.54 +2011-11-15,380.80,389.50,379.45,388.83,107702700,53.09 +2011-11-14,383.52,385.25,378.20,379.26,108226300,51.79 +2011-11-11,386.61,388.70,380.26,384.62,163446500,52.52 +2011-11-10,397.03,397.21,382.15,385.22,186188100,52.60 +2011-11-09,396.97,400.89,394.23,395.28,139671000,53.97 +2011-11-08,402.21,408.00,401.56,406.23,100110500,55.47 +2011-11-07,399.91,400.00,396.13,399.73,67568900,54.58 +2011-11-04,402.03,403.44,399.16,400.24,75557300,54.65 +2011-11-03,399.07,403.40,395.36,403.07,110346600,55.04 +2011-11-02,400.09,400.44,395.11,397.41,81837700,54.26 +2011-11-01,397.41,399.50,393.22,396.51,132947500,54.14 +2011-10-31,402.42,409.33,401.05,404.78,96375300,55.27 +2011-10-28,403.00,406.35,402.51,404.95,80710700,55.29 +2011-10-27,407.56,409.00,401.89,404.69,123666200,55.26 +2011-10-26,401.76,402.55,393.15,400.60,114076200,54.70 +2011-10-25,405.03,406.55,397.38,397.77,107606800,54.31 +2011-10-24,396.18,406.50,395.40,405.77,125534500,55.41 +2011-10-21,398.10,399.14,390.75,392.87,155311100,53.64 +2011-10-20,400.00,400.35,394.21,395.31,137317600,53.98 +2011-10-19,401.35,408.42,397.80,398.62,276014900,54.43 +2011-10-18,421.76,424.81,415.99,422.24,220400600,57.65 +2011-10-17,421.74,426.70,415.94,419.99,171511200,57.35 +2011-10-14,416.83,422.00,415.27,422.00,143341800,57.62 +2011-10-13,404.98,408.43,402.85,408.43,106546300,55.77 +2011-10-12,407.34,409.25,400.14,402.19,155571500,54.92 +2011-10-11,392.57,403.18,391.50,400.29,151421900,54.66 +2011-10-10,379.09,388.81,378.21,388.81,110628700,53.09 +2011-10-07,375.78,377.74,368.49,369.80,133864500,50.49 +2011-10-06,373.33,384.78,371.80,377.37,203145600,51.53 +2011-10-05,367.86,379.82,360.30,378.25,196617400,51.65 +2011-10-04,374.57,381.80,354.24,372.50,308419300,50.86 +2011-10-03,380.37,382.64,373.17,374.60,167274800,51.15 +2011-09-30,387.12,388.89,381.18,381.32,136910200,52.07 +2011-09-29,401.92,402.21,386.21,390.57,162771700,53.33 +2011-09-28,400.19,403.74,396.51,397.01,107409400,54.21 +2011-09-27,408.73,409.25,398.06,399.26,158124400,54.52 +2011-09-26,399.86,403.98,391.30,403.17,203219100,55.05 +2011-09-23,400.28,406.74,399.85,404.30,136569300,55.21 +2011-09-22,401.03,409.82,396.70,401.82,242120200,54.87 +2011-09-21,419.64,421.59,412.00,412.14,151494000,56.28 +2011-09-20,415.25,422.86,411.19,413.45,193938500,56.45 +2011-09-19,397.00,413.23,395.20,411.63,205965200,56.21 +2011-09-16,395.54,400.50,395.03,400.50,174628300,54.69 +2011-09-15,391.43,393.66,389.90,392.96,104454700,53.66 +2011-09-14,387.02,392.21,385.76,389.30,133681100,53.16 +2011-09-13,382.14,386.21,380.25,384.62,110140100,52.52 +2011-09-12,373.00,380.88,371.90,379.94,116958100,51.88 +2011-09-09,383.93,386.00,375.02,377.48,141203300,51.54 +2011-09-08,382.40,388.61,382.31,384.14,104039600,52.45 +2011-09-07,385.56,385.60,382.00,383.93,87644200,52.42 +2011-09-06,367.37,380.33,366.48,379.74,127424500,51.85 +2011-09-02,374.74,378.00,371.83,374.05,109734800,51.07 +2011-09-01,385.82,387.34,380.72,381.03,85931300,52.03 +2011-08-31,390.57,392.08,381.86,384.83,130646600,52.55 +2011-08-30,388.25,391.84,386.21,389.99,104480600,53.25 +2011-08-29,388.18,391.50,388.00,389.97,101317300,53.25 +2011-08-26,371.17,383.80,370.80,383.58,160369300,52.38 +2011-08-25,365.08,375.45,365.00,373.72,217836500,51.03 +2011-08-24,373.47,378.96,370.60,376.18,156566900,51.37 +2011-08-23,360.30,373.64,357.00,373.60,164208800,51.01 +2011-08-22,364.51,364.88,355.09,356.44,133828800,48.67 +2011-08-19,362.17,367.00,356.00,356.03,193972100,48.61 +2011-08-18,370.84,372.65,361.37,366.05,212858800,49.98 +2011-08-17,382.31,384.52,378.00,380.44,110515300,51.95 +2011-08-16,381.52,383.37,376.06,380.48,124687500,51.95 +2011-08-15,379.63,384.97,378.09,383.41,115136000,52.35 +2011-08-12,378.07,379.64,374.23,376.99,132244000,51.48 +2011-08-11,370.52,375.45,364.72,373.70,185492300,51.03 +2011-08-10,371.15,374.65,362.50,363.69,219664200,49.66 +2011-08-09,361.30,374.61,355.00,374.01,270645900,51.07 +2011-08-08,361.69,367.77,353.02,353.21,285958400,48.23 +2011-08-05,380.44,383.50,362.57,373.62,301147700,51.02 +2011-08-04,389.41,391.32,377.35,377.37,217851900,51.53 +2011-08-03,390.98,393.55,382.24,392.57,183127000,53.60 +2011-08-02,397.65,397.90,388.35,388.91,159884900,53.10 +2011-08-01,397.78,399.50,392.37,396.75,153209000,54.17 +2011-07-29,387.64,395.15,384.00,390.48,158146100,53.32 +2011-07-28,391.62,396.99,388.13,391.82,148508500,53.50 +2011-07-27,400.59,402.64,392.15,392.59,164831100,53.61 +2011-07-26,400.00,404.50,399.68,403.41,119145600,55.08 +2011-07-25,390.35,400.00,389.62,398.50,147451500,54.41 +2011-07-22,388.32,395.05,387.75,393.30,129182200,53.70 +2011-07-21,386.95,390.06,383.90,387.29,131633600,52.88 +2011-07-20,396.12,396.27,386.00,386.90,235335100,52.83 +2011-07-19,378.00,378.65,373.32,376.85,204786400,51.46 +2011-07-18,365.43,374.65,365.28,373.80,143163300,51.04 +2011-07-15,361.17,365.00,359.17,364.92,121116800,49.83 +2011-07-14,361.01,361.61,356.34,357.77,107633400,48.85 +2011-07-13,358.33,360.00,356.38,358.02,97909700,48.89 +2011-07-12,353.53,357.68,348.62,353.75,112902300,48.30 +2011-07-11,356.34,359.77,352.82,354.00,110668600,48.34 +2011-07-08,353.34,360.00,352.20,359.71,122408300,49.12 +2011-07-07,354.67,358.00,354.00,357.20,99915900,48.77 +2011-07-06,348.95,354.10,346.71,351.76,111156500,48.03 +2011-07-05,343.00,349.83,342.50,349.43,88763500,47.71 +2011-07-01,335.95,343.50,334.20,343.26,108828300,46.87 +2011-06-30,334.70,336.13,332.84,335.67,80738700,45.83 +2011-06-29,336.04,336.37,331.88,334.04,88136300,45.61 +2011-06-28,333.65,336.70,333.44,335.26,73574900,45.78 +2011-06-27,327.59,333.90,327.25,332.04,84953400,45.34 +2011-06-24,331.37,333.15,325.09,326.35,109951800,44.56 +2011-06-23,318.94,331.69,318.12,331.23,139939800,45.23 +2011-06-22,325.16,328.90,322.38,322.61,97645800,44.05 +2011-06-21,316.68,325.80,315.20,325.30,123345600,44.42 +2011-06-20,317.36,317.70,310.50,315.32,160161400,43.06 +2011-06-17,328.99,329.25,319.36,320.26,153755000,43.73 +2011-06-16,326.90,328.68,318.33,325.16,127647800,44.40 +2011-06-15,329.75,330.30,324.88,326.75,99799000,44.62 +2011-06-14,330.00,333.25,329.31,332.44,83642300,45.39 +2011-06-13,327.20,328.31,325.07,326.60,82368300,44.60 +2011-06-10,330.55,331.66,325.51,325.90,108488800,44.50 +2011-06-09,333.25,333.67,330.75,331.49,68772200,45.26 +2011-06-08,331.78,334.80,330.65,332.24,83430900,45.37 +2011-06-07,338.17,338.22,331.90,332.04,132446300,45.34 +2011-06-06,345.70,347.05,337.81,338.04,115485300,46.16 +2011-06-03,343.18,345.33,342.01,343.44,78312500,46.90 +2011-06-02,346.50,347.98,344.30,346.10,84695800,47.26 +2011-06-01,348.87,352.13,344.65,345.51,138670700,47.18 +2011-05-31,341.10,347.83,341.00,347.83,104438600,47.49 +2011-05-27,334.80,337.63,334.31,337.41,50899800,46.07 +2011-05-26,335.97,336.89,334.43,335.00,55640200,45.74 +2011-05-25,333.43,338.56,332.85,336.78,73556000,45.99 +2011-05-24,335.50,335.90,331.34,332.19,80481800,45.36 +2011-05-23,329.97,335.98,329.42,334.40,95900000,45.66 +2011-05-20,339.56,340.95,335.02,335.22,84492100,45.77 +2011-05-19,342.08,342.41,338.67,340.53,65292500,46.50 +2011-05-18,336.47,341.05,336.00,339.87,83694100,46.41 +2011-05-17,332.00,336.14,330.73,336.14,113083600,45.90 +2011-05-16,339.20,341.22,332.60,333.30,112443800,45.51 +2011-05-13,345.66,346.25,340.35,340.50,81529000,46.49 +2011-05-12,346.12,347.12,342.27,346.57,80500000,47.32 +2011-05-11,349.02,350.00,345.24,347.23,84000000,47.41 +2011-05-10,348.89,349.69,346.66,349.45,70522900,47.72 +2011-05-09,347.86,349.20,346.53,347.60,51186800,47.46 +2011-05-06,349.69,350.00,346.21,346.66,70033600,47.33 +2011-05-05,348.40,350.95,346.05,346.75,83992300,47.35 +2011-05-04,348.26,351.83,346.88,349.57,97312600,47.73 +2011-05-03,347.99,349.89,345.62,348.20,78337000,47.55 +2011-05-02,349.74,350.47,345.50,346.28,110678400,47.28 +2011-04-29,346.78,353.95,346.67,350.13,251586300,47.81 +2011-04-28,346.19,349.75,345.52,346.75,90239800,47.35 +2011-04-27,352.24,352.35,347.10,350.15,89053300,47.81 +2011-04-26,353.62,354.99,349.35,350.42,84700000,47.85 +2011-04-25,350.34,353.75,350.30,353.01,66636500,48.20 +2011-04-21,355.00,355.13,348.52,350.70,188452600,47.89 +2011-04-20,343.51,345.75,341.50,342.41,175166600,46.75 +2011-04-19,333.10,337.98,331.71,337.86,104844600,46.13 +2011-04-18,326.10,332.23,320.16,331.85,152474700,45.31 +2011-04-15,333.30,333.64,326.80,327.46,113401400,44.71 +2011-04-14,334.80,336.00,332.06,332.42,75450200,45.39 +2011-04-13,335.02,336.14,332.52,336.13,86555000,45.90 +2011-04-12,330.49,333.73,330.20,332.40,106409800,45.39 +2011-04-11,334.06,335.67,330.02,330.80,99736700,45.17 +2011-04-08,339.92,340.15,333.95,335.06,94383800,45.75 +2011-04-07,338.10,340.43,336.03,338.08,93361800,46.16 +2011-04-06,341.22,343.90,337.14,338.04,100634800,46.16 +2011-04-05,336.99,342.25,336.00,338.89,120682800,46.27 +2011-04-04,344.31,344.60,338.40,341.19,115021200,46.59 +2011-04-01,351.11,351.59,343.30,344.56,104665400,47.05 +2011-03-31,346.36,349.80,346.06,348.51,68504800,47.59 +2011-03-30,350.64,350.88,347.44,348.63,82351500,47.60 +2011-03-29,347.66,350.96,346.06,350.96,88225200,47.92 +2011-03-28,353.15,354.32,350.44,350.44,77338800,47.85 +2011-03-25,348.07,352.06,347.02,351.54,112227500,48.00 +2011-03-24,341.85,346.00,338.86,344.97,101178000,47.10 +2011-03-23,339.28,340.22,335.95,339.19,93249100,46.31 +2011-03-22,342.56,342.62,339.14,341.20,81480700,46.59 +2011-03-21,335.99,339.74,335.26,339.30,102350500,46.33 +2011-03-18,337.13,338.20,330.00,330.67,188303500,45.15 +2011-03-17,336.83,339.61,330.66,334.64,164855600,45.69 +2011-03-16,342.00,343.00,326.26,330.01,290502800,45.06 +2011-03-15,342.10,347.84,340.10,345.43,180270300,47.17 +2011-03-14,353.18,356.48,351.31,353.56,108989300,48.28 +2011-03-11,345.33,352.32,345.00,351.99,117770100,48.06 +2011-03-10,349.12,349.77,344.90,346.67,126884800,47.34 +2011-03-09,354.69,354.76,350.60,352.47,113326500,48.13 +2011-03-08,354.91,357.40,352.25,355.76,89079200,48.58 +2011-03-07,361.40,361.67,351.31,355.36,136530800,48.52 +2011-03-04,360.07,360.29,357.75,360.00,113316700,49.16 +2011-03-03,357.19,359.79,355.92,359.56,125197100,49.10 +2011-03-02,349.96,354.35,348.40,352.12,150647700,48.08 +2011-03-01,355.47,355.72,347.68,349.31,114034200,47.70 +2011-02-28,351.24,355.05,351.12,353.21,100768500,48.23 +2011-02-25,345.26,348.43,344.80,348.16,95004700,47.54 +2011-02-24,344.02,345.15,338.37,342.88,124975200,46.82 +2011-02-23,338.77,344.64,338.61,342.62,167963600,46.78 +2011-02-22,342.15,345.40,337.72,338.61,218138900,46.24 +2011-02-18,358.71,359.50,349.52,350.56,204014300,47.87 +2011-02-17,357.25,360.27,356.52,358.30,132645800,48.92 +2011-02-16,360.80,364.90,360.50,363.13,120289400,49.58 +2011-02-15,359.19,359.97,357.55,359.90,71043700,49.14 +2011-02-14,356.79,359.48,356.71,359.18,77604100,49.04 +2011-02-11,354.75,357.80,353.54,356.85,91893200,48.73 +2011-02-10,357.39,360.00,348.00,354.54,232137500,48.41 +2011-02-09,355.19,359.00,354.87,358.16,120686300,48.91 +2011-02-08,353.68,355.52,352.15,355.20,95260200,48.50 +2011-02-07,347.89,353.25,347.64,351.88,121255400,48.05 +2011-02-04,343.64,346.70,343.51,346.50,80460100,47.31 +2011-02-03,343.80,344.24,338.55,343.44,98449400,46.90 +2011-02-02,344.45,345.25,343.55,344.32,64738800,47.02 +2011-02-01,341.30,345.65,340.98,345.03,106658300,47.11 +2011-01-31,335.80,340.04,334.30,339.32,94311700,46.33 +2011-01-28,344.17,344.40,333.53,336.10,148014300,45.89 +2011-01-27,343.78,344.69,342.83,343.21,71256500,46.86 +2011-01-26,342.96,345.60,341.50,343.85,126718900,46.95 +2011-01-25,336.33,341.44,334.57,341.40,136717000,46.62 +2011-01-24,326.87,337.45,326.72,337.45,143670800,46.08 +2011-01-21,333.77,334.88,326.63,326.72,188600300,44.61 +2011-01-20,336.43,338.30,330.12,332.68,191197300,45.43 +2011-01-19,348.35,348.60,336.88,338.84,283903200,46.27 +2011-01-18,329.52,344.76,326.00,340.65,470249500,46.51 +2011-01-14,345.89,348.48,344.44,348.48,77210000,47.58 +2011-01-13,345.16,346.64,343.85,345.68,74195100,47.20 +2011-01-12,343.25,344.43,342.00,344.42,75647600,47.03 +2011-01-11,344.88,344.96,339.47,341.64,111027000,46.65 +2011-01-10,338.83,343.23,337.17,342.45,112140000,46.76 +2011-01-07,333.99,336.35,331.90,336.12,77982800,45.90 +2011-01-06,334.72,335.25,332.90,333.73,75107200,45.57 +2011-01-05,329.55,334.34,329.50,334.00,63879900,45.61 +2011-01-04,332.44,332.50,328.15,331.29,77270200,45.24 +2011-01-03,325.64,330.26,324.84,329.57,111284600,45.00 +2010-12-31,322.95,323.48,321.31,322.56,48377000,44.04 +2010-12-30,325.48,325.51,323.05,323.66,39373600,44.19 +2010-12-29,326.22,326.45,325.10,325.29,40784800,44.42 +2010-12-28,325.91,326.66,325.06,325.47,43981000,44.44 +2010-12-27,322.85,325.44,321.52,324.68,62454000,44.33 +2010-12-23,325.00,325.15,323.17,323.60,55789300,44.19 +2010-12-22,324.36,325.72,323.55,325.16,66480400,44.40 +2010-12-21,323.00,324.39,322.05,324.20,64088500,44.27 +2010-12-20,321.60,323.25,318.23,322.21,96402600,44.00 +2010-12-17,321.63,321.79,320.23,320.61,96732300,43.78 +2010-12-16,321.09,322.61,320.10,321.25,80507700,43.87 +2010-12-15,320.00,323.00,319.19,320.36,104328000,43.74 +2010-12-14,321.73,322.54,319.00,320.29,87752000,43.73 +2010-12-13,324.37,325.06,321.00,321.67,109953900,43.92 +2010-12-10,319.65,321.05,318.60,320.56,65627800,43.77 +2010-12-09,322.13,322.50,319.02,319.76,73537800,43.66 +2010-12-08,319.63,321.02,317.11,321.01,80483900,43.83 +2010-12-07,323.80,323.99,318.12,318.21,97863500,43.45 +2010-12-06,318.64,322.33,318.42,320.15,112120400,43.71 +2010-12-03,317.01,318.65,316.34,317.44,85523200,43.34 +2010-12-02,317.53,319.00,314.89,318.15,115709300,43.44 +2010-12-01,315.27,317.75,315.00,316.40,115437700,43.20 +2010-11-30,313.54,314.36,310.87,311.15,125464500,42.49 +2010-11-29,315.50,317.48,311.38,316.87,111446300,43.27 +2010-11-26,313.74,317.70,312.94,315.00,59396400,43.01 +2010-11-24,312.00,315.40,311.75,314.80,103431300,42.98 +2010-11-23,310.45,311.75,306.56,308.73,129861900,42.16 +2010-11-22,306.68,313.36,305.87,313.36,98268800,42.79 +2010-11-19,307.97,308.40,305.24,306.73,96210800,41.88 +2010-11-18,305.20,309.67,304.69,308.43,123622800,42.11 +2010-11-17,301.20,303.99,297.76,300.50,119862400,41.03 +2010-11-16,305.72,307.60,299.32,301.59,164412500,41.18 +2010-11-15,308.46,310.54,306.27,307.04,100901500,41.92 +2010-11-12,316.00,316.50,303.63,308.03,198961700,42.06 +2010-11-11,315.00,318.40,314.25,316.65,90321000,43.24 +2010-11-10,316.64,318.77,313.55,318.03,96056800,43.43 +2010-11-09,321.05,321.30,314.50,316.08,95886000,43.16 +2010-11-08,317.20,319.77,316.76,318.62,70439600,43.51 +2010-11-05,317.99,319.57,316.75,317.13,90313300,43.30 +2010-11-04,315.45,320.18,315.03,318.27,160622000,43.46 +2010-11-03,311.37,312.88,308.53,312.80,127087100,42.71 +2010-11-02,307.00,310.19,307.00,309.36,108482500,42.24 +2010-11-01,302.22,305.60,302.20,304.18,105972300,41.53 +2010-10-29,304.23,305.88,300.87,300.98,107627800,41.10 +2010-10-28,307.95,308.00,300.90,305.24,137762800,41.68 +2010-10-27,307.65,309.90,305.60,307.83,99750700,42.03 +2010-10-26,306.87,309.74,305.65,308.05,98232400,42.06 +2010-10-25,309.09,311.60,308.44,308.84,98115500,42.17 +2010-10-22,309.07,310.04,306.30,307.47,93194500,41.98 +2010-10-21,312.36,314.74,306.80,309.52,137865000,42.26 +2010-10-20,309.00,314.25,306.87,310.53,180406100,42.40 +2010-10-19,303.40,313.77,300.02,309.49,308196000,42.26 +2010-10-18,318.47,319.00,314.29,318.00,273252700,43.42 +2010-10-15,307.44,315.00,304.91,314.74,230548500,42.98 +2010-10-14,301.69,302.47,300.40,302.31,108824100,41.28 +2010-10-13,300.20,301.96,299.80,300.14,157523100,40.98 +2010-10-12,295.41,299.50,292.49,298.54,139636000,40.76 +2010-10-11,294.74,297.24,294.60,295.36,106938300,40.33 +2010-10-08,291.71,294.50,290.00,294.07,164600800,40.15 +2010-10-07,290.34,290.48,286.91,289.22,102099900,39.49 +2010-10-06,289.59,291.99,285.26,289.19,167717200,39.49 +2010-10-05,282.00,289.45,281.82,288.94,125491800,39.45 +2010-10-04,281.60,282.90,277.77,278.64,108825500,38.05 +2010-10-01,286.15,286.58,281.35,282.52,112035700,38.58 +2010-09-30,289.00,290.00,281.25,283.75,168347900,38.74 +2010-09-29,287.23,289.81,286.00,287.37,117411000,39.24 +2010-09-28,291.77,291.77,275.00,286.86,258760600,39.17 +2010-09-27,293.98,294.73,291.01,291.16,120708700,39.76 +2010-09-24,292.10,293.53,290.55,292.32,162372000,39.91 +2010-09-23,286.33,292.76,286.00,288.92,196529200,39.45 +2010-09-22,282.71,287.98,282.41,287.75,146322400,39.29 +2010-09-21,283.86,287.35,282.79,283.77,167018600,38.75 +2010-09-20,276.08,283.78,275.85,283.23,164669400,38.67 +2010-09-17,277.69,277.96,273.68,275.37,158619300,37.60 +2010-09-16,270.24,276.67,269.50,276.57,163025800,37.76 +2010-09-15,268.17,270.38,267.84,270.22,107342200,36.90 +2010-09-14,266.21,269.17,265.52,268.06,102037600,36.60 +2010-09-13,265.82,268.28,265.76,267.04,97195000,36.46 +2010-09-10,263.19,264.50,261.40,263.41,96885600,35.97 +2010-09-09,265.04,266.52,262.92,263.07,109643800,35.92 +2010-09-08,259.78,264.39,259.10,262.92,131637800,35.90 +2010-09-07,256.64,259.53,256.25,257.81,85639400,35.20 +2010-09-03,255.09,258.78,254.50,258.77,130197200,35.33 +2010-09-02,251.26,252.17,248.57,252.17,103856900,34.43 +2010-09-01,247.47,251.46,246.28,250.33,174259400,34.18 +2010-08-31,241.85,244.56,240.35,243.10,105196700,33.19 +2010-08-30,240.76,245.75,240.68,242.50,95822300,33.11 +2010-08-27,241.75,242.61,235.56,241.62,137097800,32.99 +2010-08-26,245.45,245.75,240.28,240.28,116626300,32.81 +2010-08-25,238.04,243.99,237.20,242.89,149216900,33.17 +2010-08-24,242.67,243.00,238.65,239.93,150641400,32.76 +2010-08-23,251.79,252.00,245.25,245.80,103510400,33.56 +2010-08-20,249.39,253.92,249.00,249.64,96057500,34.09 +2010-08-19,252.84,253.48,248.68,249.88,106676500,34.12 +2010-08-18,252.36,254.67,251.58,253.07,84924000,34.56 +2010-08-17,250.08,254.63,249.20,251.97,105660100,34.41 +2010-08-16,247.58,250.01,246.62,247.64,79607500,33.81 +2010-08-13,251.65,251.88,249.09,249.10,88717300,34.01 +2010-08-12,246.69,253.10,246.12,251.79,133730100,34.38 +2010-08-11,255.40,255.69,249.81,250.19,155013600,34.16 +2010-08-10,259.85,260.45,257.55,259.41,112980000,35.42 +2010-08-09,261.48,262.15,259.57,261.75,75782000,35.74 +2010-08-06,259.78,261.49,257.63,260.09,111224400,35.51 +2010-08-05,261.73,263.18,260.55,261.70,72274300,35.73 +2010-08-04,262.84,264.28,260.31,262.98,105093800,35.91 +2010-08-03,261.01,263.26,259.42,261.93,104413400,35.77 +2010-08-02,260.44,262.59,259.62,261.85,107013900,35.75 +2010-07-30,255.89,259.70,254.90,257.25,112052500,35.13 +2010-07-29,260.71,262.65,256.10,258.11,160951700,35.24 +2010-07-28,263.67,265.99,260.25,260.96,129996300,35.63 +2010-07-27,260.87,264.80,260.30,264.08,146192900,36.06 +2010-07-26,260.00,260.10,257.71,259.28,105137900,35.40 +2010-07-23,257.09,260.38,256.28,259.94,133347200,35.49 +2010-07-22,257.68,260.00,255.31,259.02,161329700,35.37 +2010-07-21,265.09,265.15,254.00,254.24,296417800,34.72 +2010-07-20,242.90,252.90,240.01,251.89,268737700,34.39 +2010-07-19,249.88,249.88,239.60,245.58,256119500,33.53 +2010-07-16,253.18,254.97,248.41,249.90,259964600,34.12 +2010-07-15,248.23,256.97,247.30,251.45,206216500,34.33 +2010-07-14,249.38,255.80,249.00,252.73,203011900,34.51 +2010-07-13,256.32,256.40,246.43,251.80,297731000,34.38 +2010-07-12,258.53,261.85,254.86,257.29,140719600,35.13 +2010-07-09,256.89,259.90,255.16,259.62,108330600,35.45 +2010-07-08,262.48,262.90,254.89,258.09,184536100,35.24 +2010-07-07,250.49,258.77,249.75,258.67,163639000,35.32 +2010-07-06,251.00,252.80,246.16,248.63,153808900,33.95 +2010-07-02,250.49,250.93,243.20,246.94,173460700,33.72 +2010-07-01,254.30,254.80,243.22,248.48,255724000,33.93 +2010-06-30,256.71,257.97,250.01,251.53,184863000,34.35 +2010-06-29,264.12,264.39,254.30,256.17,283336200,34.98 +2010-06-28,266.93,269.75,264.52,268.30,146237000,36.64 +2010-06-25,270.06,270.27,265.81,266.70,137485600,36.42 +2010-06-24,271.00,273.20,268.10,269.00,178569300,36.73 +2010-06-23,274.58,274.66,267.90,270.97,192114300,37.00 +2010-06-22,272.16,275.97,271.50,273.85,179315500,37.39 +2010-06-21,277.69,279.01,268.73,270.17,194122600,36.89 +2010-06-18,272.25,275.00,271.42,274.07,196155400,37.42 +2010-06-17,270.60,272.90,269.50,271.87,218213800,37.12 +2010-06-16,261.10,267.75,260.63,267.25,195919500,36.49 +2010-06-15,255.64,259.85,255.50,259.69,146268500,35.46 +2010-06-14,255.96,259.15,254.01,254.28,150740100,34.72 +2010-06-11,248.23,253.86,247.37,253.51,136439800,34.62 +2010-06-10,244.84,250.98,242.20,250.51,194089000,34.21 +2010-06-09,251.47,251.90,242.49,243.20,213657500,33.21 +2010-06-08,253.24,253.80,245.65,249.33,250192600,34.04 +2010-06-07,258.29,259.15,250.55,250.94,221735500,34.26 +2010-06-04,258.21,261.90,254.63,255.96,189576100,34.95 +2010-06-03,265.18,265.55,260.41,263.12,162526700,35.93 +2010-06-02,264.54,264.80,260.33,263.95,172137000,36.04 +2010-06-01,259.69,265.94,258.96,260.83,219118200,35.62 +2010-05-28,259.39,259.40,253.35,256.88,203903700,35.08 +2010-05-27,250.60,253.89,249.11,253.35,166570600,34.59 +2010-05-26,250.08,252.13,243.75,244.11,212663500,33.33 +2010-05-25,239.35,246.76,237.16,245.22,262001600,33.48 +2010-05-24,247.28,250.90,246.26,246.76,188559700,33.69 +2010-05-21,232.82,244.50,231.35,242.32,305972800,33.09 +2010-05-20,241.88,243.85,236.21,237.76,320728800,32.46 +2010-05-19,249.50,252.92,244.85,248.34,256431700,33.91 +2010-05-18,256.98,258.55,250.26,252.36,195669600,34.46 +2010-05-17,254.70,256.18,247.71,254.22,190708700,34.71 +2010-05-14,255.16,256.48,249.50,253.82,189840700,34.66 +2010-05-13,263.22,265.00,256.40,258.36,149928100,35.28 +2010-05-12,259.24,263.13,258.70,262.09,163594900,35.79 +2010-05-11,251.84,259.89,250.50,256.52,212226700,35.03 +2010-05-10,250.25,254.65,248.53,253.99,246076600,34.68 +2010-05-07,243.71,246.57,225.21,235.86,419004600,32.21 +2010-05-06,253.83,258.25,199.25,246.25,321465200,33.62 +2010-05-05,253.03,258.14,248.73,255.99,220775800,34.95 +2010-05-04,262.89,263.29,256.75,258.68,180954900,35.32 +2010-05-03,263.84,267.88,262.88,266.35,113585500,36.37 +2010-04-30,269.31,270.57,261.00,261.09,135615900,35.65 +2010-04-29,263.02,270.00,262.01,268.64,139710200,36.68 +2010-04-28,263.25,264.00,256.41,261.60,189600600,35.72 +2010-04-27,267.27,267.84,260.52,262.04,177335900,35.78 +2010-04-26,271.88,272.46,268.19,269.50,119767200,36.80 +2010-04-23,267.99,272.18,267.00,270.83,199238900,36.98 +2010-04-22,258.24,266.75,256.20,266.47,198356200,36.39 +2010-04-21,258.80,260.25,255.73,259.22,245597800,35.40 +2010-04-20,248.54,249.25,242.96,244.59,184581600,33.40 +2010-04-19,247.03,247.89,241.77,247.07,141731100,33.74 +2010-04-16,248.57,251.14,244.55,247.40,187636400,33.78 +2010-04-15,245.78,249.03,245.51,248.92,94196200,33.99 +2010-04-14,245.28,245.81,244.07,245.69,101019100,33.55 +2010-04-13,241.86,242.80,241.11,242.43,76552700,33.10 +2010-04-12,242.20,243.07,241.81,242.29,83256600,33.08 +2010-04-09,241.43,241.89,240.46,241.79,83545700,33.02 +2010-04-08,240.44,241.54,238.04,239.95,143247300,32.76 +2010-04-07,239.55,241.92,238.66,240.60,157125500,32.85 +2010-04-06,238.20,240.24,237.00,239.54,111754300,32.71 +2010-04-05,234.98,238.51,234.77,238.49,171126900,32.56 +2010-04-01,237.41,238.73,232.75,235.97,150786300,32.22 +2010-03-31,235.49,236.61,234.46,235.00,107664900,32.09 +2010-03-30,236.60,237.48,234.25,235.85,131827500,32.20 +2010-03-29,233.00,233.87,231.62,232.39,135186100,31.73 +2010-03-26,228.95,231.95,228.55,230.90,160218800,31.53 +2010-03-25,230.92,230.97,226.25,226.65,135571100,30.95 +2010-03-24,227.64,230.20,227.51,229.37,149445100,31.32 +2010-03-23,225.64,228.78,224.10,228.36,150607800,31.18 +2010-03-22,220.47,226.00,220.15,224.75,114104900,30.69 +2010-03-19,224.79,225.24,221.23,222.25,139861400,30.35 +2010-03-18,224.10,225.00,222.61,224.65,85527400,30.67 +2010-03-17,224.90,226.45,223.27,224.12,112739200,30.60 +2010-03-16,224.18,224.98,222.51,224.45,111727000,30.65 +2010-03-15,225.38,225.50,220.25,223.84,123375700,30.56 +2010-03-12,227.37,227.73,225.75,226.60,104080900,30.94 +2010-03-11,223.91,225.50,223.32,225.50,101425100,30.79 +2010-03-10,223.83,225.48,223.20,224.84,149054500,30.70 +2010-03-09,218.31,225.00,217.89,223.02,230064800,30.45 +2010-03-08,220.01,220.09,218.25,219.08,107472400,29.91 +2010-03-05,214.94,219.70,214.63,218.95,224905100,29.90 +2010-03-04,209.28,210.92,208.63,210.71,91510300,28.77 +2010-03-03,208.94,209.87,207.94,209.33,93013200,28.58 +2010-03-02,209.93,210.83,207.74,208.85,141636600,28.52 +2010-03-01,205.75,209.50,205.45,208.99,137523400,28.54 +2010-02-26,202.38,205.17,202.00,204.62,126865200,27.94 +2010-02-25,197.38,202.86,196.89,202.00,166281500,27.58 +2010-02-24,198.23,201.44,197.84,200.66,115141600,27.40 +2010-02-23,200.00,201.33,195.71,197.06,143773700,26.91 +2010-02-22,202.34,202.50,199.19,200.42,97640900,27.37 +2010-02-19,201.86,203.20,201.11,201.67,103867400,27.54 +2010-02-18,201.63,203.89,200.92,202.93,105706300,27.71 +2010-02-17,204.19,204.31,200.86,202.55,109099200,27.66 +2010-02-16,201.94,203.69,201.52,203.40,135934400,27.77 +2010-02-12,198.11,201.64,195.50,200.38,163867200,27.36 +2010-02-11,194.88,199.75,194.06,198.67,137586400,27.13 +2010-02-10,195.89,196.60,194.26,195.12,92590400,26.64 +2010-02-09,196.42,197.50,194.75,196.19,158221700,26.79 +2010-02-08,195.69,197.88,194.00,194.12,119567700,26.51 +2010-02-05,192.63,196.00,190.85,195.46,212576700,26.69 +2010-02-04,196.73,198.37,191.57,192.05,189413000,26.22 +2010-02-03,195.17,200.20,194.42,199.23,153832000,27.20 +2010-02-02,195.91,196.32,193.38,195.86,174585600,26.74 +2010-02-01,192.37,196.00,191.30,194.73,187469100,26.59 +2010-01-29,201.08,202.20,190.25,192.06,311488100,26.22 +2010-01-28,204.93,205.50,198.70,199.29,293375600,27.21 +2010-01-27,206.85,210.58,199.53,207.88,430642100,28.39 +2010-01-26,205.95,213.71,202.58,205.94,466777500,28.12 +2010-01-25,202.51,204.70,200.19,203.07,266424900,27.73 +2010-01-22,206.78,207.50,197.16,197.75,220441900,27.00 +2010-01-21,212.08,213.31,207.21,208.07,152038600,28.41 +2010-01-20,214.91,215.55,209.50,211.73,153038200,28.91 +2010-01-19,208.33,215.19,207.24,215.04,182501900,29.36 +2010-01-15,210.93,211.60,205.87,205.93,148516900,28.12 +2010-01-14,210.11,210.46,209.02,209.43,108223500,28.60 +2010-01-13,207.87,210.93,204.10,210.65,151473000,28.76 +2010-01-12,209.19,209.77,206.42,207.72,148614900,28.36 +2010-01-11,212.80,213.00,208.45,210.11,115557400,28.69 +2010-01-08,210.30,212.00,209.06,211.98,111902700,28.94 +2010-01-07,211.75,212.00,209.05,210.58,119282800,28.75 +2010-01-06,214.38,215.23,210.75,210.97,138040000,28.81 +2010-01-05,214.60,215.59,213.25,214.38,150476200,29.27 +2010-01-04,213.43,214.50,212.38,214.01,123432400,29.22 +2009-12-31,213.13,213.35,210.56,210.73,88102700,28.77 +2009-12-30,208.83,212.00,208.31,211.64,103021100,28.90 +2009-12-29,212.63,212.72,208.73,209.10,111301400,28.55 +2009-12-28,211.72,213.95,209.61,211.61,161141400,28.89 +2009-12-24,203.55,209.35,203.35,209.04,125222300,28.54 +2009-12-23,201.20,202.38,200.81,202.10,86381400,27.60 +2009-12-22,199.44,200.85,198.66,200.36,87378900,27.36 +2009-12-21,196.05,199.75,195.67,198.23,152976600,27.07 +2009-12-18,193.17,195.50,192.60,195.43,152192600,26.69 +2009-12-17,194.26,195.00,191.00,191.86,97209700,26.20 +2009-12-16,195.10,196.50,194.55,195.03,88246200,26.63 +2009-12-15,195.83,197.51,193.27,194.17,104864900,26.51 +2009-12-14,195.37,197.43,192.56,196.98,123947600,26.90 +2009-12-11,197.78,198.00,193.43,194.67,107443700,26.58 +2009-12-10,199.50,199.70,196.12,196.43,122417400,26.82 +2009-12-09,191.28,198.16,190.31,197.80,171195500,27.01 +2009-12-08,189.36,192.35,188.70,189.87,172599700,25.93 +2009-12-07,193.32,193.77,188.68,188.95,178689700,25.80 +2009-12-04,199.70,199.88,190.28,193.32,206721200,26.40 +2009-12-03,197.42,198.98,196.27,196.48,112179900,26.83 +2009-12-02,198.96,201.42,195.75,196.23,178815000,26.79 +2009-12-01,202.24,202.77,196.83,196.97,116440800,26.90 +2009-11-30,201.11,201.68,198.77,199.91,106214500,27.30 +2009-11-27,199.22,202.96,198.37,200.59,73814300,27.39 +2009-11-25,205.40,205.65,203.76,204.19,71613500,27.88 +2009-11-24,205.33,205.88,202.90,204.44,79609600,27.92 +2009-11-23,203.00,206.00,202.95,205.88,118724200,28.11 +2009-11-20,199.15,200.39,197.76,199.92,101666600,27.30 +2009-11-19,204.61,204.61,199.80,200.51,135581600,27.38 +2009-11-18,206.54,207.00,204.00,205.96,93580200,28.12 +2009-11-17,206.08,207.44,205.00,207.00,99128400,28.26 +2009-11-16,205.48,208.00,205.01,206.63,121301600,28.21 +2009-11-13,202.87,204.83,202.07,204.45,85810200,27.92 +2009-11-12,203.14,204.87,201.43,201.99,90932800,27.58 +2009-11-11,204.56,205.00,201.83,203.25,110967500,27.75 +2009-11-10,201.02,204.98,201.01,202.98,100298800,27.72 +2009-11-09,196.94,201.90,196.26,201.46,132213900,27.51 +2009-11-06,192.51,195.19,192.40,194.34,73774400,26.54 +2009-11-05,192.40,195.00,191.82,194.03,96200300,26.49 +2009-11-04,190.73,193.85,190.23,190.81,121882600,26.05 +2009-11-03,187.85,189.52,185.92,188.75,130635400,25.77 +2009-11-02,189.80,192.88,185.57,189.31,169745800,25.85 +2009-10-30,196.06,196.80,188.17,188.50,179381300,25.74 +2009-10-29,195.00,196.81,192.14,196.35,142567600,26.81 +2009-10-28,197.71,198.02,191.10,192.40,204596700,26.27 +2009-10-27,201.66,202.81,196.45,197.37,189137900,26.95 +2009-10-26,203.67,206.75,200.10,202.48,121084600,27.65 +2009-10-23,205.70,205.80,203.23,203.94,105196700,27.85 +2009-10-22,204.70,207.85,202.51,205.20,197848000,28.02 +2009-10-21,199.52,208.71,199.23,204.92,298431700,27.98 +2009-10-20,200.60,201.75,197.85,198.76,285259800,27.14 +2009-10-19,187.85,190.00,185.55,189.86,235557700,25.92 +2009-10-16,189.35,190.36,187.84,188.05,107856700,25.68 +2009-10-15,189.63,190.92,189.53,190.56,93389100,26.02 +2009-10-14,192.25,192.32,190.23,191.29,93877700,26.12 +2009-10-13,190.63,191.17,189.70,190.02,87005100,25.95 +2009-10-12,191.02,191.51,189.64,190.81,72006200,26.05 +2009-10-09,188.97,190.70,188.62,190.47,73318000,26.01 +2009-10-08,190.66,191.45,188.89,189.27,109552800,25.84 +2009-10-07,189.76,190.55,189.03,190.25,116417000,25.98 +2009-10-06,187.74,190.01,187.30,190.01,151271400,25.94 +2009-10-05,186.20,186.86,184.27,186.02,105783300,25.40 +2009-10-02,181.41,185.94,181.35,184.90,138327000,25.25 +2009-10-01,185.35,186.22,180.70,180.86,131177900,24.70 +2009-09-30,186.13,186.45,182.61,185.35,134896300,25.31 +2009-09-29,186.73,187.40,184.31,185.38,86346400,25.31 +2009-09-28,183.87,186.68,183.33,186.15,84361200,25.42 +2009-09-25,182.01,185.50,181.44,182.37,111309800,24.90 +2009-09-24,187.20,187.70,182.77,183.82,137720100,25.10 +2009-09-23,185.40,188.90,185.03,185.50,148390900,25.33 +2009-09-22,185.19,185.38,182.85,184.48,89188400,25.19 +2009-09-21,184.29,185.16,181.62,184.02,109428900,25.13 +2009-09-18,185.83,186.55,184.76,185.02,150395700,25.26 +2009-09-17,181.98,186.79,181.97,184.55,202643000,25.20 +2009-09-16,177.99,182.75,177.88,181.87,188505800,24.83 +2009-09-15,174.04,175.65,173.59,175.16,106617700,23.92 +2009-09-14,170.83,173.90,170.25,173.72,80502800,23.72 +2009-09-11,172.91,173.18,170.87,172.16,87240300,23.51 +2009-09-10,172.06,173.25,170.81,172.56,122783500,23.56 +2009-09-09,172.78,174.47,169.70,171.14,202771800,23.37 +2009-09-08,172.98,173.14,172.00,172.93,78761900,23.61 +2009-09-04,167.28,170.70,167.09,170.31,93657200,23.26 +2009-09-03,166.44,167.10,165.00,166.55,73488800,22.74 +2009-09-02,164.62,167.61,164.11,165.18,91062300,22.55 +2009-09-01,167.99,170.00,164.94,165.30,117257000,22.57 +2009-08-31,168.16,168.85,166.50,168.21,77834400,22.97 +2009-08-28,172.27,172.49,168.53,170.05,113425200,23.22 +2009-08-27,168.75,169.57,164.83,169.45,112295400,23.14 +2009-08-26,168.92,169.55,166.76,167.41,75999700,22.86 +2009-08-25,169.46,170.94,169.13,169.40,81088700,23.13 +2009-08-24,170.12,170.71,168.27,169.06,101732400,23.08 +2009-08-21,167.65,169.37,166.80,169.22,104018600,23.11 +2009-08-20,164.98,166.72,164.61,166.33,85507800,22.71 +2009-08-19,162.75,165.30,162.45,164.60,103317900,22.48 +2009-08-18,161.63,164.24,161.41,164.00,107788100,22.39 +2009-08-17,163.55,163.59,159.42,159.59,131095300,21.79 +2009-08-14,167.94,168.23,165.53,166.78,76454000,22.77 +2009-08-13,166.65,168.67,166.50,168.42,109995200,23.00 +2009-08-12,162.55,166.71,162.46,165.31,111267800,22.57 +2009-08-11,163.69,164.38,161.88,162.83,88835600,22.23 +2009-08-10,165.66,166.60,163.66,164.72,75073600,22.49 +2009-08-07,165.49,166.60,164.80,165.51,96838700,22.60 +2009-08-06,165.58,166.51,163.09,163.91,85404200,22.38 +2009-08-05,165.75,167.39,164.21,165.11,105795900,22.54 +2009-08-04,164.93,165.57,164.21,165.55,98952700,22.61 +2009-08-03,165.21,166.64,164.87,166.43,98560000,22.73 +2009-07-31,162.99,165.00,162.91,163.39,105634200,22.31 +2009-07-30,161.70,164.72,161.50,162.79,117401200,22.23 +2009-07-29,158.90,160.45,158.25,160.03,95539500,21.85 +2009-07-28,158.88,160.10,157.60,160.00,90888700,21.85 +2009-07-27,160.17,160.88,157.26,160.10,108327800,21.86 +2009-07-24,156.95,160.00,156.50,159.99,109590600,21.85 +2009-07-23,156.63,158.44,155.56,157.82,131740700,21.55 +2009-07-22,157.79,158.73,156.11,156.74,218526000,21.40 +2009-07-21,153.29,153.43,149.75,151.51,218695400,20.69 +2009-07-20,153.27,155.04,150.89,152.91,183881600,20.88 +2009-07-17,149.08,152.02,148.63,151.75,150538500,20.72 +2009-07-16,145.76,148.02,145.57,147.52,98392700,20.14 +2009-07-15,145.04,147.00,144.32,146.88,121396800,20.06 +2009-07-14,142.03,143.18,141.16,142.27,86811900,19.43 +2009-07-13,139.54,142.34,137.53,142.34,120875300,19.44 +2009-07-10,136.34,138.97,136.32,138.52,111318900,18.91 +2009-07-09,137.76,137.99,135.93,136.36,85756300,18.62 +2009-07-08,135.92,138.04,134.42,137.22,143982300,18.74 +2009-07-07,138.48,139.68,135.18,135.40,115399200,18.49 +2009-07-06,138.70,138.99,136.25,138.61,124672100,18.93 +2009-07-02,141.25,142.83,139.79,140.02,92619800,19.12 +2009-07-01,143.50,144.66,142.52,142.83,103544700,19.50 +2009-06-30,142.58,143.80,141.80,142.43,108556000,19.45 +2009-06-29,143.46,143.95,141.54,141.97,141904000,19.39 +2009-06-26,139.79,143.56,139.74,142.44,109846100,19.45 +2009-06-25,135.75,140.20,135.21,139.86,147361900,19.10 +2009-06-24,135.42,137.50,134.86,136.22,121381400,18.60 +2009-06-23,136.40,136.95,132.88,134.01,176633100,18.30 +2009-06-22,140.67,141.56,136.33,137.37,158728500,18.76 +2009-06-19,138.07,139.50,136.90,139.48,180464200,19.05 +2009-06-18,136.11,138.00,135.59,135.88,106920100,18.55 +2009-06-17,136.67,137.45,134.53,135.58,142853200,18.51 +2009-06-16,136.66,138.47,136.10,136.35,128701300,18.62 +2009-06-15,136.01,136.93,134.89,136.09,134937600,18.58 +2009-06-12,138.81,139.10,136.04,136.97,140771400,18.70 +2009-06-11,139.55,141.56,138.55,139.95,131205900,19.11 +2009-06-10,142.28,142.35,138.30,140.25,172155900,19.15 +2009-06-09,143.81,144.56,140.55,142.72,169241100,19.49 +2009-06-08,143.82,144.23,139.43,143.85,232913100,19.64 +2009-06-05,145.31,146.40,143.21,144.67,158179000,19.75 +2009-06-04,140.13,144.18,140.04,143.74,137658500,19.63 +2009-06-03,140.00,141.11,139.07,140.95,141299900,19.25 +2009-06-02,138.99,141.34,138.35,139.49,114055900,19.05 +2009-06-01,136.47,139.99,136.00,139.35,113124900,19.03 +2009-05-29,135.39,135.90,133.85,135.81,114133600,18.54 +2009-05-28,133.45,135.39,132.03,135.07,121888200,18.44 +2009-05-27,131.78,134.98,130.91,133.05,161605500,18.17 +2009-05-26,124.76,130.83,124.55,130.78,159231800,17.86 +2009-05-22,124.05,124.18,121.75,122.50,74499600,16.73 +2009-05-21,125.15,126.78,122.89,124.18,101986500,16.96 +2009-05-20,127.63,129.21,125.30,125.87,97146000,17.19 +2009-05-19,126.82,129.31,125.74,127.45,93105600,17.40 +2009-05-18,123.73,126.70,121.57,126.65,114710400,17.29 +2009-05-15,122.32,124.62,121.61,122.42,91891800,16.72 +2009-05-14,119.78,123.53,119.70,122.95,111956600,16.79 +2009-05-13,123.21,124.02,119.38,119.49,148992900,16.32 +2009-05-12,129.56,129.71,123.25,124.42,152370400,16.99 +2009-05-11,127.37,130.96,127.12,129.57,101164700,17.69 +2009-05-08,129.04,131.23,126.26,129.19,116991000,17.64 +2009-05-07,132.33,132.39,127.90,129.06,132944000,17.62 +2009-05-06,133.33,133.50,130.22,132.50,118384700,18.09 +2009-05-05,131.75,132.86,131.12,132.71,99563800,18.12 +2009-05-04,128.24,132.25,127.68,132.07,152339600,18.03 +2009-05-01,125.80,127.95,125.80,127.24,99379000,17.37 +2009-04-30,126.22,127.00,124.92,125.83,124622400,17.18 +2009-04-29,124.85,126.85,123.83,125.14,114527700,17.09 +2009-04-28,123.35,126.21,123.26,123.90,113964200,16.92 +2009-04-27,122.90,125.00,122.66,124.73,120172500,17.03 +2009-04-24,124.64,125.14,122.97,123.90,135191000,16.92 +2009-04-23,126.62,127.20,123.51,125.40,236289200,17.12 +2009-04-22,122.63,125.35,121.20,121.51,234691800,16.59 +2009-04-21,118.89,122.14,118.60,121.76,117671400,16.63 +2009-04-20,121.73,122.99,119.16,120.50,116616500,16.45 +2009-04-17,121.18,124.25,120.25,123.42,124373900,16.85 +2009-04-16,119.19,123.15,118.79,121.45,148361500,16.58 +2009-04-15,117.20,118.25,115.76,117.64,103220600,16.06 +2009-04-14,119.57,120.17,117.25,118.31,113655500,16.15 +2009-04-13,120.01,120.98,119.00,120.22,97309100,16.42 +2009-04-09,118.42,120.00,117.96,119.57,132689200,16.33 +2009-04-08,115.43,116.79,114.58,116.32,113907500,15.88 +2009-04-07,116.53,116.67,114.19,115.00,134145200,15.70 +2009-04-06,114.94,118.75,113.28,118.45,164516100,16.17 +2009-04-03,114.19,116.13,113.52,115.99,159060300,15.84 +2009-04-02,110.14,114.75,109.78,112.71,203091700,15.39 +2009-04-01,104.09,109.00,103.89,108.69,147343000,14.84 +2009-03-31,105.45,107.45,105.00,105.12,142520000,14.35 +2009-03-30,104.51,105.01,102.61,104.49,125699000,14.27 +2009-03-27,108.23,108.53,106.40,106.85,123218200,14.59 +2009-03-26,107.83,109.98,107.58,109.87,154063000,15.00 +2009-03-25,107.58,108.36,103.86,106.49,161654500,14.54 +2009-03-24,106.36,109.44,105.39,106.50,160153000,14.54 +2009-03-23,102.71,108.16,101.75,107.66,166599300,14.70 +2009-03-20,102.09,103.11,100.57,101.59,173896800,13.87 +2009-03-19,101.85,103.20,100.25,101.62,125045200,13.88 +2009-03-18,99.91,103.48,99.72,101.52,199009300,13.86 +2009-03-17,95.24,99.69,95.07,99.66,196661500,13.61 +2009-03-16,96.53,97.39,94.18,95.42,199311000,13.03 +2009-03-13,96.30,97.20,95.01,95.93,150292100,13.10 +2009-03-12,92.90,96.58,92.00,96.35,192114300,13.16 +2009-03-11,89.81,94.07,89.58,92.68,211593200,12.66 +2009-03-10,84.87,89.17,84.36,88.63,211064700,12.10 +2009-03-09,84.18,87.60,82.57,83.11,174574400,11.35 +2009-03-06,88.34,88.40,82.33,85.30,252786800,11.65 +2009-03-05,90.46,91.87,88.45,88.84,176724800,12.13 +2009-03-04,90.18,92.77,89.45,91.17,185350900,12.45 +2009-03-03,88.93,90.74,87.88,88.37,181085100,12.07 +2009-03-02,88.12,91.20,87.67,87.94,192732400,12.01 +2009-02-27,87.93,91.30,87.67,89.31,176664600,12.19 +2009-02-26,92.00,92.92,88.96,89.19,157467100,12.18 +2009-02-25,89.86,92.92,89.25,91.16,208263300,12.45 +2009-02-24,87.45,90.89,87.00,90.25,201776400,12.32 +2009-02-23,91.65,92.00,86.51,86.95,196745500,11.87 +2009-02-20,89.40,92.40,89.00,91.20,187579000,12.45 +2009-02-19,93.37,94.25,90.11,90.64,230701100,12.38 +2009-02-18,95.05,95.85,92.72,94.37,171194800,12.89 +2009-02-17,96.87,97.04,94.28,94.53,169559600,12.91 +2009-02-13,98.99,99.94,98.12,99.16,152244400,13.54 +2009-02-12,95.83,99.75,95.83,99.27,204297100,13.55 +2009-02-11,96.37,98.31,95.77,96.82,168743400,13.22 +2009-02-10,101.33,102.51,97.06,97.83,212265200,13.36 +2009-02-09,100.00,103.00,99.50,102.51,178752700,14.00 +2009-02-06,97.02,100.00,97.00,99.72,171802400,13.62 +2009-02-05,92.77,97.25,92.62,96.46,187311600,13.17 +2009-02-04,93.22,96.25,93.10,93.55,202105400,12.77 +2009-02-03,91.92,93.38,90.28,92.98,149827300,12.70 +2009-02-02,89.10,92.00,88.90,91.51,139561800,12.50 +2009-01-30,92.60,93.62,90.01,90.13,162869700,12.31 +2009-01-29,93.09,94.34,92.60,93.00,148182300,12.70 +2009-01-28,92.12,95.00,91.50,94.20,215351500,12.86 +2009-01-27,90.19,91.55,89.74,90.73,154509600,12.39 +2009-01-26,88.86,90.97,88.30,89.64,173059600,12.24 +2009-01-23,86.82,89.87,86.50,88.36,190942500,12.07 +2009-01-22,88.04,90.00,85.82,88.36,352382100,12.07 +2009-01-21,79.39,82.88,79.31,82.83,272317500,11.31 +2009-01-20,81.93,82.00,78.20,78.20,229978700,10.68 +2009-01-16,84.30,84.38,80.40,82.33,261906400,11.24 +2009-01-15,80.57,84.12,80.05,83.38,457908500,11.39 +2009-01-14,86.24,87.25,84.72,85.33,255416000,11.65 +2009-01-13,88.24,89.74,86.35,87.71,199599400,11.98 +2009-01-12,90.46,90.99,87.55,88.66,154429100,12.11 +2009-01-09,93.21,93.38,90.14,90.58,136711400,12.37 +2009-01-08,90.43,93.15,90.04,92.70,168375200,12.66 +2009-01-07,91.81,92.50,90.26,91.01,188262200,12.43 +2009-01-06,95.95,97.17,92.39,93.02,322327600,12.70 +2009-01-05,93.17,96.18,92.71,94.58,295402100,12.91 +2009-01-02,85.88,91.04,85.16,90.75,186503800,12.39 +2008-12-31,85.97,87.74,85.34,85.35,151885300,11.65 +2008-12-30,87.42,88.05,84.72,86.29,241900400,11.78 +2008-12-29,86.52,87.62,85.07,86.61,171500000,11.83 +2008-12-26,86.64,87.42,85.24,85.81,77081200,11.72 +2008-12-24,86.14,86.25,84.55,85.04,67833500,11.61 +2008-12-23,86.87,87.87,85.90,86.38,158757900,11.79 +2008-12-22,90.02,90.03,84.69,85.74,211185100,11.71 +2008-12-19,89.94,90.94,88.80,90.00,200480000,12.29 +2008-12-18,89.31,90.83,88.44,89.43,214354000,12.21 +2008-12-17,91.03,91.10,88.02,89.16,323465100,12.17 +2008-12-16,93.98,96.48,92.75,95.43,273376600,13.03 +2008-12-15,95.99,96.21,93.00,94.75,222939500,12.94 +2008-12-12,92.80,99.00,92.53,98.27,260293600,13.42 +2008-12-11,97.35,101.24,94.83,95.00,260154300,12.97 +2008-12-10,97.87,99.49,96.50,98.21,234511900,13.41 +2008-12-09,98.04,103.60,97.21,100.06,300874000,13.66 +2008-12-08,97.28,100.80,95.80,99.72,296285500,13.62 +2008-12-05,90.35,94.49,88.86,94.00,260948800,12.84 +2008-12-04,94.43,95.21,89.06,91.41,272842500,12.48 +2008-12-03,89.40,96.23,88.80,95.90,334670000,13.09 +2008-12-02,90.03,92.65,86.50,92.47,287180600,12.63 +2008-12-01,91.30,92.27,88.92,88.93,230941900,12.14 +2008-11-28,94.70,94.76,91.86,92.67,74443600,12.65 +2008-11-26,89.92,95.25,89.85,95.00,224959000,12.97 +2008-11-25,94.63,94.71,88.16,90.80,308823200,12.40 +2008-11-24,85.21,94.79,84.84,92.95,360564400,12.69 +2008-11-21,81.93,84.12,79.14,82.58,392317800,11.28 +2008-11-20,85.24,86.45,80.00,80.49,429203600,10.99 +2008-11-19,89.44,91.58,86.21,86.29,292975200,11.78 +2008-11-18,89.64,90.99,86.86,89.91,302423800,12.28 +2008-11-17,88.48,90.55,87.26,88.14,290631600,12.04 +2008-11-14,93.76,93.99,90.00,90.24,351316700,12.32 +2008-11-13,89.87,96.44,86.02,96.44,463521800,13.17 +2008-11-12,92.43,93.24,90.01,90.12,294744100,12.31 +2008-11-11,94.81,97.17,92.26,94.77,306134500,12.94 +2008-11-10,100.17,100.40,94.50,95.88,280955500,13.09 +2008-11-07,99.24,99.85,95.72,98.24,273813400,13.41 +2008-11-06,101.05,102.78,98.00,99.10,329768600,13.53 +2008-11-05,108.91,109.72,102.99,103.30,314113800,14.11 +2008-11-04,109.99,111.79,106.67,110.99,349670300,15.16 +2008-11-03,105.93,109.10,104.86,106.96,264484500,14.60 +2008-10-31,107.40,110.78,105.14,107.59,414939000,14.69 +2008-10-30,108.23,112.19,107.61,111.04,409522400,15.16 +2008-10-29,100.86,109.54,99.94,104.55,487744600,14.28 +2008-10-28,95.43,100.50,92.37,99.91,408533300,13.64 +2008-10-27,95.07,97.63,91.86,92.09,302192800,12.57 +2008-10-24,90.33,97.90,90.11,96.38,397514600,13.16 +2008-10-23,96.51,99.25,91.90,98.23,418857600,13.41 +2008-10-22,97.37,101.25,92.93,96.87,562202200,13.23 +2008-10-21,96.95,97.90,91.16,91.49,548415000,12.49 +2008-10-20,99.78,100.03,93.64,98.44,387292500,13.44 +2008-10-17,99.60,102.04,85.89,97.40,440556900,13.30 +2008-10-16,99.77,103.43,91.74,101.89,495130300,13.91 +2008-10-15,103.84,107.00,97.89,97.95,396043900,13.37 +2008-10-14,116.26,116.40,103.14,104.08,495248600,14.21 +2008-10-13,104.55,110.53,101.02,110.26,384769000,15.06 +2008-10-10,85.70,100.00,85.00,96.80,554824900,13.22 +2008-10-09,93.35,95.80,86.60,88.74,404345900,12.12 +2008-10-08,85.91,96.33,85.68,89.79,551935300,12.26 +2008-10-07,100.48,101.50,88.95,89.16,469693000,12.17 +2008-10-06,91.96,98.78,87.54,98.14,526854300,13.40 +2008-10-03,104.00,106.50,94.65,97.07,573599600,13.25 +2008-10-02,108.01,108.79,100.00,100.10,402341100,13.67 +2008-10-01,111.92,112.36,107.39,109.12,324121000,14.90 +2008-09-30,108.25,115.00,106.30,113.66,406670600,15.52 +2008-09-29,119.62,119.68,100.59,105.26,655514300,14.37 +2008-09-26,124.91,129.80,123.00,128.24,281612800,17.51 +2008-09-25,129.80,134.79,128.52,131.93,251511400,18.01 +2008-09-24,127.27,130.95,125.15,128.71,261753800,17.57 +2008-09-23,131.85,135.80,126.66,126.84,320091100,17.32 +2008-09-22,139.94,140.25,130.66,131.05,214178300,17.89 +2008-09-19,142.60,144.20,136.31,140.91,357718900,19.24 +2008-09-18,130.57,135.43,120.68,134.09,419063400,18.31 +2008-09-17,138.49,138.51,127.83,127.83,300113800,17.45 +2008-09-16,133.86,142.50,132.15,139.88,299959100,19.10 +2008-09-15,142.03,147.69,140.36,140.36,230158600,19.17 +2008-09-12,150.91,150.91,146.50,148.94,198256800,20.34 +2008-09-11,148.18,152.99,146.00,152.65,242783800,20.84 +2008-09-10,152.32,154.99,148.80,151.61,243285700,20.70 +2008-09-09,156.86,159.96,149.79,151.68,311256400,20.71 +2008-09-08,164.57,164.89,151.46,157.92,261494800,21.56 +2008-09-05,158.59,162.40,157.65,160.18,196721000,21.87 +2008-09-04,165.86,167.91,160.81,161.22,185846500,22.01 +2008-09-03,166.84,168.68,164.00,166.96,183708700,22.80 +2008-09-02,172.40,173.50,165.00,166.19,195190800,22.69 +2008-08-29,172.96,173.50,169.04,169.53,149822400,23.15 +2008-08-28,175.28,176.25,172.75,173.74,107846200,23.72 +2008-08-27,173.31,175.76,172.19,174.67,119445200,23.85 +2008-08-26,172.76,174.88,172.61,173.64,111387500,23.71 +2008-08-25,176.15,176.23,171.66,172.55,121106300,23.56 +2008-08-22,175.82,177.50,175.57,176.79,109902800,24.14 +2008-08-21,174.47,175.45,171.89,174.29,134936200,23.80 +2008-08-20,174.77,176.94,173.61,175.84,126737800,24.01 +2008-08-19,174.54,177.07,171.81,173.53,154051100,23.69 +2008-08-18,175.57,177.81,173.82,175.39,138003600,23.95 +2008-08-15,179.04,179.75,175.05,175.74,177062900,24.00 +2008-08-14,178.33,180.45,177.84,179.32,177825200,24.49 +2008-08-13,177.98,180.00,175.90,179.30,210586600,24.48 +2008-08-12,173.52,179.29,173.51,176.73,209069700,24.13 +2008-08-11,170.07,176.50,169.67,173.56,222826100,23.70 +2008-08-08,163.86,169.65,163.75,169.55,178499300,23.15 +2008-08-07,162.71,166.15,161.50,163.57,168093100,22.33 +2008-08-06,159.97,167.40,158.00,164.19,197852200,22.42 +2008-08-05,155.42,160.80,154.82,160.64,172092900,21.93 +2008-08-04,156.60,157.90,152.91,153.23,148131900,20.92 +2008-08-01,159.90,159.99,155.75,156.66,136159800,21.39 +2008-07-31,157.54,162.20,156.98,158.95,159374600,21.70 +2008-07-30,157.78,160.49,156.08,159.88,181295800,21.83 +2008-07-29,155.41,159.45,153.65,157.08,171017700,21.45 +2008-07-28,162.34,162.47,154.02,154.40,195178200,21.08 +2008-07-25,160.40,163.00,158.65,162.12,158409300,22.14 +2008-07-24,164.32,165.26,158.45,159.03,209904800,21.71 +2008-07-23,164.99,168.37,161.56,166.26,265442100,22.70 +2008-07-22,149.00,162.76,146.53,162.02,469898100,22.12 +2008-07-21,166.90,167.50,161.12,166.29,340117400,22.71 +2008-07-18,168.52,169.65,165.00,165.15,217103600,22.55 +2008-07-17,174.10,174.98,171.39,171.81,189381500,23.46 +2008-07-16,170.20,172.93,168.60,172.81,186947600,23.60 +2008-07-15,172.48,173.74,166.39,169.64,260010800,23.16 +2008-07-14,179.24,179.30,173.08,173.88,221513600,23.74 +2008-07-11,175.47,177.11,171.00,172.58,232502900,23.56 +2008-07-10,174.92,177.34,171.37,176.63,210172200,24.12 +2008-07-09,180.20,180.91,174.14,174.25,223944000,23.79 +2008-07-08,175.40,179.70,172.74,179.55,222087600,24.52 +2008-07-07,173.16,177.13,171.90,175.16,205097900,23.92 +2008-07-03,169.59,172.17,165.75,170.12,130840500,23.23 +2008-07-02,175.20,177.45,168.18,168.18,209379800,22.96 +2008-07-01,164.23,174.72,164.00,174.68,277820200,23.85 +2008-06-30,170.19,172.00,166.62,167.44,171049200,22.86 +2008-06-27,166.51,170.57,164.15,170.09,260562400,23.22 +2008-06-26,174.07,174.84,168.01,168.26,217402500,22.98 +2008-06-25,174.61,178.83,173.88,177.39,161112700,24.22 +2008-06-24,172.37,175.78,171.63,173.25,155486800,23.66 +2008-06-23,174.74,175.88,171.56,173.16,161445200,23.64 +2008-06-20,179.35,181.00,175.00,175.27,222091800,23.93 +2008-06-19,178.55,182.34,176.80,180.90,197987300,24.70 +2008-06-18,181.12,182.20,177.35,178.75,202867000,24.41 +2008-06-17,178.10,181.99,177.41,181.43,224914200,24.77 +2008-06-16,171.30,177.90,169.07,176.84,262932600,24.15 +2008-06-13,171.64,174.16,165.31,172.37,336489300,23.54 +2008-06-12,181.49,182.60,171.20,173.26,327083400,23.66 +2008-06-11,184.34,186.00,179.59,180.81,240387700,24.69 +2008-06-10,180.51,186.78,179.02,185.64,285235300,25.35 +2008-06-09,184.79,184.94,175.75,181.61,472098200,24.80 +2008-06-06,188.00,189.95,185.55,185.64,241605700,25.35 +2008-06-05,186.34,189.84,185.70,189.43,188861400,25.87 +2008-06-04,184.02,187.09,183.23,185.19,181745900,25.29 +2008-06-03,186.86,188.20,182.34,185.37,187630100,25.31 +2008-06-02,188.60,189.65,184.53,186.10,169960000,25.41 +2008-05-30,187.45,189.54,187.38,188.75,152546100,25.77 +2008-05-29,186.76,188.20,185.50,186.69,161796600,25.49 +2008-05-28,187.41,187.95,183.72,187.01,185994900,25.54 +2008-05-27,182.75,186.43,181.84,186.43,197476300,25.46 +2008-05-23,180.77,181.99,177.80,181.17,226729300,24.74 +2008-05-22,179.26,181.33,172.00,177.05,301683900,24.18 +2008-05-21,185.67,187.95,176.25,178.19,289414300,24.33 +2008-05-20,181.82,186.16,180.12,185.90,242462500,25.38 +2008-05-19,187.86,188.69,181.30,183.60,236455100,25.07 +2008-05-16,190.11,190.30,187.00,187.62,191442300,25.62 +2008-05-15,186.81,189.90,184.20,189.73,218302000,25.91 +2008-05-14,191.23,192.24,185.57,186.26,229205900,25.43 +2008-05-13,188.61,191.45,187.86,189.96,205809100,25.94 +2008-05-12,185.21,188.87,182.85,188.16,204640800,25.69 +2008-05-09,183.16,184.25,181.37,183.45,168268100,25.05 +2008-05-08,183.77,186.50,183.07,185.06,224771400,25.27 +2008-05-07,186.05,188.20,180.54,182.59,289283400,24.93 +2008-05-06,184.66,187.12,182.18,186.66,229717600,25.49 +2008-05-05,181.92,185.31,181.05,184.73,213639300,25.22 +2008-05-02,180.19,181.92,178.55,180.94,251520500,24.71 +2008-05-01,174.96,180.00,174.86,180.00,225894200,24.58 +2008-04-30,176.19,180.00,172.92,173.95,284881100,23.75 +2008-04-29,171.11,175.66,170.25,175.05,230869100,23.90 +2008-04-28,169.75,173.75,169.13,172.24,196803600,23.52 +2008-04-25,170.70,171.10,166.42,169.73,248118500,23.18 +2008-04-24,165.34,169.98,159.19,168.94,424016600,23.07 +2008-04-23,164.05,164.84,161.08,162.89,376047700,22.24 +2008-04-22,167.40,168.00,158.09,160.20,359893100,21.87 +2008-04-21,162.21,168.50,161.76,168.16,259788200,22.96 +2008-04-18,159.12,162.26,158.38,161.04,256691400,21.99 +2008-04-17,154.17,156.00,153.35,154.49,176066800,21.09 +2008-04-16,151.72,154.10,150.62,153.70,198943500,20.99 +2008-04-15,149.40,149.72,145.72,148.38,174509300,20.26 +2008-04-14,146.77,149.25,144.54,147.78,211271900,20.18 +2008-04-11,152.72,153.30,146.40,147.14,302519000,20.09 +2008-04-10,151.13,155.42,150.60,154.55,238940800,21.10 +2008-04-09,153.31,153.89,150.46,151.44,218349600,20.68 +2008-04-08,153.55,156.45,152.32,152.84,253573600,20.87 +2008-04-07,156.13,159.69,155.11,155.89,289581600,21.29 +2008-04-04,152.19,154.71,150.75,153.08,213604300,20.90 +2008-04-03,147.06,153.63,147.00,151.61,262892000,20.70 +2008-04-02,148.78,151.20,145.85,147.49,261242100,20.14 +2008-04-01,146.30,149.66,143.61,149.53,258141800,20.42 +2008-03-31,143.27,145.71,142.52,143.50,192016300,19.59 +2008-03-28,141.80,144.65,141.60,143.01,178652600,19.53 +2008-03-27,144.95,145.31,139.99,140.25,249957400,19.15 +2008-03-26,140.87,145.74,140.64,145.06,295521100,19.81 +2008-03-25,139.96,143.10,137.33,140.98,263097800,19.25 +2008-03-24,134.01,140.85,133.64,139.53,266730100,19.05 +2008-03-20,131.12,133.29,129.18,133.27,227196900,18.20 +2008-03-19,133.12,134.29,129.67,129.67,252634200,17.71 +2008-03-18,129.18,133.00,128.67,132.82,301280000,18.14 +2008-03-17,122.55,128.59,122.55,126.73,268149700,17.30 +2008-03-14,129.88,130.30,124.20,126.61,289160200,17.29 +2008-03-13,124.10,129.50,123.00,127.94,315525700,17.47 +2008-03-12,127.04,128.68,125.17,126.03,264907300,17.21 +2008-03-11,124.10,127.48,122.00,127.35,290985800,17.39 +2008-03-10,121.98,123.46,119.37,119.69,249897200,16.34 +2008-03-07,120.41,122.98,119.05,122.25,307615700,16.69 +2008-03-06,124.61,127.50,120.81,120.93,368424700,16.51 +2008-03-05,123.58,125.14,122.25,124.49,305459000,17.00 +2008-03-04,121.99,124.88,120.40,124.62,446345900,17.02 +2008-03-03,124.44,125.98,118.00,121.73,398260800,16.62 +2008-02-29,129.29,130.21,124.80,125.02,313870200,17.07 +2008-02-28,127.20,132.20,125.77,129.91,404563600,17.74 +2008-02-27,118.23,123.05,118.09,122.96,368784500,16.79 +2008-02-26,117.64,121.09,115.44,119.15,376222000,16.27 +2008-02-25,118.59,120.17,116.66,119.74,314193600,16.35 +2008-02-22,122.48,122.51,115.87,119.46,382469500,16.31 +2008-02-21,126.05,126.47,120.86,121.54,234528700,16.60 +2008-02-20,122.20,124.60,121.68,123.82,241859800,16.91 +2008-02-19,125.99,126.75,121.44,122.18,251261500,16.68 +2008-02-15,126.27,127.08,124.06,124.63,225325100,17.02 +2008-02-14,129.40,130.80,127.01,127.46,238524300,17.40 +2008-02-13,126.68,129.78,125.63,129.40,242133500,17.67 +2008-02-12,130.70,131.00,123.62,124.86,306495000,17.05 +2008-02-11,128.01,129.98,127.20,129.45,300358100,17.68 +2008-02-08,122.08,125.70,121.60,125.48,338993200,17.13 +2008-02-07,119.97,124.78,117.27,121.24,520832900,16.55 +2008-02-06,130.83,131.92,121.77,122.00,393318100,16.66 +2008-02-05,130.43,134.00,128.90,129.36,285260500,17.66 +2008-02-04,134.21,135.90,131.42,131.65,224808500,17.98 +2008-02-01,136.24,136.59,132.18,133.75,252686000,18.26 +2008-01-31,129.45,136.65,129.40,135.36,336418600,18.48 +2008-01-30,131.37,135.45,130.00,132.18,310762900,18.05 +2008-01-29,131.15,132.79,129.05,131.54,274995700,17.96 +2008-01-28,128.16,133.20,126.45,130.01,368711000,17.75 +2008-01-25,138.99,139.09,129.61,130.01,388684800,17.75 +2008-01-24,139.99,140.70,132.01,135.60,501466700,18.52 +2008-01-23,136.19,140.00,126.14,139.07,843242400,18.99 +2008-01-22,148.06,159.98,146.00,155.64,608688500,21.25 +2008-01-18,161.71,165.75,159.61,161.36,431085900,22.03 +2008-01-17,161.51,165.36,158.42,160.89,439464900,21.97 +2008-01-16,165.23,169.01,156.70,159.64,553461300,21.80 +2008-01-15,177.72,179.22,164.66,169.04,585819500,23.08 +2008-01-14,177.52,179.42,175.17,178.78,275112600,24.41 +2008-01-11,176.00,177.85,170.00,172.69,308071400,23.58 +2008-01-10,177.58,181.00,175.41,178.02,370743800,24.31 +2008-01-09,171.30,179.50,168.30,179.40,453470500,24.50 +2008-01-08,180.14,182.46,170.80,171.25,380954000,23.38 +2008-01-07,181.25,183.60,170.23,177.64,518048300,24.26 +2008-01-04,191.45,193.00,178.89,180.05,363958000,24.58 +2008-01-03,195.41,197.39,192.69,194.93,210516600,26.62 +2008-01-02,199.27,200.26,192.55,194.84,269794700,26.60 +2007-12-31,199.50,200.50,197.75,198.08,134833300,27.05 +2007-12-28,200.59,201.56,196.88,199.83,174911800,27.29 +2007-12-27,198.95,202.96,197.80,198.57,198881900,27.11 +2007-12-26,199.01,200.96,196.82,198.95,175933100,27.17 +2007-12-24,195.03,199.33,194.79,198.80,120050700,27.15 +2007-12-21,190.12,193.91,189.89,193.91,248490200,26.48 +2007-12-20,185.43,187.83,183.33,187.21,193514300,25.56 +2007-12-19,182.98,184.64,180.90,183.12,206869600,25.00 +2007-12-18,186.52,187.33,178.60,182.98,305650800,24.99 +2007-12-17,190.72,192.65,182.98,184.40,256173400,25.18 +2007-12-14,190.37,193.20,189.54,190.39,168578200,26.00 +2007-12-13,190.19,192.12,187.82,191.83,216154400,26.19 +2007-12-12,193.44,194.48,185.76,190.86,306415200,26.06 +2007-12-11,194.75,196.83,187.39,188.54,277731300,25.74 +2007-12-10,193.59,195.66,192.69,194.21,180594400,26.52 +2007-12-07,190.54,194.99,188.04,194.30,266516600,26.53 +2007-12-06,186.19,190.10,186.12,189.95,224952700,25.94 +2007-12-05,182.89,186.00,182.41,185.50,223100500,25.33 +2007-12-04,177.15,180.90,176.99,179.81,193449900,24.55 +2007-12-03,181.86,184.14,177.70,178.86,240367400,24.42 +2007-11-30,187.34,187.70,179.70,182.22,296950500,24.88 +2007-11-29,179.43,185.17,179.15,184.29,262731700,25.16 +2007-11-28,176.82,180.60,175.35,180.22,287728000,24.61 +2007-11-27,175.22,175.79,170.01,174.81,329257600,23.87 +2007-11-26,173.59,177.27,172.35,172.54,326438700,23.56 +2007-11-23,172.00,172.05,169.75,171.54,116439400,23.42 +2007-11-21,165.84,172.35,164.67,168.46,304452400,23.00 +2007-11-20,165.67,171.79,163.53,168.85,385910700,23.06 +2007-11-19,166.10,168.20,162.10,163.95,288607200,22.39 +2007-11-16,165.30,167.02,159.33,166.39,345873500,22.72 +2007-11-15,166.39,169.59,160.30,164.30,371852600,22.43 +2007-11-14,177.16,177.57,163.74,166.11,362292000,22.68 +2007-11-13,160.85,170.98,153.76,169.96,434861700,23.21 +2007-11-12,165.28,167.70,150.63,153.76,442266300,21.00 +2007-11-09,171.15,175.12,165.21,165.37,381595200,22.58 +2007-11-08,186.67,186.90,167.77,175.47,472594500,23.96 +2007-11-07,190.61,192.68,186.13,186.30,248581900,25.44 +2007-11-06,187.05,192.00,185.27,191.79,238681800,26.19 +2007-11-05,185.29,188.96,184.24,186.18,201044200,25.42 +2007-11-02,189.21,189.44,183.49,187.87,250528600,25.65 +2007-11-01,188.60,190.10,180.00,187.44,201259100,25.59 +2007-10-31,187.63,190.12,184.95,189.95,208327700,25.94 +2007-10-30,186.18,189.37,184.73,187.00,234853500,25.53 +2007-10-29,185.45,186.59,184.70,185.09,135138500,25.27 +2007-10-26,185.29,185.37,182.88,184.70,176719200,25.22 +2007-10-25,184.87,185.90,181.66,182.78,243400500,24.96 +2007-10-24,185.81,187.21,179.24,185.93,322120400,25.39 +2007-10-23,188.56,188.60,182.76,186.16,448791000,25.42 +2007-10-22,170.35,174.90,169.96,174.36,412374900,23.81 +2007-10-19,174.24,174.63,170.00,170.42,322945000,23.27 +2007-10-18,171.50,174.19,171.05,173.50,205919000,23.69 +2007-10-17,172.69,173.04,169.18,172.75,281903300,23.59 +2007-10-16,165.54,170.18,165.15,169.58,266957600,23.16 +2007-10-15,167.98,169.57,163.50,166.98,269482500,22.80 +2007-10-12,163.01,167.28,161.80,167.25,247044000,22.84 +2007-10-11,169.49,171.88,153.21,162.23,410998000,22.15 +2007-10-10,167.55,167.88,165.60,166.79,166897500,22.77 +2007-10-09,170.20,171.11,166.68,167.86,276071600,22.92 +2007-10-08,163.49,167.91,162.97,167.91,208982200,22.93 +2007-10-05,158.37,161.58,157.70,161.45,235867800,22.05 +2007-10-04,158.00,158.08,153.50,156.24,164239600,21.33 +2007-10-03,157.78,159.18,157.01,157.92,173129600,21.56 +2007-10-02,156.55,158.59,155.89,158.45,198017400,21.64 +2007-10-01,154.63,157.41,152.93,156.34,209267100,21.35 +2007-09-28,153.44,154.60,152.75,153.47,153775300,20.96 +2007-09-27,153.77,154.52,152.32,154.50,164549700,21.10 +2007-09-26,154.47,155.00,151.25,152.77,243817000,20.86 +2007-09-25,146.84,153.22,146.82,153.18,298137700,20.92 +2007-09-24,146.73,149.85,146.65,148.28,263040400,20.25 +2007-09-21,141.14,144.65,140.31,144.15,284720100,19.68 +2007-09-20,140.15,141.79,139.32,140.31,172960200,19.16 +2007-09-19,143.02,143.16,139.40,140.77,256720100,19.22 +2007-09-18,139.06,142.85,137.83,140.92,266022400,19.24 +2007-09-17,138.99,140.59,137.60,138.41,198342900,18.90 +2007-09-14,136.57,138.98,136.20,138.81,151830000,18.95 +2007-09-13,138.83,139.00,136.65,137.20,164040800,18.73 +2007-09-12,135.99,139.40,135.75,136.85,255692500,18.69 +2007-09-11,137.90,138.30,133.75,135.49,242971400,18.50 +2007-09-10,136.99,138.04,133.95,136.71,371959700,18.67 +2007-09-07,132.01,132.30,130.00,131.77,357644000,17.99 +2007-09-06,135.56,137.57,132.71,135.01,475315400,18.43 +2007-09-05,144.97,145.84,136.10,136.76,582055600,18.67 +2007-09-04,139.94,145.73,139.84,144.16,329210700,19.68 +2007-08-31,139.49,139.65,137.41,138.48,219221800,18.91 +2007-08-30,132.67,138.25,132.30,136.25,358895600,18.60 +2007-08-29,129.88,134.18,129.54,134.08,291715200,18.31 +2007-08-28,130.99,132.41,126.63,126.82,294841400,17.32 +2007-08-27,133.39,134.66,132.10,132.25,176859900,18.06 +2007-08-24,130.53,135.37,129.81,135.30,227958500,18.47 +2007-08-23,133.09,133.34,129.76,131.07,216709500,17.90 +2007-08-22,131.22,132.75,130.33,132.51,265441400,18.09 +2007-08-21,122.21,128.96,121.00,127.57,325761800,17.42 +2007-08-20,123.96,124.50,120.50,122.22,200829300,16.69 +2007-08-17,122.01,123.50,119.82,122.06,298765600,16.67 +2007-08-16,117.01,118.50,111.62,117.05,466672500,15.98 +2007-08-15,122.74,124.86,119.65,119.90,248213000,16.37 +2007-08-14,128.29,128.30,123.71,124.03,184751700,16.94 +2007-08-13,128.32,129.35,126.50,127.79,188227900,17.45 +2007-08-10,123.12,127.75,120.30,125.00,352687300,17.07 +2007-08-09,131.11,133.00,125.09,126.39,281348900,17.26 +2007-08-08,136.76,136.86,132.00,134.01,202024200,18.30 +2007-08-07,134.94,137.24,132.63,135.03,237484100,18.44 +2007-08-06,132.90,135.27,128.30,135.25,231292600,18.47 +2007-08-03,135.26,135.95,131.50,131.85,169796900,18.00 +2007-08-02,136.65,136.96,134.15,136.49,213161200,18.64 +2007-08-01,133.64,135.38,127.77,135.00,437539200,18.43 +2007-07-31,142.97,143.48,131.52,131.76,440598200,17.99 +2007-07-30,144.33,145.45,139.57,141.43,276747100,19.31 +2007-07-27,146.19,148.92,143.78,143.85,290274600,19.64 +2007-07-26,145.91,148.50,136.96,146.00,546657300,19.94 +2007-07-25,137.35,138.36,135.00,137.26,374045700,18.74 +2007-07-24,138.88,141.00,134.15,134.89,448823200,18.42 +2007-07-23,143.31,145.22,140.93,143.70,259122500,19.62 +2007-07-20,141.65,144.18,140.00,143.75,291943400,19.63 +2007-07-19,140.30,140.81,139.65,140.00,183222900,19.12 +2007-07-18,138.19,138.44,136.04,138.12,189214200,18.86 +2007-07-17,138.30,139.60,137.50,138.91,177489900,18.97 +2007-07-16,138.39,139.98,137.50,138.10,234028200,18.86 +2007-07-13,135.03,137.85,134.52,137.73,226901500,18.81 +2007-07-12,133.85,134.24,132.39,134.07,176152200,18.31 +2007-07-11,132.07,133.70,131.31,132.39,205443000,18.08 +2007-07-10,128.88,134.50,128.81,132.35,313751900,18.07 +2007-07-09,132.38,132.90,129.18,130.33,248955000,17.80 +2007-07-06,133.13,133.34,130.40,132.30,218673700,18.06 +2007-07-05,128.80,132.97,128.69,132.75,363262900,18.13 +2007-07-03,122.00,127.40,121.50,127.17,290620400,17.36 +2007-07-02,121.05,122.09,119.30,121.26,248715600,16.56 +2007-06-29,121.97,124.00,121.09,122.04,284460400,16.66 +2007-06-28,122.36,122.49,120.00,120.56,209535900,16.46 +2007-06-27,120.61,122.04,119.26,121.89,243674200,16.64 +2007-06-26,123.98,124.00,118.72,119.65,336251300,16.34 +2007-06-25,124.19,125.09,121.06,122.34,241350900,16.70 +2007-06-22,123.85,124.45,122.38,123.00,157969000,16.80 +2007-06-21,121.70,124.29,120.72,123.90,216761300,16.92 +2007-06-20,123.87,124.66,121.50,121.55,224378000,16.60 +2007-06-19,124.69,125.01,122.91,123.66,235756500,16.89 +2007-06-18,123.28,125.18,122.54,125.09,227651200,17.08 +2007-06-15,120.62,120.67,119.86,120.50,202804700,16.45 +2007-06-14,117.20,119.45,116.42,118.75,243316500,16.21 +2007-06-13,121.15,121.19,115.40,117.50,430338300,16.04 +2007-06-12,119.35,121.71,118.31,120.38,356641600,16.44 +2007-06-11,126.00,126.15,119.54,120.19,468564600,16.41 +2007-06-08,125.82,125.83,122.29,124.49,310420600,17.00 +2007-06-07,124.99,127.61,123.19,124.07,478769900,16.94 +2007-06-06,122.30,124.05,121.95,123.64,278060300,16.88 +2007-06-05,121.41,122.69,120.50,122.67,230196400,16.75 +2007-06-04,118.63,121.73,117.90,121.33,221668300,16.57 +2007-06-01,121.10,121.19,118.29,118.40,221315500,16.17 +2007-05-31,120.07,122.17,119.54,121.19,324266600,16.55 +2007-05-30,114.30,118.88,113.53,118.77,369611200,16.22 +2007-05-29,114.45,114.86,112.69,114.35,161423500,15.61 +2007-05-25,112.00,113.78,111.50,113.62,158239900,15.51 +2007-05-24,112.81,114.46,110.37,110.69,221840500,15.11 +2007-05-23,114.02,115.00,112.59,112.89,227843700,15.41 +2007-05-22,112.49,113.75,112.01,113.54,143102400,15.50 +2007-05-21,110.31,112.45,110.05,111.98,159973100,15.29 +2007-05-18,110.23,110.64,109.77,110.02,155336300,15.02 +2007-05-17,107.15,109.87,107.15,109.44,183822800,14.94 +2007-05-16,108.53,108.83,103.42,107.34,281691900,14.66 +2007-05-15,109.57,110.20,106.48,107.52,238628600,14.68 +2007-05-14,109.62,110.00,108.25,109.36,162986600,14.93 +2007-05-11,107.74,109.13,106.78,108.74,163424100,14.85 +2007-05-10,106.63,108.84,105.92,107.34,299314400,14.66 +2007-05-09,104.91,106.96,104.89,106.88,179439400,14.59 +2007-05-08,103.47,105.15,103.42,105.06,195999300,14.35 +2007-05-07,101.08,104.35,101.01,103.92,215389300,14.19 +2007-05-04,100.80,101.60,100.50,100.81,95496800,13.77 +2007-05-03,100.73,101.45,100.01,100.40,144019400,13.71 +2007-05-02,99.65,100.54,99.47,100.39,126286300,13.71 +2007-05-01,99.59,100.35,98.55,99.47,133130900,13.58 +2007-04-30,100.09,101.00,99.67,99.80,154127400,13.63 +2007-04-27,98.18,99.95,97.69,99.92,174850900,13.64 +2007-04-26,101.58,102.50,98.30,98.84,434444500,13.50 +2007-04-25,94.23,95.40,93.80,95.35,296786000,13.02 +2007-04-24,93.96,96.39,91.30,93.24,263813200,12.73 +2007-04-23,91.59,93.80,91.42,93.51,195072500,12.77 +2007-04-20,90.89,91.18,90.55,90.97,130694900,12.42 +2007-04-19,90.19,91.25,89.83,90.27,106478400,12.33 +2007-04-18,90.16,90.85,89.60,90.40,116011000,12.34 +2007-04-17,92.00,92.30,89.70,90.35,187980100,12.34 +2007-04-16,90.57,91.50,90.25,91.43,152258400,12.48 +2007-04-13,90.90,91.40,90.06,90.24,179985400,12.32 +2007-04-12,92.04,92.31,90.72,92.19,164168900,12.59 +2007-04-11,93.90,93.95,92.33,92.59,137254600,12.64 +2007-04-10,93.67,94.26,93.41,94.25,88116700,12.87 +2007-04-09,95.21,95.30,93.04,93.65,103335400,12.79 +2007-04-05,94.12,94.68,93.52,94.68,88879000,12.93 +2007-04-04,94.94,95.14,94.13,94.27,119196000,12.87 +2007-04-03,94.14,95.23,93.76,94.50,145983600,12.90 +2007-04-02,94.14,94.25,93.02,93.65,125498100,12.79 +2007-03-30,94.28,94.68,92.75,92.91,150139500,12.69 +2007-03-29,94.19,94.19,92.23,93.75,181430900,12.80 +2007-03-28,94.88,95.40,93.15,93.24,235584300,12.73 +2007-03-27,95.71,96.83,95.00,95.46,233013200,13.03 +2007-03-26,93.99,95.90,93.30,95.85,216246800,13.09 +2007-03-23,93.35,94.07,93.30,93.52,112721000,12.77 +2007-03-22,93.73,94.36,93.00,93.96,140373100,12.83 +2007-03-21,91.99,94.00,91.65,93.87,171724000,12.82 +2007-03-20,91.35,91.84,91.06,91.48,122229100,12.49 +2007-03-19,90.24,91.55,89.59,91.13,178240300,12.44 +2007-03-16,89.54,89.99,89.32,89.59,142926000,12.23 +2007-03-15,89.96,90.36,89.31,89.57,139874700,12.23 +2007-03-14,88.60,90.00,87.92,90.00,199146500,12.29 +2007-03-13,89.41,90.60,88.40,88.40,216972700,12.07 +2007-03-12,88.07,89.99,87.99,89.87,182352100,12.27 +2007-03-09,88.80,88.85,87.40,87.97,112959000,12.01 +2007-03-08,88.59,88.72,87.46,88.00,127752800,12.02 +2007-03-07,88.05,88.97,87.45,87.72,156571100,11.98 +2007-03-06,87.80,88.31,87.40,88.19,180796700,12.04 +2007-03-05,85.89,88.65,85.76,86.32,209724900,11.79 +2007-03-02,86.77,87.54,85.21,85.41,215000100,11.66 +2007-03-01,84.03,88.31,83.75,87.06,353882200,11.89 +2007-02-28,83.00,85.60,83.00,84.61,229868800,11.55 +2007-02-27,86.30,87.08,83.41,83.93,286453300,11.46 +2007-02-26,89.84,90.00,87.61,88.51,153962200,12.09 +2007-02-23,89.16,90.34,88.85,89.07,129473400,12.16 +2007-02-22,90.80,90.81,88.53,89.51,209556200,12.22 +2007-02-21,85.98,89.49,85.96,89.20,288828400,12.18 +2007-02-20,84.65,86.16,84.16,85.90,154425600,11.73 +2007-02-16,85.25,85.41,84.66,84.83,99967000,11.58 +2007-02-15,85.44,85.62,84.78,85.21,90915300,11.64 +2007-02-14,84.63,85.64,84.57,85.30,126995400,11.65 +2007-02-13,85.16,85.29,84.30,84.70,145246500,11.57 +2007-02-12,84.43,85.18,83.63,84.88,181017900,11.59 +2007-02-09,85.88,86.20,83.21,83.27,215135200,11.37 +2007-02-08,85.43,86.51,85.41,86.18,169757700,11.77 +2007-02-07,84.48,86.38,83.55,86.15,266706300,11.76 +2007-02-06,84.45,84.47,82.86,84.15,216098400,11.49 +2007-02-05,84.30,85.23,83.94,83.94,144713100,11.46 +2007-02-02,84.12,85.25,83.70,84.75,155382500,11.57 +2007-02-01,86.23,86.27,84.74,84.74,166085500,11.57 +2007-01-31,84.86,86.00,84.35,85.73,214017300,11.71 +2007-01-30,86.43,86.49,85.25,85.55,144492600,11.68 +2007-01-29,86.30,86.65,85.53,85.94,225416100,11.73 +2007-01-26,87.11,87.37,84.99,85.38,246718500,11.66 +2007-01-25,87.11,88.50,86.03,86.25,226493400,11.78 +2007-01-24,86.68,87.15,86.08,86.70,231953400,11.84 +2007-01-23,85.73,87.51,85.51,85.70,301856100,11.70 +2007-01-22,89.14,89.16,85.65,86.79,363506500,11.85 +2007-01-19,88.63,89.65,88.12,88.50,341118400,12.08 +2007-01-18,92.10,92.11,89.05,89.07,591151400,12.16 +2007-01-17,97.56,97.60,94.82,94.95,411565000,12.96 +2007-01-16,95.68,97.25,95.45,97.10,311019100,13.26 +2007-01-12,94.59,95.06,93.23,94.62,328172600,12.92 +2007-01-11,95.94,96.78,95.10,95.80,360063200,13.08 +2007-01-10,94.75,97.80,93.45,97.00,738220000,13.24 +2007-01-09,86.45,92.98,85.15,92.57,837324600,12.64 +2007-01-08,85.96,86.53,85.28,85.47,199276700,11.67 +2007-01-05,85.77,86.20,84.40,85.05,208685400,11.61 +2007-01-04,84.05,85.95,83.82,85.66,211815100,11.70 +2007-01-03,86.29,86.58,81.90,83.80,309579900,11.44 +2006-12-29,83.95,85.40,83.36,84.84,269107300,11.58 +2006-12-28,80.22,81.25,79.65,80.87,279969200,11.04 +2006-12-27,78.15,82.00,76.77,81.52,483938700,11.13 +2006-12-26,82.15,82.57,80.89,81.51,122672200,11.13 +2006-12-22,83.46,84.04,81.60,82.20,153325900,11.22 +2006-12-21,84.70,85.48,82.20,82.90,225899800,11.32 +2006-12-20,86.47,86.67,84.74,84.76,141922900,11.57 +2006-12-19,84.73,86.68,83.62,86.31,227851400,11.79 +2006-12-18,87.63,88.00,84.59,85.47,180394200,11.67 +2006-12-15,89.02,89.22,87.33,87.72,184984800,11.98 +2006-12-14,89.05,90.00,88.26,88.55,208082700,12.09 +2006-12-13,87.95,89.07,87.15,89.05,214263000,12.16 +2006-12-12,88.61,88.84,85.53,86.14,256655000,11.76 +2006-12-11,88.90,89.30,88.05,88.75,124945100,12.12 +2006-12-08,87.23,89.39,87.00,88.26,196069300,12.05 +2006-12-07,90.03,90.50,86.90,87.04,251206900,11.88 +2006-12-06,90.64,91.39,89.67,89.83,159546100,12.27 +2006-12-05,91.65,92.33,90.87,91.27,165709600,12.46 +2006-12-04,91.88,92.05,90.50,91.12,177384200,12.44 +2006-12-01,91.80,92.33,90.10,91.32,198769900,12.47 +2006-11-30,92.21,92.68,91.06,91.66,217621600,12.52 +2006-11-29,93.00,93.15,90.25,91.80,289270800,12.53 +2006-11-28,90.36,91.97,89.91,91.81,259043400,12.54 +2006-11-27,92.51,93.16,89.50,89.54,268709000,12.23 +2006-11-24,89.53,93.08,89.50,91.63,129669400,12.51 +2006-11-22,88.99,90.75,87.85,90.31,167985300,12.33 +2006-11-21,87.42,88.60,87.11,88.60,155666700,12.10 +2006-11-20,85.40,87.00,85.20,86.47,142698500,11.81 +2006-11-17,85.14,85.94,85.00,85.85,116606000,11.72 +2006-11-16,84.87,86.30,84.62,85.61,173485200,11.69 +2006-11-15,85.05,85.90,84.00,84.05,163830800,11.48 +2006-11-14,84.80,85.00,83.90,85.00,147238700,11.61 +2006-11-13,83.22,84.45,82.64,84.35,112668500,11.52 +2006-11-10,83.55,83.60,82.50,83.12,93466100,11.35 +2006-11-09,82.90,84.69,82.12,83.34,230763400,11.38 +2006-11-08,80.02,82.69,79.89,82.45,172729200,11.26 +2006-11-07,80.45,81.00,80.13,80.51,131483100,10.99 +2006-11-06,78.95,80.06,78.43,79.71,108644200,10.88 +2006-11-03,79.36,79.53,77.79,78.29,107972200,10.69 +2006-11-02,78.92,79.32,78.50,78.98,116370800,10.78 +2006-11-01,81.10,81.38,78.36,79.16,152798100,10.81 +2006-10-31,81.45,81.68,80.23,81.08,125368600,11.07 +2006-10-30,79.99,80.90,79.50,80.42,124979400,10.98 +2006-10-27,81.75,82.45,80.01,80.41,148741600,10.98 +2006-10-26,81.90,82.60,81.13,82.19,108189200,11.22 +2006-10-25,81.35,82.00,81.01,81.68,121303700,11.15 +2006-10-24,81.21,81.68,80.20,81.05,115803100,11.07 +2006-10-23,79.99,81.90,79.75,81.46,208126800,11.12 +2006-10-20,78.97,79.99,78.67,79.95,159853400,10.92 +2006-10-19,79.26,79.95,78.16,78.99,378244300,10.79 +2006-10-18,74.75,75.37,73.91,74.53,283476900,10.18 +2006-10-17,75.04,75.27,74.04,74.29,120231300,10.14 +2006-10-16,75.19,75.88,74.79,75.40,127173200,10.30 +2006-10-13,75.63,76.88,74.74,75.02,171049200,10.24 +2006-10-12,73.61,75.39,73.60,75.26,148213800,10.28 +2006-10-11,73.42,73.98,72.60,73.23,142963800,10.00 +2006-10-10,74.54,74.58,73.08,73.81,132897100,10.08 +2006-10-09,73.80,75.08,73.53,74.63,109555600,10.19 +2006-10-06,74.42,75.04,73.81,74.22,116739700,10.13 +2006-10-05,74.53,76.16,74.13,74.83,170970800,10.22 +2006-10-04,74.10,75.46,73.16,75.38,207270700,10.29 +2006-10-03,74.45,74.95,73.19,74.08,197677200,10.12 +2006-10-02,75.10,75.87,74.30,74.86,178159800,10.22 +2006-09-29,77.11,77.52,76.68,76.98,101453100,10.51 +2006-09-28,77.02,77.48,75.95,77.01,180902400,10.52 +2006-09-27,77.17,77.47,75.82,76.41,202593300,10.43 +2006-09-26,76.18,77.78,76.10,77.61,275737000,10.60 +2006-09-25,73.81,75.86,73.72,75.75,214748100,10.34 +2006-09-22,74.30,74.34,72.58,73.00,166278000,9.97 +2006-09-21,75.25,76.06,74.02,74.65,198531200,10.19 +2006-09-20,74.38,75.68,74.22,75.26,205697800,10.28 +2006-09-19,74.10,74.36,72.80,73.77,177512300,10.07 +2006-09-18,73.80,74.86,73.30,73.89,176319500,10.09 +2006-09-15,74.60,74.98,73.29,74.10,245463400,10.12 +2006-09-14,73.72,74.67,73.46,74.17,200432400,10.13 +2006-09-13,72.85,74.32,72.30,74.20,286534500,10.13 +2006-09-12,72.81,73.45,71.45,72.63,421171800,9.92 +2006-09-11,72.43,73.73,71.42,72.50,237281100,9.90 +2006-09-08,73.37,73.57,71.91,72.52,223980400,9.90 +2006-09-07,70.60,73.48,70.25,72.80,316989400,9.94 +2006-09-06,71.08,71.69,69.70,70.03,243525800,9.56 +2006-09-05,68.97,71.50,68.55,71.48,253114400,9.76 +2006-09-01,68.48,68.65,67.82,68.38,102123700,9.34 +2006-08-31,67.28,68.30,66.66,67.85,143674300,9.26 +2006-08-30,67.34,67.82,66.68,66.96,170035600,9.14 +2006-08-29,66.99,67.26,65.12,66.48,236833100,9.08 +2006-08-28,68.50,68.61,66.68,66.98,184540300,9.15 +2006-08-25,67.34,69.05,67.31,68.75,135989700,9.39 +2006-08-24,67.89,68.19,66.27,67.81,163797900,9.26 +2006-08-23,68.00,68.65,66.94,67.31,134064700,9.19 +2006-08-22,66.68,68.32,66.50,67.62,144242000,9.23 +2006-08-21,67.30,67.31,66.15,66.56,131556600,9.09 +2006-08-18,67.71,68.40,67.26,67.91,134088500,9.27 +2006-08-17,68.00,68.66,67.18,67.59,145287100,9.23 +2006-08-16,67.10,68.07,66.33,67.98,195321000,9.28 +2006-08-15,65.34,66.50,64.80,66.45,215338200,9.07 +2006-08-14,64.05,65.22,63.60,63.94,179405100,8.73 +2006-08-11,63.23,64.13,62.58,63.65,194382300,8.69 +2006-08-10,63.25,64.81,62.70,64.07,174440000,8.75 +2006-08-09,65.43,65.60,63.40,63.59,238959700,8.68 +2006-08-08,67.09,67.11,64.51,64.78,249466000,8.85 +2006-08-07,67.72,69.60,66.31,67.21,311378200,9.18 +2006-08-04,67.05,68.61,64.96,68.30,463216600,9.33 +2006-08-03,67.91,70.00,67.81,69.59,210261100,9.50 +2006-08-02,67.65,68.68,67.51,68.16,137692100,9.31 +2006-08-01,67.22,67.93,65.94,67.18,177941400,9.17 +2006-07-31,66.83,68.63,66.28,67.96,223210400,9.28 +2006-07-28,63.94,65.68,63.50,65.59,172876900,8.96 +2006-07-27,64.50,65.02,62.86,63.40,183761200,8.66 +2006-07-26,62.00,64.64,61.68,63.87,224606900,8.72 +2006-07-25,61.78,62.09,60.78,61.93,147267400,8.46 +2006-07-24,61.26,62.10,60.43,61.42,180714100,8.39 +2006-07-21,59.82,61.15,59.64,60.72,222973100,8.29 +2006-07-20,60.96,61.59,59.72,60.50,493036600,8.26 +2006-07-19,52.96,55.08,52.36,54.10,347685800,7.39 +2006-07-18,53.16,53.85,51.85,52.90,250112100,7.22 +2006-07-17,51.73,53.11,51.65,52.37,256135600,7.15 +2006-07-14,52.50,52.89,50.16,50.67,248259200,6.92 +2006-07-13,52.03,54.12,51.41,52.25,312476500,7.13 +2006-07-12,55.17,55.24,52.92,52.96,231832300,7.23 +2006-07-11,55.11,55.99,54.53,55.65,206255700,7.60 +2006-07-10,55.70,56.49,54.50,55.00,132336400,7.51 +2006-07-07,55.48,56.55,54.67,55.40,199840200,7.56 +2006-07-06,57.09,57.40,55.61,55.77,158302200,7.62 +2006-07-05,57.15,57.60,56.56,57.00,129560200,7.78 +2006-07-03,57.52,58.18,57.34,57.95,48692700,7.91 +2006-06-30,57.59,57.75,56.50,57.27,184923900,7.82 +2006-06-29,56.76,59.09,56.39,58.97,218349600,8.05 +2006-06-28,57.29,57.30,55.41,56.02,212676100,7.65 +2006-06-27,59.09,59.22,57.40,57.43,137652900,7.84 +2006-06-26,59.17,59.20,58.37,58.99,116634000,8.05 +2006-06-23,59.72,60.17,58.73,58.83,165050900,8.03 +2006-06-22,58.20,59.75,58.07,59.58,241408300,8.14 +2006-06-21,57.74,58.71,57.30,57.86,215824000,7.90 +2006-06-20,57.61,58.35,57.29,57.47,168243600,7.85 +2006-06-19,57.83,58.18,57.00,57.20,176143800,7.81 +2006-06-16,58.96,59.19,57.52,57.56,209525400,7.86 +2006-06-15,57.30,59.74,56.75,59.38,297595900,8.11 +2006-06-14,58.28,58.78,56.69,57.61,219534000,7.87 +2006-06-13,57.61,59.10,57.36,58.33,270160800,7.96 +2006-06-12,59.40,59.73,56.96,57.00,179446400,7.78 +2006-06-09,61.18,61.56,59.10,59.24,193959500,8.09 +2006-06-08,58.44,60.93,57.15,60.76,349370700,8.30 +2006-06-07,60.10,60.40,58.35,58.56,187626600,8.00 +2006-06-06,60.22,60.63,58.91,59.72,181509300,8.15 +2006-06-05,61.15,61.15,59.97,60.00,151446400,8.19 +2006-06-02,62.99,63.10,60.88,61.66,171446800,8.42 +2006-06-01,59.85,62.28,59.52,62.17,235627000,8.49 +2006-05-31,61.76,61.79,58.69,59.77,320244400,8.16 +2006-05-30,63.29,63.30,61.22,61.22,140850500,8.36 +2006-05-26,64.31,64.56,63.14,63.55,108237500,8.68 +2006-05-25,64.26,64.45,63.29,64.33,115843000,8.78 +2006-05-24,62.99,63.65,61.56,63.34,229007800,8.65 +2006-05-23,64.86,65.19,63.00,63.15,173603500,8.62 +2006-05-22,63.87,63.99,62.77,63.38,179743900,8.65 +2006-05-19,63.26,64.88,62.82,64.51,246466500,8.81 +2006-05-18,65.68,66.26,63.12,63.18,164610600,8.63 +2006-05-17,64.71,65.70,64.07,65.26,188548500,8.91 +2006-05-16,68.10,68.25,64.75,64.98,234185000,8.87 +2006-05-15,67.37,68.38,67.12,67.79,132294400,9.26 +2006-05-12,67.85,68.69,66.86,67.70,160443500,9.24 +2006-05-11,70.79,70.84,67.55,68.15,203172200,9.31 +2006-05-10,71.29,71.33,69.61,70.60,114972200,9.64 +2006-05-09,71.82,72.56,70.62,71.03,132916700,9.70 +2006-05-08,72.99,73.80,71.72,71.89,148712900,9.82 +2006-05-05,71.86,72.25,71.15,71.89,140977900,9.82 +2006-05-04,71.22,72.89,70.46,71.13,215105100,9.71 +2006-05-03,71.83,71.95,70.18,71.14,171747800,9.71 +2006-05-02,70.15,71.98,70.11,71.62,192915800,9.78 +2006-05-01,70.77,71.54,69.16,69.60,187595100,9.50 +2006-04-28,69.38,71.30,69.20,70.39,190009400,9.61 +2006-04-27,67.73,69.86,67.35,69.36,211486800,9.47 +2006-04-26,66.65,68.28,66.40,68.15,177721600,9.31 +2006-04-25,65.96,66.59,65.56,66.17,132265700,9.04 +2006-04-24,66.85,66.92,65.50,65.75,176757000,8.98 +2006-04-21,68.19,68.64,66.47,67.04,197246700,9.15 +2006-04-20,69.51,70.00,66.20,67.63,416745700,9.23 +2006-04-19,66.82,67.00,65.47,65.65,271508300,8.96 +2006-04-18,65.04,66.47,64.79,66.22,198711100,9.04 +2006-04-17,66.51,66.84,64.35,64.81,180484500,8.85 +2006-04-13,66.34,67.44,65.81,66.47,183669500,9.08 +2006-04-12,68.01,68.17,66.30,66.71,184973600,9.11 +2006-04-11,68.99,69.30,67.07,67.99,234829000,9.28 +2006-04-10,70.29,70.93,68.45,68.67,225878800,9.38 +2006-04-07,70.93,71.21,68.47,69.79,386309700,9.53 +2006-04-06,68.30,72.05,68.20,71.24,665942200,9.73 +2006-04-05,64.71,67.21,64.15,67.21,558352200,9.18 +2006-04-04,62.10,62.22,61.05,61.17,232981000,8.35 +2006-04-03,63.67,64.12,62.61,62.65,203947800,8.55 +2006-03-31,63.25,63.61,62.24,62.72,203839300,8.56 +2006-03-30,62.82,63.30,61.53,62.75,347662700,8.57 +2006-03-29,59.13,62.52,57.67,62.33,586708500,8.51 +2006-03-28,59.63,60.14,58.25,58.71,342580700,8.02 +2006-03-27,60.35,61.38,59.40,59.51,277018000,8.13 +2006-03-24,60.25,60.94,59.03,59.96,267995000,8.19 +2006-03-23,61.82,61.90,59.61,60.16,356956600,8.21 +2006-03-22,62.16,63.25,61.27,61.67,336473900,8.42 +2006-03-21,61.81,64.34,61.39,61.81,336341600,8.44 +2006-03-20,65.22,65.46,63.87,63.99,151360300,8.74 +2006-03-17,64.75,65.54,64.11,64.66,203010500,8.83 +2006-03-16,66.85,66.90,64.30,64.31,187409600,8.78 +2006-03-15,67.71,68.04,65.52,66.23,222999000,9.04 +2006-03-14,65.77,67.32,65.50,67.32,160505100,9.19 +2006-03-13,65.05,66.28,64.79,65.68,215296900,8.97 +2006-03-10,64.05,64.49,62.45,63.19,260785700,8.63 +2006-03-09,65.98,66.47,63.81,63.93,199826200,8.73 +2006-03-08,66.29,67.20,65.35,65.66,163312800,8.97 +2006-03-07,65.76,66.90,65.08,66.31,218219400,9.05 +2006-03-06,67.69,67.72,64.94,65.48,228166400,8.94 +2006-03-03,69.40,69.91,67.53,67.72,184417100,9.25 +2006-03-02,68.99,69.99,68.67,69.61,156318400,9.50 +2006-03-01,68.84,69.49,68.02,69.10,190954400,9.44 +2006-02-28,71.58,72.40,68.10,68.49,316745100,9.35 +2006-02-27,71.99,72.12,70.65,70.99,197810200,9.69 +2006-02-24,72.14,72.89,71.20,71.46,133686000,9.76 +2006-02-23,71.79,73.00,71.43,71.75,214229400,9.80 +2006-02-22,69.00,71.67,68.00,71.32,244559700,9.74 +2006-02-21,70.59,70.80,68.68,69.08,194901700,9.43 +2006-02-17,70.30,70.89,69.61,70.29,143999800,9.60 +2006-02-16,69.91,71.01,69.48,70.57,237043800,9.64 +2006-02-15,67.16,69.62,66.75,69.22,289942800,9.45 +2006-02-14,65.10,68.10,65.00,67.64,290234700,9.24 +2006-02-13,66.63,66.75,64.64,64.71,220874500,8.84 +2006-02-10,65.18,67.67,62.90,67.31,440119400,9.19 +2006-02-09,69.10,69.23,64.53,64.95,287441000,8.87 +2006-02-08,68.49,69.08,66.00,68.81,238278600,9.40 +2006-02-07,68.27,69.48,66.68,67.60,347207700,9.23 +2006-02-06,72.02,72.51,66.74,67.30,412941900,9.19 +2006-02-03,72.24,72.79,71.04,71.85,173030900,9.81 +2006-02-02,75.10,75.36,72.05,72.10,176830500,9.84 +2006-02-01,74.95,76.46,74.64,75.42,130296600,10.30 +2006-01-31,75.50,76.34,73.75,75.51,228385500,10.31 +2006-01-30,71.17,76.60,70.87,75.00,349600300,10.24 +2006-01-27,72.95,73.60,71.10,72.03,238466200,9.84 +2006-01-26,74.53,75.43,71.93,72.33,295346800,9.88 +2006-01-25,77.39,77.50,73.25,74.20,318946600,10.13 +2006-01-24,78.76,79.42,75.77,76.04,285563600,10.38 +2006-01-23,76.10,79.56,76.00,77.67,264932500,10.61 +2006-01-20,79.28,80.04,75.83,76.09,283689700,10.39 +2006-01-19,81.25,81.66,78.74,79.04,423962000,10.79 +2006-01-18,83.08,84.05,81.85,82.49,300159300,11.26 +2006-01-17,85.70,86.38,83.87,84.71,208905900,11.57 +2006-01-13,84.99,86.01,84.60,85.59,194076400,11.69 +2006-01-12,84.97,86.40,83.62,84.29,320202400,11.51 +2006-01-11,83.84,84.80,82.59,83.90,373448600,11.46 +2006-01-10,76.25,81.89,75.83,80.86,569967300,11.04 +2006-01-09,76.73,77.20,75.74,76.05,168760200,10.38 +2006-01-06,75.25,76.70,74.55,76.30,176114400,10.42 +2006-01-05,74.83,74.90,73.75,74.38,112355600,10.16 +2006-01-04,75.13,75.98,74.50,74.97,154900900,10.24 +2006-01-03,72.38,74.75,72.25,74.75,201808600,10.21 +2005-12-30,70.91,72.43,70.34,71.89,156065700,9.82 +2005-12-29,73.78,73.82,71.42,71.45,122506300,9.76 +2005-12-28,74.47,74.76,73.32,73.57,99528800,10.05 +2005-12-27,74.00,75.18,73.95,74.23,147647500,10.14 +2005-12-23,74.17,74.26,73.30,73.35,57464400,10.02 +2005-12-22,73.91,74.49,73.60,74.02,92652700,10.11 +2005-12-21,72.60,73.61,72.54,73.50,118934200,10.04 +2005-12-20,71.63,72.38,71.12,72.11,119777000,9.85 +2005-12-19,71.11,72.60,71.04,71.38,132323800,9.75 +2005-12-16,72.14,72.30,71.06,71.11,167792800,9.71 +2005-12-15,72.68,72.86,71.35,72.18,140290500,9.86 +2005-12-14,72.53,73.30,70.27,72.01,362679100,9.83 +2005-12-13,74.85,75.46,74.21,74.98,123454100,10.24 +2005-12-12,74.87,75.35,74.56,74.91,131248600,10.23 +2005-12-09,74.21,74.59,73.35,74.33,138850600,10.15 +2005-12-08,73.20,74.17,72.60,74.08,197619800,10.12 +2005-12-07,74.23,74.46,73.12,73.95,169866200,10.10 +2005-12-06,73.93,74.83,73.35,74.05,214257400,10.11 +2005-12-05,71.95,72.53,71.49,71.82,145917800,9.81 +2005-12-02,72.27,72.74,70.70,72.63,223940500,9.92 +2005-12-01,68.95,71.73,68.81,71.60,203223300,9.78 +2005-11-30,68.43,68.85,67.52,67.82,148918700,9.26 +2005-11-29,69.99,70.30,67.35,68.10,222858300,9.30 +2005-11-28,70.72,71.07,69.07,69.66,254629900,9.51 +2005-11-25,67.66,69.54,67.50,69.34,98753200,9.47 +2005-11-23,66.88,67.98,66.69,67.11,121463300,9.16 +2005-11-22,64.84,66.76,64.52,66.52,135070600,9.08 +2005-11-21,64.82,65.19,63.72,64.96,127927800,8.87 +2005-11-18,65.31,65.43,64.37,64.56,131240200,8.82 +2005-11-17,65.59,65.88,64.25,64.52,169051400,8.81 +2005-11-16,63.15,65.06,63.09,64.95,196128800,8.87 +2005-11-15,61.60,63.08,61.46,62.28,134210300,8.50 +2005-11-14,61.54,61.98,60.91,61.45,92483300,8.39 +2005-11-11,61.54,62.11,61.34,61.54,106362200,8.40 +2005-11-10,60.64,61.20,59.01,61.18,166336100,8.35 +2005-11-09,60.00,61.21,60.00,60.11,138232500,8.21 +2005-11-08,59.95,60.38,59.10,59.90,118441400,8.18 +2005-11-07,60.85,61.67,60.14,60.23,159707800,8.22 +2005-11-04,60.35,61.24,59.62,61.15,219508800,8.35 +2005-11-03,60.26,62.32,60.07,61.85,221095700,8.45 +2005-11-02,57.72,60.00,57.60,59.95,214265100,8.19 +2005-11-01,57.24,58.14,56.87,57.50,187421500,7.85 +2005-10-31,55.20,57.98,54.75,57.59,235211200,7.86 +2005-10-28,56.04,56.43,54.17,54.47,192446800,7.44 +2005-10-27,56.99,57.01,55.41,55.41,102885300,7.57 +2005-10-26,56.28,57.56,55.92,57.03,157898300,7.79 +2005-10-25,56.40,56.85,55.69,56.10,116281900,7.66 +2005-10-24,55.25,56.79,55.09,56.79,152438300,7.75 +2005-10-21,56.84,56.98,55.36,55.66,199181500,7.60 +2005-10-20,54.47,56.50,54.35,56.14,339440500,7.67 +2005-10-19,52.07,54.96,51.21,54.94,252170800,7.50 +2005-10-18,53.25,53.95,52.20,52.21,152397000,7.13 +2005-10-17,53.98,54.23,52.68,53.44,154208600,7.30 +2005-10-14,54.03,54.35,52.79,54.00,258888000,7.37 +2005-10-13,49.44,53.95,49.27,53.74,466393900,7.34 +2005-10-12,48.65,50.30,47.87,49.25,674371600,6.72 +2005-10-11,51.23,51.87,50.40,51.59,306471200,7.04 +2005-10-10,51.76,51.91,50.28,50.37,126876400,6.88 +2005-10-07,51.72,51.93,50.55,51.30,169470700,7.00 +2005-10-06,53.20,53.49,50.87,51.70,189384300,7.06 +2005-10-05,54.33,54.36,52.75,52.78,152692400,7.21 +2005-10-04,54.95,55.35,53.64,53.75,134864800,7.34 +2005-10-03,54.16,54.54,53.68,54.44,126888300,7.43 +2005-09-30,52.33,53.65,51.88,53.61,132908300,7.32 +2005-09-29,51.23,52.59,50.81,52.34,159211500,7.15 +2005-09-28,53.07,53.11,50.59,51.08,281386000,6.97 +2005-09-27,53.92,54.24,53.43,53.44,85425900,7.30 +2005-09-26,54.03,54.56,53.32,53.84,136640700,7.35 +2005-09-23,52.10,53.50,51.84,53.20,139614300,7.26 +2005-09-22,51.88,52.47,51.32,51.90,115931900,7.09 +2005-09-21,52.96,53.05,51.86,52.11,108686900,7.12 +2005-09-20,52.99,53.81,52.92,53.19,204957200,7.26 +2005-09-19,51.05,52.89,51.05,52.64,195932800,7.19 +2005-09-16,50.23,51.21,49.95,51.21,147751100,6.99 +2005-09-15,50.00,50.18,49.33,49.87,103789000,6.81 +2005-09-14,51.06,51.19,49.46,49.61,118606600,6.77 +2005-09-13,51.02,51.29,50.32,50.82,123221000,6.94 +2005-09-12,51.10,51.63,50.58,51.40,113199100,7.02 +2005-09-09,50.07,51.35,49.79,51.31,153910400,7.01 +2005-09-08,49.35,50.12,49.14,49.78,175660100,6.80 +2005-09-07,49.05,49.40,47.92,48.68,240768500,6.65 +2005-09-06,46.70,48.88,46.55,48.80,204654800,6.66 +2005-09-02,46.30,46.80,46.12,46.22,55594700,6.31 +2005-09-01,47.00,47.17,46.09,46.26,89091800,6.32 +2005-08-31,46.86,47.03,46.27,46.89,100739100,6.40 +2005-08-30,45.99,46.79,45.92,46.57,129690400,6.36 +2005-08-29,45.27,46.03,45.26,45.84,64073800,6.26 +2005-08-26,46.12,46.34,45.36,45.74,65264500,6.25 +2005-08-25,46.12,46.49,45.81,46.06,69063400,6.29 +2005-08-24,45.60,47.12,45.59,45.77,143017700,6.25 +2005-08-23,45.85,46.10,45.32,45.74,73901100,6.25 +2005-08-22,46.15,46.75,45.26,45.87,96933200,6.26 +2005-08-19,46.28,46.70,45.77,45.83,94142300,6.26 +2005-08-18,46.91,47.00,45.75,46.30,110639900,6.32 +2005-08-17,46.40,47.44,46.37,47.15,124931100,6.44 +2005-08-16,47.39,47.50,46.21,46.25,134405600,6.32 +2005-08-15,46.48,48.33,46.45,47.68,271681900,6.51 +2005-08-12,43.46,46.22,43.36,46.10,229009200,6.29 +2005-08-11,43.39,44.12,43.25,44.00,67995900,6.01 +2005-08-10,44.00,44.39,43.31,43.38,90236300,5.92 +2005-08-09,42.93,43.89,42.91,43.82,95209800,5.98 +2005-08-08,43.00,43.25,42.61,42.65,44095800,5.82 +2005-08-05,42.49,43.36,42.02,42.99,60482800,5.87 +2005-08-04,42.89,43.00,42.29,42.71,67326000,5.83 +2005-08-03,43.19,43.31,42.77,43.22,64580600,5.90 +2005-08-02,42.89,43.50,42.61,43.19,74218900,5.90 +2005-08-01,42.57,43.08,42.08,42.75,78562400,5.84 +2005-07-29,43.56,44.38,42.26,42.65,140520100,5.82 +2005-07-28,43.85,44.00,43.30,43.80,62827800,5.98 +2005-07-27,43.83,44.07,42.67,43.99,70937300,6.01 +2005-07-26,44.01,44.11,43.36,43.63,67148200,5.96 +2005-07-25,43.99,44.28,43.73,43.81,73656800,5.98 +2005-07-22,43.44,44.00,43.39,44.00,75276600,6.01 +2005-07-21,43.70,44.04,42.90,43.29,101066000,5.91 +2005-07-20,42.86,43.80,42.65,43.63,113348900,5.96 +2005-07-19,41.52,43.23,41.07,43.19,167765500,5.90 +2005-07-18,41.41,42.10,41.37,41.49,146574400,5.67 +2005-07-15,40.97,41.57,40.46,41.55,171920700,5.67 +2005-07-14,40.79,42.01,40.23,40.75,524015100,5.56 +2005-07-13,38.29,38.50,37.90,38.35,171208800,5.24 +2005-07-12,38.23,38.40,37.91,38.24,96759600,5.22 +2005-07-11,38.37,38.65,37.78,38.10,97197100,5.20 +2005-07-08,37.87,38.28,37.47,38.25,72683800,5.22 +2005-07-07,36.81,37.76,36.80,37.63,95930800,5.14 +2005-07-06,37.71,38.16,37.20,37.39,98656600,5.11 +2005-07-05,36.55,38.15,36.50,37.98,113567300,5.19 +2005-07-01,36.83,36.97,36.29,36.50,62500200,4.98 +2005-06-30,36.61,37.16,36.31,36.81,104597500,5.03 +2005-06-29,37.23,37.29,36.12,36.37,112089600,4.97 +2005-06-28,37.49,37.59,37.17,37.31,87574900,5.09 +2005-06-27,36.84,38.10,36.68,37.10,150042900,5.07 +2005-06-24,39.09,39.12,37.68,37.76,102677400,5.16 +2005-06-23,38.83,39.78,38.65,38.89,168563500,5.31 +2005-06-22,38.26,38.60,38.14,38.55,106231300,5.26 +2005-06-21,37.72,38.19,37.38,37.86,92631700,5.17 +2005-06-20,37.85,38.09,37.45,37.61,80929100,5.14 +2005-06-17,38.47,38.54,37.83,38.31,149031400,5.23 +2005-06-16,37.19,38.08,36.82,37.98,136918600,5.19 +2005-06-15,36.87,37.30,36.30,37.13,140835800,5.07 +2005-06-14,35.92,36.15,35.75,36.00,86961700,4.92 +2005-06-13,35.89,36.61,35.82,35.90,108943100,4.90 +2005-06-10,37.40,37.40,35.52,35.81,169733200,4.89 +2005-06-09,37.00,37.94,36.82,37.65,97563900,5.14 +2005-06-08,36.63,37.25,36.57,36.92,101001600,5.04 +2005-06-07,37.60,37.73,36.45,36.54,186316200,4.99 +2005-06-06,38.33,38.63,37.56,37.92,202991600,5.18 +2005-06-03,38.16,38.58,37.77,38.24,239217300,5.22 +2005-06-02,40.05,40.32,39.60,40.04,93493400,5.47 +2005-06-01,39.89,40.76,39.86,40.30,113453200,5.50 +2005-05-31,40.66,40.74,39.58,39.76,101051300,5.43 +2005-05-27,40.64,40.79,40.01,40.56,79002000,5.54 +2005-05-26,39.94,40.94,39.94,40.74,131380200,5.56 +2005-05-25,39.50,39.95,39.32,39.78,99001700,5.43 +2005-05-24,39.45,39.99,39.03,39.70,148365000,5.42 +2005-05-23,37.85,39.90,37.85,39.76,260643600,5.43 +2005-05-20,37.25,37.65,37.19,37.55,113162700,5.13 +2005-05-19,35.78,37.68,35.78,37.55,198290400,5.13 +2005-05-18,35.45,37.56,34.99,35.84,159180700,4.89 +2005-05-17,35.14,35.46,34.54,35.36,147086100,4.83 +2005-05-16,34.56,35.70,34.53,35.55,118573700,4.85 +2005-05-13,34.20,35.23,34.07,34.77,175678300,4.75 +2005-05-12,35.42,35.59,34.00,34.13,242560500,4.66 +2005-05-11,35.20,35.67,33.11,35.61,510495300,4.86 +2005-05-10,36.75,37.25,36.33,36.42,110065900,4.97 +2005-05-09,37.28,37.45,36.75,36.97,88923800,5.05 +2005-05-06,36.89,37.33,36.79,37.24,81561900,5.08 +2005-05-05,37.25,37.27,36.47,36.68,96841500,5.01 +2005-05-04,36.11,37.20,36.10,37.15,112044100,5.07 +2005-05-03,36.40,36.74,36.03,36.21,124184900,4.94 +2005-05-02,36.21,36.65,36.02,36.43,116480000,4.97 +2005-04-29,36.15,36.23,35.22,36.06,167907600,4.92 +2005-04-28,36.29,36.34,35.24,35.54,143776500,4.85 +2005-04-27,35.89,36.36,35.51,35.95,153472200,4.91 +2005-04-26,36.78,37.51,36.12,36.19,202626900,4.94 +2005-04-25,36.49,37.02,36.11,36.98,186615100,5.05 +2005-04-22,36.84,37.00,34.90,35.50,209782300,4.85 +2005-04-21,36.40,37.21,35.90,37.18,189898100,5.08 +2005-04-20,37.66,37.74,35.44,35.51,236282900,4.85 +2005-04-19,36.60,37.44,35.87,37.09,270410700,5.06 +2005-04-18,35.00,36.30,34.00,35.62,331794400,4.86 +2005-04-15,36.62,37.25,35.28,35.35,432021800,4.83 +2005-04-14,38.81,39.56,36.84,37.26,688298100,5.09 +2005-04-13,42.95,42.99,40.39,41.04,342986700,5.60 +2005-04-12,42.49,43.19,42.01,42.66,245265300,5.83 +2005-04-11,44.15,44.25,41.91,41.92,205415700,5.72 +2005-04-08,43.70,44.45,43.54,43.74,162487500,5.97 +2005-04-07,42.33,43.75,42.25,43.56,126746900,5.95 +2005-04-06,42.40,42.81,42.15,42.33,103706400,5.78 +2005-04-05,41.22,42.24,41.09,41.89,139059900,5.72 +2005-04-04,40.99,41.31,40.16,41.09,145003600,5.61 +2005-04-01,42.09,42.18,40.57,40.89,160321000,5.58 +2005-03-31,42.45,42.52,41.59,41.67,159033700,5.69 +2005-03-30,42.07,42.80,41.82,42.80,98739900,5.84 +2005-03-29,42.56,42.83,41.50,41.75,115339000,5.70 +2005-03-28,42.75,42.96,42.47,42.53,68852700,5.81 +2005-03-24,42.91,43.00,42.50,42.50,88176200,5.80 +2005-03-23,42.45,43.40,42.02,42.55,152455800,5.81 +2005-03-22,43.71,43.96,42.68,42.83,137853800,5.85 +2005-03-21,43.29,43.97,42.86,43.70,135282000,5.97 +2005-03-18,43.33,43.44,42.50,42.96,235037600,5.87 +2005-03-17,41.53,42.88,41.32,42.25,200480000,5.77 +2005-03-16,41.21,42.31,40.78,41.18,174453300,5.62 +2005-03-15,40.64,41.14,40.25,40.96,127152200,5.59 +2005-03-14,40.52,40.79,39.52,40.32,151346300,5.51 +2005-03-11,40.21,40.59,39.80,40.27,158207700,5.50 +2005-03-10,39.53,40.26,39.10,39.83,194277300,5.44 +2005-03-09,39.64,40.28,38.83,39.35,330616300,5.37 +2005-03-08,41.90,42.16,40.10,40.53,255362800,5.53 +2005-03-07,42.80,43.25,42.35,42.75,112658000,5.84 +2005-03-04,42.76,43.01,41.85,42.81,189154700,5.85 +2005-03-03,44.37,44.41,41.22,41.79,352913400,5.71 +2005-03-02,44.25,44.89,44.08,44.12,114540300,6.02 +2005-03-01,44.99,45.11,44.16,44.50,117047000,6.08 +2005-02-28,44.68,45.14,43.96,44.86,162902600,6.13 +2005-02-25,89.62,89.91,88.19,88.99,228877600,6.08 +2005-02-24,88.48,89.31,87.73,88.93,379757000,6.07 +2005-02-23,86.72,88.45,85.55,88.23,336295400,6.02 +2005-02-22,86.30,88.30,85.29,85.29,304823400,5.82 +2005-02-18,87.74,87.86,86.25,86.81,290813600,5.93 +2005-02-17,90.65,90.88,87.45,87.81,379618400,6.00 +2005-02-16,88.15,90.20,87.35,90.13,409810800,6.15 +2005-02-15,86.66,89.08,86.00,88.41,578054400,6.04 +2005-02-14,82.73,84.79,82.05,84.63,317865800,5.78 +2005-02-11,79.86,81.76,78.94,81.21,300263600,5.54 +2005-02-10,78.72,79.28,76.66,78.36,273254800,5.35 +2005-02-09,81.04,81.99,78.10,78.74,297864000,5.38 +2005-02-08,79.07,81.38,78.79,80.90,222504800,5.52 +2005-02-07,78.93,79.35,77.50,78.94,131114200,5.39 +2005-02-04,77.87,78.93,77.53,78.84,140889000,5.38 +2005-02-03,79.10,79.43,77.33,77.81,182912800,5.31 +2005-02-02,77.95,79.91,77.69,79.63,255015600,5.44 +2005-02-01,77.05,77.77,76.58,77.53,169598800,5.29 +2005-01-31,74.58,77.89,74.51,76.90,420274400,5.25 +2005-01-28,72.62,73.98,72.44,73.98,200403000,5.05 +2005-01-27,72.16,72.92,71.55,72.64,124056800,4.96 +2005-01-26,72.66,72.75,71.22,72.25,184874200,4.93 +2005-01-25,71.37,72.84,70.94,72.05,242307800,4.92 +2005-01-24,70.98,71.78,70.55,70.76,210407400,4.83 +2005-01-21,71.31,71.60,70.00,70.49,227833200,4.81 +2005-01-20,69.65,71.27,69.47,70.46,228730600,4.81 +2005-01-19,70.49,71.46,69.75,69.88,187973800,4.77 +2005-01-18,69.85,70.70,67.75,70.65,251615000,4.82 +2005-01-14,70.25,71.72,69.19,70.20,442685600,4.79 +2005-01-13,73.71,74.42,69.73,69.80,791179200,4.77 +2005-01-12,65.45,65.90,63.30,65.46,479925600,4.47 +2005-01-11,68.25,69.15,64.14,64.56,652906800,4.41 +2005-01-10,69.83,70.70,67.88,68.96,431327400,4.71 +2005-01-07,65.00,69.63,64.75,69.25,556862600,4.73 +2005-01-06,64.67,64.91,63.33,64.55,176388800,4.41 +2005-01-05,64.46,65.25,64.05,64.50,170108400,4.40 +2005-01-04,63.79,65.47,62.97,63.94,274202600,4.37 +2005-01-03,64.78,65.11,62.60,63.29,172998000,4.32 +2004-12-31,64.89,65.00,64.03,64.40,69647200,4.40 +2004-12-30,64.81,65.03,64.22,64.80,86335200,4.42 +2004-12-29,63.81,64.98,63.57,64.44,112390600,4.40 +2004-12-28,63.30,64.25,62.05,64.18,152938800,4.38 +2004-12-27,64.80,65.15,62.88,63.16,139872600,4.31 +2004-12-23,63.75,64.25,63.60,64.01,61482400,4.37 +2004-12-22,63.66,64.36,63.40,63.75,141457400,4.35 +2004-12-21,63.56,63.77,61.60,63.69,266103600,4.35 +2004-12-20,65.47,66.00,61.76,62.72,292031600,4.28 +2004-12-17,66.84,67.04,64.90,64.99,195874000,4.44 +2004-12-16,66.15,67.50,66.05,66.60,281528800,4.55 +2004-12-15,65.24,65.46,64.66,65.26,99590400,4.46 +2004-12-14,65.40,65.88,65.02,65.29,103930400,4.46 +2004-12-13,65.62,65.90,64.60,64.91,98760200,4.43 +2004-12-10,65.03,66.05,64.70,65.15,193943400,4.45 +2004-12-09,62.81,64.40,62.07,63.99,185375400,4.37 +2004-12-08,63.08,64.43,62.05,63.28,172975600,4.32 +2004-12-07,65.93,66.73,62.56,62.89,264224800,4.29 +2004-12-06,64.25,66.24,62.95,65.78,311980200,4.49 +2004-12-03,64.53,65.00,61.75,62.68,309712200,4.28 +2004-12-02,66.13,66.90,64.66,65.21,246860600,4.45 +2004-12-01,67.79,67.95,66.27,67.79,200138400,4.63 +2004-11-30,68.79,68.79,67.05,67.05,257129600,4.58 +2004-11-29,68.95,69.57,67.41,68.44,428229200,4.67 +2004-11-26,65.35,65.76,64.34,64.55,137536000,4.41 +2004-11-24,61.69,65.20,61.55,64.05,347697000,4.37 +2004-11-23,62.30,62.45,61.05,61.27,227862600,4.18 +2004-11-22,61.80,64.00,57.90,61.35,642052600,4.19 +2004-11-19,55.49,56.91,54.50,55.17,191319800,3.77 +2004-11-18,54.30,55.45,54.29,55.39,114787400,3.78 +2004-11-17,55.19,55.45,54.22,54.90,99437800,3.75 +2004-11-16,55.16,55.20,54.48,54.94,73775800,3.75 +2004-11-15,55.20,55.46,54.34,55.24,94011400,3.77 +2004-11-12,55.01,55.69,54.84,55.50,98925400,3.79 +2004-11-11,54.95,55.43,54.23,55.30,101824800,3.78 +2004-11-10,53.95,55.39,53.91,54.75,127169000,3.74 +2004-11-09,54.23,54.55,53.38,54.05,118941200,3.69 +2004-11-08,54.27,55.45,53.86,54.38,131730200,3.71 +2004-11-05,54.86,55.00,52.04,54.72,301261800,3.74 +2004-11-04,55.03,55.55,54.37,54.45,232156400,3.72 +2004-11-03,54.37,56.11,53.99,55.31,301043400,3.78 +2004-11-02,52.40,54.08,52.40,53.50,182497000,3.65 +2004-11-01,52.50,53.26,52.04,52.45,150512600,3.58 +2004-10-29,51.84,53.20,51.80,52.40,202554800,3.58 +2004-10-28,49.98,52.22,49.50,52.19,216066200,3.56 +2004-10-27,48.51,50.62,48.17,50.30,298373600,3.43 +2004-10-26,47.45,48.05,46.97,47.97,148590400,3.28 +2004-10-25,47.20,47.84,47.07,47.55,98161000,3.25 +2004-10-22,47.54,47.67,47.02,47.41,120766800,3.24 +2004-10-21,47.48,48.13,47.36,47.94,181126400,3.27 +2004-10-20,47.18,47.60,46.65,47.47,151277000,3.24 +2004-10-19,48.10,48.35,47.31,47.42,200498200,3.24 +2004-10-18,44.70,47.75,44.70,47.75,300188000,3.26 +2004-10-15,44.88,45.61,44.19,45.50,257782000,3.11 +2004-10-14,43.19,45.75,42.55,44.98,692106800,3.07 +2004-10-13,38.87,39.76,38.74,39.75,290752000,2.71 +2004-10-12,38.50,38.58,37.65,38.29,115047800,2.61 +2004-10-11,38.80,39.06,38.20,38.59,80967600,2.63 +2004-10-08,39.56,39.77,38.84,39.06,89807200,2.67 +2004-10-07,40.54,40.93,39.46,39.62,106537200,2.70 +2004-10-06,39.50,40.76,39.47,40.64,111575800,2.77 +2004-10-05,38.56,39.67,38.40,39.37,101540600,2.69 +2004-10-04,39.18,39.18,38.75,38.79,143521000,2.65 +2004-10-01,39.12,39.19,38.58,38.67,116351200,2.64 +2004-09-30,39.00,39.27,38.45,38.75,106253000,2.65 +2004-09-29,37.93,38.86,37.82,38.68,68377400,2.64 +2004-09-28,37.46,38.29,37.45,38.04,88296600,2.60 +2004-09-27,36.95,37.98,36.83,37.53,99379000,2.56 +2004-09-24,37.45,38.00,37.15,37.29,92372000,2.55 +2004-09-23,37.04,37.50,36.93,37.27,99351000,2.54 +2004-09-22,38.10,38.14,36.81,36.92,100422000,2.52 +2004-09-21,37.75,38.87,37.46,38.01,96663000,2.60 +2004-09-20,36.88,37.98,36.87,37.71,61250000,2.57 +2004-09-17,36.55,37.38,36.40,37.14,125577200,2.54 +2004-09-16,35.20,36.76,35.08,36.35,125479200,2.48 +2004-09-15,35.36,35.48,34.80,35.20,58167200,2.40 +2004-09-14,35.24,35.55,34.78,35.49,63705600,2.42 +2004-09-13,35.88,36.07,35.32,35.59,70494200,2.43 +2004-09-10,35.66,36.23,35.46,35.87,82003600,2.45 +2004-09-09,36.10,36.30,35.28,35.70,115334800,2.44 +2004-09-08,35.70,36.57,35.68,36.35,85881600,2.48 +2004-09-07,35.40,36.19,35.23,35.76,75489400,2.44 +2004-09-03,35.01,35.92,35.01,35.23,73367000,2.41 +2004-09-02,35.50,35.81,34.83,35.66,101581200,2.43 +2004-09-01,34.30,35.99,34.19,35.86,128931600,2.45 +2004-08-31,34.07,34.95,34.00,34.49,94140200,2.35 +2004-08-30,34.00,34.72,33.96,34.12,54535600,2.33 +2004-08-27,34.68,34.76,34.00,34.35,97203400,2.35 +2004-08-26,33.04,35.18,32.74,34.66,238964600,2.37 +2004-08-25,31.87,33.15,31.73,33.05,126404600,2.26 +2004-08-24,31.26,31.95,31.19,31.95,93534000,2.18 +2004-08-23,30.86,31.27,30.60,31.08,63665000,2.12 +2004-08-20,30.71,30.99,30.49,30.80,79195200,2.10 +2004-08-19,31.51,31.86,30.36,30.71,97230000,2.10 +2004-08-18,30.51,31.85,30.49,31.74,91163800,2.17 +2004-08-17,30.58,31.13,30.35,30.87,80754800,2.11 +2004-08-16,31.00,31.72,30.64,30.78,108918600,2.10 +2004-08-13,30.60,31.28,30.40,30.84,82012000,2.11 +2004-08-12,30.45,30.85,30.28,30.37,56550200,2.07 +2004-08-11,31.10,31.13,30.26,31.01,80598000,2.12 +2004-08-10,30.39,31.54,30.35,31.52,87759000,2.15 +2004-08-09,29.85,30.45,29.81,30.30,72711800,2.07 +2004-08-06,30.90,31.10,29.70,29.78,123072600,2.03 +2004-08-05,31.81,32.30,31.25,31.39,61125400,2.14 +2004-08-04,31.19,32.12,31.17,31.79,69122200,2.17 +2004-08-03,31.45,31.72,31.15,31.29,52907400,2.14 +2004-08-02,31.18,32.20,31.13,31.58,91273000,2.16 +2004-07-30,32.65,33.00,32.00,32.34,60755800,2.21 +2004-07-29,32.47,32.82,32.13,32.64,55539400,2.23 +2004-07-28,32.31,32.41,31.16,32.27,71262800,2.20 +2004-07-27,31.80,32.75,31.57,32.43,106251600,2.21 +2004-07-26,30.85,31.45,30.78,31.26,98483000,2.13 +2004-07-23,31.53,31.75,30.48,30.70,68392800,2.10 +2004-07-22,31.25,31.73,31.06,31.68,83529600,2.16 +2004-07-21,32.42,32.71,31.34,31.62,75314400,2.16 +2004-07-20,31.95,32.20,31.55,32.20,80936800,2.20 +2004-07-19,32.01,32.22,31.66,31.97,133292600,2.18 +2004-07-16,32.80,32.92,32.12,32.20,122095400,2.20 +2004-07-15,32.66,33.63,32.11,32.93,441931000,2.25 +2004-07-14,28.86,29.97,28.74,29.58,208950000,2.02 +2004-07-13,29.25,29.60,29.02,29.22,79044000,1.99 +2004-07-12,30.02,30.04,28.93,29.14,127905400,1.99 +2004-07-09,30.27,30.50,30.03,30.03,52215800,2.05 +2004-07-08,30.13,30.68,29.95,30.14,58345000,2.06 +2004-07-07,30.85,31.36,30.13,30.39,99498000,2.07 +2004-07-06,31.27,31.42,30.80,30.95,87245200,2.11 +2004-07-02,30.48,31.18,29.73,31.08,227670800,2.12 +2004-07-01,32.10,32.48,31.90,32.30,85485400,2.21 +2004-06-30,32.56,32.97,31.89,32.54,93261000,2.22 +2004-06-29,32.07,32.99,31.41,32.50,147638400,2.22 +2004-06-28,34.18,34.19,32.21,32.49,130274200,2.22 +2004-06-25,33.07,33.70,33.00,33.70,80857000,2.30 +2004-06-24,33.51,33.70,32.98,33.18,63128800,2.27 +2004-06-23,33.00,33.83,32.89,33.70,97717200,2.30 +2004-06-22,32.30,33.09,32.29,33.00,90127800,2.25 +2004-06-21,33.12,33.50,32.12,32.33,97553400,2.21 +2004-06-18,32.66,33.41,32.43,32.91,101563000,2.25 +2004-06-17,32.56,33.13,32.21,32.81,137830000,2.24 +2004-06-16,30.66,33.32,30.53,32.74,227410400,2.24 +2004-06-15,30.54,31.14,30.26,30.69,111158600,2.10 +2004-06-14,30.65,30.68,29.50,30.12,60996600,2.06 +2004-06-10,30.20,30.97,30.20,30.74,64394400,2.10 +2004-06-09,30.09,30.71,30.00,30.20,87301200,2.06 +2004-06-08,29.99,30.44,29.83,30.35,103905200,2.07 +2004-06-07,29.04,29.98,28.81,29.81,73969000,2.04 +2004-06-04,28.56,29.25,28.51,28.78,99778000,1.96 +2004-06-03,28.72,28.99,28.29,28.40,62732600,1.94 +2004-06-02,28.03,29.17,27.80,28.92,79678200,1.97 +2004-06-01,27.79,28.20,27.61,28.06,45533600,1.92 +2004-05-28,28.08,28.27,27.80,28.06,36429400,1.92 +2004-05-27,28.46,28.60,27.82,28.17,58993200,1.92 +2004-05-26,28.33,28.78,28.00,28.51,80542000,1.95 +2004-05-25,27.50,28.51,27.29,28.41,79994600,1.94 +2004-05-24,27.29,27.90,27.11,27.34,58900800,1.87 +2004-05-21,26.90,27.20,26.73,27.11,44973600,1.85 +2004-05-20,26.63,27.00,26.47,26.71,49074200,1.82 +2004-05-19,27.40,27.50,26.42,26.47,93898000,1.81 +2004-05-18,26.97,27.29,26.80,27.06,51515800,1.85 +2004-05-17,26.70,27.06,26.36,26.64,75111400,1.82 +2004-05-14,27.25,27.32,26.45,27.06,64450400,1.85 +2004-05-13,27.10,27.72,26.90,27.19,57463000,1.86 +2004-05-12,26.79,27.34,26.24,27.30,61355000,1.86 +2004-05-11,26.40,27.19,26.40,27.14,76293000,1.85 +2004-05-10,26.27,26.60,25.94,26.28,62494600,1.79 +2004-05-07,26.55,27.57,26.55,26.67,104759200,1.82 +2004-05-06,26.40,26.75,25.90,26.58,65889600,1.81 +2004-05-05,26.20,26.75,25.96,26.65,59526600,1.82 +2004-05-04,25.97,26.55,25.50,26.14,69995800,1.78 +2004-05-03,26.00,26.33,25.74,26.07,74408600,1.78 +2004-04-30,26.71,26.96,25.49,25.78,116625600,1.76 +2004-04-29,26.45,27.00,25.98,26.77,115197600,1.83 +2004-04-28,26.82,27.01,26.34,26.45,57792000,1.81 +2004-04-27,27.24,27.44,26.69,26.94,70966000,1.84 +2004-04-26,27.58,27.64,27.00,27.13,57782200,1.85 +2004-04-23,27.70,28.00,27.05,27.70,78957200,1.89 +2004-04-22,27.56,28.18,27.11,27.78,86146200,1.90 +2004-04-21,27.60,28.12,27.37,27.73,81468800,1.89 +2004-04-20,28.21,28.41,27.56,27.73,88629800,1.89 +2004-04-19,28.12,28.75,27.83,28.35,178088400,1.94 +2004-04-16,29.15,29.31,28.50,29.18,100732800,1.99 +2004-04-15,28.82,29.58,28.16,29.30,440361600,2.00 +2004-04-14,26.74,27.07,26.31,26.64,159933200,1.82 +2004-04-13,27.98,28.03,26.84,26.93,109099200,1.84 +2004-04-12,27.50,28.10,27.49,28.04,57635200,1.91 +2004-04-08,27.88,28.00,27.20,27.53,60229400,1.88 +2004-04-07,27.61,27.70,26.92,27.31,63779800,1.86 +2004-04-06,27.71,28.15,27.43,27.83,64498000,1.90 +2004-04-05,27.48,28.37,27.44,28.32,96418000,1.93 +2004-04-02,27.75,27.93,27.23,27.50,68619600,1.88 +2004-04-01,26.89,27.27,26.62,27.11,79583000,1.85 +2004-03-31,27.92,27.98,26.95,27.04,97693400,1.85 +2004-03-30,27.74,27.95,27.34,27.92,89919200,1.91 +2004-03-29,27.37,27.99,27.20,27.91,87682000,1.91 +2004-03-26,27.00,27.36,26.91,27.04,104973400,1.85 +2004-03-25,26.14,26.91,25.89,26.87,141611400,1.83 +2004-03-24,25.27,25.75,25.27,25.50,107053800,1.74 +2004-03-23,25.88,26.00,25.22,25.29,96378800,1.73 +2004-03-22,25.37,26.17,25.25,25.86,104757800,1.77 +2004-03-19,25.56,26.94,25.54,25.86,102144000,1.77 +2004-03-18,25.94,26.06,25.59,25.67,80270400,1.75 +2004-03-17,25.96,26.38,25.78,26.19,102858000,1.79 +2004-03-16,26.55,26.61,25.39,25.82,151358200,1.76 +2004-03-15,27.03,27.35,26.26,26.45,120429400,1.81 +2004-03-12,27.32,27.78,27.17,27.56,82306000,1.88 +2004-03-11,27.27,28.04,27.09,27.15,148962800,1.85 +2004-03-10,27.04,28.14,26.94,27.68,251741000,1.89 +2004-03-09,25.90,27.23,25.75,27.10,154590800,1.85 +2004-03-08,26.62,26.79,25.80,26.00,130718000,1.78 +2004-03-05,24.95,27.49,24.90,26.74,385149800,1.83 +2004-03-04,23.93,25.22,23.91,25.16,165055800,1.72 +2004-03-03,23.60,24.19,23.60,23.92,56282800,1.63 +2004-03-02,24.00,24.10,23.77,23.81,64171800,1.63 +2004-03-01,24.10,24.30,23.87,24.02,80420200,1.64 +2004-02-27,22.96,24.02,22.95,23.92,117209400,1.63 +2004-02-26,22.88,23.18,22.80,23.04,49602000,1.57 +2004-02-25,22.28,22.90,22.21,22.81,69069000,1.56 +2004-02-24,22.14,22.74,22.00,22.36,64764000,1.53 +2004-02-23,22.34,22.46,21.89,22.19,48519800,1.51 +2004-02-20,22.50,22.51,22.21,22.40,69400800,1.53 +2004-02-19,23.33,23.64,22.41,22.47,80770200,1.53 +2004-02-18,23.18,23.44,23.05,23.26,35408800,1.59 +2004-02-17,23.10,23.49,23.10,23.16,42739200,1.58 +2004-02-13,23.85,24.10,22.83,23.00,78995000,1.57 +2004-02-12,23.61,23.99,23.60,23.73,45997000,1.62 +2004-02-11,23.09,23.87,23.05,23.80,87136000,1.62 +2004-02-10,22.62,23.12,22.44,22.98,63835800,1.57 +2004-02-09,22.62,22.86,22.50,22.67,47065200,1.55 +2004-02-06,22.45,22.89,22.40,22.71,48335000,1.55 +2004-02-05,21.82,22.91,21.81,22.42,88211200,1.53 +2004-02-04,22.00,22.09,21.70,21.79,76388200,1.49 +2004-02-03,22.30,22.40,22.00,22.26,45203200,1.52 +2004-02-02,22.46,22.81,22.08,22.32,71857800,1.52 +2004-01-30,22.65,22.87,22.42,22.56,46324600,1.54 +2004-01-29,22.63,22.80,22.19,22.68,53174800,1.55 +2004-01-28,22.84,23.38,22.41,22.52,68850600,1.54 +2004-01-27,23.04,23.25,22.80,23.07,76767600,1.58 +2004-01-26,22.46,23.06,22.43,23.01,67817400,1.57 +2004-01-23,22.42,22.74,22.25,22.56,56792400,1.54 +2004-01-22,22.56,22.83,22.18,22.18,51251200,1.51 +2004-01-21,22.70,22.97,22.43,22.61,56665000,1.54 +2004-01-20,22.67,22.80,22.25,22.73,78986600,1.55 +2004-01-16,22.89,23.04,22.61,22.72,93205000,1.55 +2004-01-15,22.91,23.40,22.50,22.85,254552200,1.56 +2004-01-14,24.40,24.54,23.78,24.20,155010800,1.65 +2004-01-13,24.70,24.84,23.86,24.12,169754200,1.65 +2004-01-12,23.25,24.00,23.10,23.73,121886800,1.62 +2004-01-09,23.23,24.13,22.79,23.00,106864800,1.57 +2004-01-08,22.84,23.73,22.65,23.36,115075800,1.59 +2004-01-07,22.10,22.83,21.93,22.59,146718600,1.54 +2004-01-06,22.25,22.42,21.71,22.09,127337000,1.51 +2004-01-05,21.42,22.39,21.42,22.17,98754600,1.51 +2004-01-02,21.55,21.75,21.18,21.28,36160600,1.45 +2003-12-31,21.35,21.53,21.18,21.37,43612800,1.46 +2003-12-30,21.18,21.50,21.15,21.28,51213400,1.45 +2003-12-29,20.91,21.16,20.86,21.15,58364600,1.44 +2003-12-26,20.35,20.91,20.34,20.78,25923800,1.42 +2003-12-24,19.72,20.59,19.65,20.41,44368800,1.39 +2003-12-23,19.92,19.95,19.60,19.81,77124600,1.35 +2003-12-22,19.65,19.89,19.25,19.85,94266200,1.36 +2003-12-19,20.19,20.42,19.62,19.70,113390200,1.34 +2003-12-18,19.90,20.18,19.90,20.04,82728800,1.37 +2003-12-17,20.08,20.13,19.79,19.88,68565000,1.36 +2003-12-16,20.19,20.49,20.01,20.12,93489200,1.37 +2003-12-15,21.49,21.49,20.07,20.17,97227200,1.38 +2003-12-12,21.32,21.32,20.70,20.89,48168400,1.43 +2003-12-11,20.25,21.34,20.21,21.21,45784200,1.45 +2003-12-10,20.45,20.61,19.96,20.38,67834200,1.39 +2003-12-09,21.17,21.25,20.40,20.45,33786200,1.40 +2003-12-08,20.78,21.08,20.41,21.05,37059400,1.44 +2003-12-05,20.90,21.15,20.73,20.85,46544400,1.42 +2003-12-04,20.94,21.17,20.77,21.15,44485000,1.44 +2003-12-03,21.54,21.84,20.96,21.03,47824000,1.44 +2003-12-02,21.60,21.90,21.41,21.54,51324000,1.47 +2003-12-01,21.04,21.85,21.00,21.71,90384000,1.48 +2003-11-28,20.78,21.07,20.52,20.91,19024600,1.43 +2003-11-26,20.89,21.15,20.25,20.72,61282200,1.41 +2003-11-25,21.23,21.25,20.61,20.68,67163600,1.41 +2003-11-24,20.50,21.27,20.45,21.15,95456200,1.44 +2003-11-21,20.34,20.58,19.85,20.28,60459000,1.38 +2003-11-20,20.10,21.08,20.10,20.38,59897600,1.39 +2003-11-19,20.56,20.65,20.26,20.42,86146200,1.39 +2003-11-18,21.21,21.34,20.35,20.41,66798200,1.39 +2003-11-17,21.35,21.37,20.95,21.13,57064000,1.44 +2003-11-14,22.48,22.61,21.28,21.46,59262000,1.47 +2003-11-13,22.07,22.56,21.92,22.42,53193000,1.53 +2003-11-12,21.48,22.72,21.48,22.33,75000800,1.52 +2003-11-11,21.90,22.02,21.48,21.54,53768400,1.47 +2003-11-10,22.45,22.65,21.84,21.90,58569000,1.50 +2003-11-07,23.19,23.24,22.45,22.50,52536400,1.54 +2003-11-06,22.91,23.15,22.65,23.12,99268400,1.58 +2003-11-05,22.82,23.13,22.47,23.03,80617600,1.57 +2003-11-04,23.07,23.10,22.59,22.91,62308400,1.56 +2003-11-03,22.83,23.30,22.78,23.15,75710600,1.58 +2003-10-31,23.30,23.35,22.78,22.89,54538400,1.56 +2003-10-30,23.99,24.00,22.87,23.09,65139200,1.58 +2003-10-29,23.51,23.90,23.34,23.69,66770200,1.62 +2003-10-28,22.56,23.77,22.40,23.72,62928600,1.62 +2003-10-27,22.75,22.89,22.49,22.60,40503400,1.54 +2003-10-24,22.56,22.85,22.23,22.60,54964000,1.54 +2003-10-23,22.73,23.15,22.59,22.99,41302800,1.57 +2003-10-22,22.94,23.20,22.68,22.76,40399800,1.55 +2003-10-21,23.31,23.40,22.75,23.18,44115400,1.58 +2003-10-20,22.60,23.34,22.38,23.22,69783000,1.59 +2003-10-17,23.38,23.49,22.43,22.75,89952800,1.55 +2003-10-16,23.80,23.84,22.41,23.25,243920600,1.59 +2003-10-15,24.85,25.01,24.58,24.82,152525800,1.69 +2003-10-14,24.32,24.74,24.19,24.55,68854800,1.68 +2003-10-13,23.73,24.41,23.72,24.35,69966400,1.66 +2003-10-10,23.50,23.81,23.37,23.68,43709400,1.62 +2003-10-09,23.30,23.67,22.79,23.45,86937200,1.60 +2003-10-08,23.25,23.54,22.73,23.06,107167200,1.57 +2003-10-07,22.05,23.41,21.91,23.22,104543600,1.59 +2003-10-06,21.67,22.33,21.58,22.29,67082400,1.52 +2003-10-03,20.99,21.86,20.88,21.69,74900000,1.48 +2003-10-02,20.80,20.80,20.28,20.57,51014600,1.40 +2003-10-01,20.71,21.10,20.19,20.79,59028200,1.42 +2003-09-30,21.09,21.22,20.44,20.72,71356600,1.41 +2003-09-29,21.49,21.67,20.65,21.30,91425600,1.45 +2003-09-26,20.30,21.70,20.15,20.69,86812600,1.41 +2003-09-25,21.34,21.37,20.25,20.43,143595200,1.39 +2003-09-24,22.21,22.31,21.08,21.32,75321400,1.46 +2003-09-23,22.02,22.46,21.88,22.43,33112800,1.53 +2003-09-22,22.18,22.50,21.92,22.08,44955400,1.51 +2003-09-19,22.88,23.05,22.43,22.58,51489200,1.54 +2003-09-18,22.10,22.99,21.95,22.88,63226800,1.56 +2003-09-17,22.37,22.38,21.85,22.12,72349200,1.51 +2003-09-16,22.21,22.69,22.20,22.36,67251800,1.53 +2003-09-15,22.81,22.90,22.12,22.21,56711200,1.52 +2003-09-12,22.51,23.14,22.31,23.10,44997400,1.58 +2003-09-11,22.25,22.79,22.10,22.56,53421200,1.54 +2003-09-10,22.25,22.61,22.11,22.18,56222600,1.51 +2003-09-09,22.53,22.67,22.12,22.37,45092600,1.53 +2003-09-08,22.48,22.79,22.47,22.74,41811000,1.55 +2003-09-05,22.73,23.15,22.41,22.50,60033400,1.54 +2003-09-04,23.16,23.25,22.77,22.83,49945000,1.56 +2003-09-03,22.80,23.32,22.76,22.95,67207000,1.57 +2003-09-02,22.66,22.90,22.40,22.85,60533200,1.56 +2003-08-29,22.20,22.85,22.05,22.61,65788800,1.54 +2003-08-28,21.33,22.22,21.33,22.19,79906400,1.51 +2003-08-27,20.91,21.48,20.66,21.48,56425600,1.47 +2003-08-26,20.75,21.07,20.35,21.05,41239800,1.44 +2003-08-25,20.78,20.91,20.49,20.86,34445600,1.42 +2003-08-22,21.81,22.00,20.64,20.88,62566000,1.43 +2003-08-21,21.03,21.71,20.95,21.68,63831600,1.48 +2003-08-20,20.18,21.27,20.14,21.01,68303200,1.43 +2003-08-19,20.37,20.45,20.00,20.32,33422200,1.39 +2003-08-18,19.86,20.41,19.72,20.34,48193600,1.39 +2003-08-15,20.02,20.07,19.66,19.71,31466400,1.35 +2003-08-14,20.21,20.33,19.94,19.97,48195000,1.36 +2003-08-13,19.86,20.34,19.58,20.18,71024800,1.38 +2003-08-12,19.76,19.80,19.46,19.70,41109600,1.34 +2003-08-11,19.82,19.93,19.51,19.66,34307000,1.34 +2003-08-08,20.11,20.13,19.60,19.64,34414800,1.34 +2003-08-07,19.73,20.09,19.42,19.93,43594600,1.36 +2003-08-06,20.06,20.17,19.50,19.63,61366200,1.34 +2003-08-05,21.35,21.40,20.10,20.38,62360200,1.39 +2003-08-04,20.53,21.50,20.28,21.21,57528800,1.45 +2003-08-01,21.00,21.27,20.64,20.73,37401000,1.42 +2003-07-31,20.74,21.35,20.57,21.08,75366200,1.44 +2003-07-30,20.77,20.90,20.17,20.28,43398600,1.38 +2003-07-29,20.99,21.08,20.52,20.72,49280000,1.41 +2003-07-28,21.50,21.50,20.86,20.99,42589400,1.43 +2003-07-25,20.41,21.57,20.40,21.54,54171600,1.47 +2003-07-24,21.04,21.50,20.38,20.51,57309000,1.40 +2003-07-23,20.95,20.96,20.46,20.79,35758800,1.42 +2003-07-22,20.87,20.96,20.50,20.80,49606200,1.42 +2003-07-21,20.69,20.80,20.30,20.61,45952200,1.41 +2003-07-18,20.90,21.18,20.40,20.86,74709600,1.42 +2003-07-17,20.19,20.95,20.13,20.90,187803000,1.43 +2003-07-16,19.97,20.00,19.38,19.87,62732600,1.36 +2003-07-15,20.02,20.24,19.43,19.61,51661400,1.34 +2003-07-14,20.01,20.40,19.87,19.90,47101600,1.36 +2003-07-11,19.66,20.00,19.53,19.85,34214600,1.36 +2003-07-10,19.88,19.94,19.37,19.58,42733600,1.34 +2003-07-09,20.21,20.45,19.89,19.89,53411400,1.36 +2003-07-08,19.52,20.50,19.49,20.40,64184400,1.39 +2003-07-07,19.27,20.18,19.13,19.87,71568000,1.36 +2003-07-03,19.00,19.55,18.98,19.13,34442800,1.31 +2003-07-02,19.03,19.40,19.02,19.27,81324600,1.32 +2003-07-01,18.87,19.18,18.51,19.09,45248000,1.30 +2003-06-30,18.68,19.21,18.59,19.06,55538000,1.30 +2003-06-27,19.30,19.31,18.48,18.73,91448000,1.28 +2003-06-26,18.70,19.32,18.70,19.29,40426400,1.32 +2003-06-25,18.86,19.40,18.71,19.09,82453000,1.30 +2003-06-24,19.47,19.67,18.72,18.78,128595600,1.28 +2003-06-23,19.30,19.69,18.75,19.06,76840400,1.30 +2003-06-20,19.35,19.58,18.90,19.20,89136600,1.31 +2003-06-19,19.36,19.61,18.77,19.14,95382000,1.31 +2003-06-18,18.45,19.48,18.31,19.12,113745800,1.31 +2003-06-17,18.41,18.50,17.99,18.19,44366000,1.24 +2003-06-16,17.60,18.27,17.45,18.27,59631600,1.25 +2003-06-13,17.75,17.95,17.13,17.42,47811400,1.19 +2003-06-12,17.55,17.88,17.45,17.77,63147000,1.21 +2003-06-11,17.15,17.51,16.81,17.45,56278600,1.19 +2003-06-10,16.89,17.29,16.75,17.18,44161600,1.17 +2003-06-09,16.94,17.04,16.63,16.79,64988000,1.15 +2003-06-06,17.74,18.04,17.14,17.15,60347000,1.17 +2003-06-05,17.45,17.74,17.33,17.64,51374400,1.20 +2003-06-04,17.30,17.79,17.14,17.60,67800600,1.20 +2003-06-03,17.44,17.67,17.02,17.31,90214600,1.18 +2003-06-02,18.10,18.29,17.27,17.45,104647200,1.19 +2003-05-30,18.12,18.18,17.53,17.95,95687200,1.23 +2003-05-29,18.29,18.50,17.90,18.10,83441400,1.24 +2003-05-28,18.50,18.66,18.15,18.28,84919800,1.25 +2003-05-27,17.96,18.90,17.91,18.88,72532600,1.29 +2003-05-23,18.21,18.46,17.96,18.32,51679600,1.25 +2003-05-22,17.89,18.40,17.74,18.24,44615200,1.25 +2003-05-21,17.79,18.09,17.67,17.85,76252400,1.22 +2003-05-20,18.10,18.16,17.60,17.79,104055000,1.21 +2003-05-19,18.53,18.65,18.06,18.10,111472200,1.24 +2003-05-16,18.59,19.01,18.28,18.80,85407000,1.28 +2003-05-15,18.60,18.85,18.47,18.73,71248800,1.28 +2003-05-14,18.83,18.84,18.43,18.55,88872000,1.27 +2003-05-13,18.43,18.97,17.95,18.67,111699000,1.27 +2003-05-12,18.15,18.74,18.13,18.56,104843200,1.27 +2003-05-09,18.33,18.40,17.88,18.30,147096600,1.25 +2003-05-08,17.70,18.07,17.29,18.00,171934000,1.23 +2003-05-07,17.33,18.24,17.11,17.65,263594800,1.21 +2003-05-06,16.12,17.90,16.10,17.50,378623000,1.19 +2003-05-05,14.77,16.88,14.75,16.09,388927000,1.10 +2003-05-02,14.46,14.59,14.34,14.45,80295600,0.99 +2003-05-01,14.25,14.39,14.00,14.36,85689800,0.98 +2003-04-30,13.93,14.35,13.85,14.22,114543800,0.97 +2003-04-29,13.98,14.16,13.58,14.06,114559200,0.96 +2003-04-28,13.48,13.96,13.43,13.86,159199600,0.95 +2003-04-25,13.46,13.58,13.23,13.35,51329600,0.91 +2003-04-24,13.52,13.61,13.00,13.44,81277000,0.92 +2003-04-23,13.53,13.63,13.36,13.58,52420200,0.93 +2003-04-22,13.18,13.62,13.09,13.51,75142200,0.92 +2003-04-21,13.13,13.19,12.98,13.14,38080000,0.90 +2003-04-17,13.20,13.25,12.72,13.12,154064400,0.90 +2003-04-16,12.99,13.67,12.92,13.24,254044000,0.90 +2003-04-15,13.59,13.60,13.30,13.39,75992000,0.91 +2003-04-14,13.71,13.75,13.50,13.58,125739600,0.93 +2003-04-11,14.05,14.44,12.93,13.20,348177200,0.90 +2003-04-10,14.20,14.39,14.20,14.37,26775000,0.98 +2003-04-09,14.52,14.62,14.14,14.19,36681400,0.97 +2003-04-08,14.51,14.65,14.36,14.45,32233600,0.99 +2003-04-07,14.85,14.95,14.41,14.49,49215600,0.99 +2003-04-04,14.52,14.67,14.39,14.41,36505000,0.98 +2003-04-03,14.56,14.70,14.35,14.46,36428000,0.99 +2003-04-02,14.36,14.69,14.27,14.60,42842800,1.00 +2003-04-01,14.20,14.31,14.07,14.16,38585400,0.97 +2003-03-31,14.33,14.53,14.04,14.14,64164800,0.97 +2003-03-28,14.40,14.62,14.37,14.57,36325800,0.99 +2003-03-27,14.32,14.70,14.32,14.49,30598400,0.99 +2003-03-26,14.55,14.56,14.30,14.41,44585800,0.98 +2003-03-25,14.41,14.83,14.37,14.55,41924400,0.99 +2003-03-24,14.67,14.80,14.35,14.37,40275200,0.98 +2003-03-21,15.09,15.15,14.82,15.00,74487000,1.02 +2003-03-20,14.93,14.99,14.60,14.91,40794600,1.02 +2003-03-19,15.07,15.15,14.79,14.95,35329000,1.02 +2003-03-18,15.00,15.09,14.82,15.00,57495200,1.02 +2003-03-17,14.89,15.07,14.71,15.01,99978200,1.02 +2003-03-14,14.68,15.01,14.64,14.78,38274600,1.01 +2003-03-13,14.47,14.80,14.17,14.72,83861400,1.00 +2003-03-12,14.17,14.39,14.06,14.22,55640200,0.97 +2003-03-11,14.36,14.49,14.12,14.23,40297600,0.97 +2003-03-10,14.51,14.67,14.30,14.37,33643400,0.98 +2003-03-07,14.47,14.71,14.31,14.53,50246000,0.99 +2003-03-06,14.58,14.60,14.40,14.56,24964800,0.99 +2003-03-05,14.61,14.80,14.52,14.62,31670800,1.00 +2003-03-04,14.74,14.81,14.44,14.56,31603600,0.99 +2003-03-03,15.01,15.16,14.55,14.65,50940400,1.00 +2003-02-28,14.86,15.09,14.77,15.01,48774600,1.02 +2003-02-27,14.57,15.00,14.51,14.86,38585400,1.01 +2003-02-26,14.99,15.02,14.48,14.50,54273800,0.99 +2003-02-25,14.68,15.08,14.58,15.02,47160400,1.03 +2003-02-24,14.86,15.03,13.80,14.74,45063200,1.01 +2003-02-21,14.82,15.06,14.65,15.00,39361000,1.02 +2003-02-20,14.85,14.96,14.71,14.77,56088200,1.01 +2003-02-19,15.07,15.15,14.68,14.85,60092200,1.01 +2003-02-18,14.75,15.30,14.72,15.27,72724400,1.04 +2003-02-14,14.61,14.72,14.35,14.67,60824400,1.00 +2003-02-13,14.41,14.64,14.24,14.54,52123400,0.99 +2003-02-12,14.27,14.60,14.27,14.39,57171800,0.98 +2003-02-11,14.50,14.63,14.20,14.35,41195000,0.98 +2003-02-10,14.26,14.57,14.06,14.35,41972000,0.98 +2003-02-07,14.55,14.60,14.07,14.15,67425400,0.97 +2003-02-06,14.36,14.59,14.22,14.43,44787400,0.99 +2003-02-05,14.71,14.93,14.44,14.45,55403600,0.99 +2003-02-04,14.45,14.65,14.31,14.60,79353400,1.00 +2003-02-03,14.41,14.91,14.35,14.66,66196200,1.00 +2003-01-31,14.19,14.55,14.05,14.36,85306200,0.98 +2003-01-30,14.98,15.07,14.29,14.32,101764600,0.98 +2003-01-29,14.55,15.10,14.30,14.93,93261000,1.02 +2003-01-28,14.24,14.69,14.16,14.58,71563800,1.00 +2003-01-27,13.68,14.50,13.65,14.13,97851600,0.96 +2003-01-24,14.24,14.24,13.56,13.80,76367200,0.94 +2003-01-23,14.05,14.36,13.95,14.17,57064000,0.97 +2003-01-22,13.98,14.15,13.80,13.88,53785200,0.95 +2003-01-21,14.21,14.41,14.00,14.02,63364000,0.96 +2003-01-17,14.56,14.56,14.08,14.10,66690400,0.96 +2003-01-16,14.21,14.76,14.21,14.62,139767600,1.00 +2003-01-15,14.59,14.70,14.26,14.43,92782200,0.99 +2003-01-14,14.69,14.82,14.49,14.61,46715200,1.00 +2003-01-13,14.90,14.90,14.36,14.63,44735600,1.00 +2003-01-10,14.58,14.82,14.49,14.72,43775200,1.00 +2003-01-09,14.62,14.92,14.50,14.68,53813200,1.00 +2003-01-08,14.58,14.71,14.44,14.55,57411200,0.99 +2003-01-07,14.79,15.00,14.47,14.85,85586200,1.01 +2003-01-06,15.03,15.38,14.88,14.90,97633200,1.02 +2003-01-03,14.80,14.93,14.59,14.90,36863400,1.02 +2003-01-02,14.36,14.92,14.35,14.80,45357200,1.01 +2002-12-31,14.00,14.36,13.95,14.33,50181600,0.98 +2002-12-30,14.08,14.15,13.84,14.07,38760400,0.96 +2002-12-27,14.31,14.38,14.01,14.06,20008800,0.96 +2002-12-26,14.42,14.81,14.28,14.40,21355600,0.98 +2002-12-24,14.44,14.47,14.30,14.36,9835000,0.98 +2002-12-23,14.16,14.55,14.12,14.49,31456600,0.99 +2002-12-20,14.29,14.56,13.78,14.14,79524200,0.97 +2002-12-19,14.53,14.92,14.10,14.20,86879800,0.97 +2002-12-18,14.80,14.86,14.50,14.57,37675400,0.99 +2002-12-17,14.85,15.19,14.66,15.08,55665400,1.03 +2002-12-16,14.81,15.10,14.61,14.85,62906200,1.01 +2002-12-13,15.14,15.15,14.65,14.79,41195000,1.01 +2002-12-12,15.51,15.55,15.01,15.19,37335200,1.04 +2002-12-11,15.30,15.49,15.08,15.49,63375200,1.06 +2002-12-10,14.75,15.45,14.73,15.28,77152600,1.04 +2002-12-09,14.94,14.95,14.67,14.75,59021200,1.01 +2002-12-06,14.65,15.19,14.52,14.95,61339600,1.02 +2002-12-05,15.03,15.08,14.53,14.63,60849600,1.00 +2002-12-04,15.18,15.19,14.50,14.97,81439400,1.02 +2002-12-03,15.20,15.34,15.10,15.16,56967400,1.04 +2002-12-02,15.90,16.10,15.01,15.18,99685600,1.04 +2002-11-29,15.79,15.88,15.41,15.50,35858200,1.06 +2002-11-27,15.60,15.86,15.45,15.72,71699600,1.07 +2002-11-26,15.85,15.90,15.27,15.41,60065600,1.05 +2002-11-25,16.03,16.14,15.71,15.97,49856800,1.09 +2002-11-22,16.09,16.30,15.90,16.01,56964600,1.09 +2002-11-21,15.90,16.44,15.75,16.35,104620600,1.12 +2002-11-20,15.30,15.70,15.25,15.53,52185000,1.06 +2002-11-19,15.55,15.75,15.01,15.27,52738000,1.04 +2002-11-18,16.19,16.20,15.52,15.65,41144600,1.07 +2002-11-15,16.23,16.24,15.76,15.95,40248600,1.09 +2002-11-14,15.90,16.41,15.78,16.30,35428400,1.11 +2002-11-13,15.50,16.07,15.28,15.59,57934800,1.06 +2002-11-12,15.32,16.04,15.28,15.64,55948200,1.07 +2002-11-11,15.74,15.89,15.12,15.16,38243800,1.04 +2002-11-08,16.01,16.20,15.52,15.84,47516000,1.08 +2002-11-07,16.94,17.10,15.81,16.00,84044800,1.09 +2002-11-06,17.08,17.32,16.70,17.22,54097400,1.18 +2002-11-05,16.75,16.96,16.35,16.90,52673600,1.15 +2002-11-04,16.50,17.38,16.35,16.89,94204600,1.15 +2002-11-01,15.94,16.50,15.89,16.36,47457200,1.12 +2002-10-31,15.99,16.44,15.92,16.07,73959200,1.10 +2002-10-30,15.49,16.37,15.48,15.98,67669000,1.09 +2002-10-29,15.57,15.88,14.96,15.44,64794800,1.05 +2002-10-28,15.55,15.95,15.25,15.61,87325000,1.07 +2002-10-25,14.69,15.45,14.59,15.42,69767600,1.05 +2002-10-24,15.02,15.21,14.55,14.69,43687000,1.00 +2002-10-23,14.63,14.98,14.50,14.88,52259200,1.02 +2002-10-22,14.47,14.88,14.26,14.70,54537000,1.00 +2002-10-21,14.26,14.63,14.00,14.56,59630200,0.99 +2002-10-18,14.00,14.35,13.93,14.34,72074800,0.98 +2002-10-17,14.21,14.38,13.98,14.11,117324200,0.96 +2002-10-16,14.86,15.13,13.90,14.56,76906200,0.99 +2002-10-15,15.22,15.25,14.78,15.16,101379600,1.04 +2002-10-14,14.55,14.98,14.44,14.77,48601000,1.01 +2002-10-11,14.25,14.78,14.10,14.51,73669400,0.99 +2002-10-10,13.63,14.22,13.58,14.11,80393600,0.96 +2002-10-09,13.54,13.85,13.41,13.59,89171600,0.93 +2002-10-08,13.90,13.96,13.36,13.68,113411200,0.93 +2002-10-07,13.97,14.21,13.76,13.77,61174400,0.94 +2002-10-04,14.36,14.40,13.99,14.03,47706400,0.96 +2002-10-03,14.18,14.60,14.06,14.30,54474000,0.98 +2002-10-02,14.33,14.63,14.10,14.17,57337000,0.97 +2002-10-01,14.59,14.60,14.00,14.51,85605800,0.99 +2002-09-30,14.40,14.57,14.14,14.50,59424400,0.99 +2002-09-27,14.49,14.85,14.48,14.72,51538200,1.00 +2002-09-26,15.10,15.19,14.55,14.70,52161200,1.00 +2002-09-25,14.69,15.17,14.65,14.93,63670600,1.02 +2002-09-24,14.40,14.82,14.40,14.64,62665400,1.00 +2002-09-23,14.76,14.96,14.45,14.85,65927400,1.01 +2002-09-20,14.62,14.94,14.52,14.87,88197200,1.02 +2002-09-19,14.75,14.80,14.48,14.58,51486400,1.00 +2002-09-18,14.69,15.09,14.52,15.02,82160400,1.03 +2002-09-17,14.57,15.03,14.57,14.80,106999200,1.01 +2002-09-16,14.14,14.61,14.12,14.50,71660400,0.99 +2002-09-13,14.13,14.34,14.05,14.17,70737800,0.97 +2002-09-12,14.20,14.51,14.12,14.14,67457600,0.97 +2002-09-11,14.34,14.60,14.15,14.29,50603000,0.98 +2002-09-10,14.41,14.49,14.12,14.33,62367200,0.98 +2002-09-09,14.28,14.53,14.15,14.37,39561200,0.98 +2002-09-06,14.51,14.65,14.23,14.38,45397800,0.98 +2002-09-05,14.22,14.36,14.05,14.18,56544600,0.97 +2002-09-04,14.20,14.78,14.17,14.48,105165200,0.99 +2002-09-03,14.49,14.55,14.05,14.05,69234200,0.96 +2002-08-30,14.73,15.14,14.58,14.75,48379800,1.01 +2002-08-29,14.65,15.08,14.51,14.70,41042400,1.00 +2002-08-28,14.80,15.12,14.65,14.70,61993400,1.00 +2002-08-27,15.71,15.74,14.71,14.85,65557800,1.01 +2002-08-26,15.95,15.95,15.16,15.53,47492200,1.06 +2002-08-23,15.90,15.93,15.45,15.73,40811400,1.07 +2002-08-22,16.20,16.25,15.66,15.97,64577800,1.09 +2002-08-21,16.01,16.24,15.45,16.12,50607200,1.10 +2002-08-20,15.97,16.09,15.53,15.91,46656400,1.09 +2002-08-19,15.78,16.25,15.72,15.98,54139400,1.09 +2002-08-16,15.45,16.10,15.28,15.81,61306000,1.08 +2002-08-15,15.25,15.75,15.01,15.61,80519600,1.07 +2002-08-14,14.67,15.35,14.54,15.17,99771000,1.04 +2002-08-13,14.90,15.21,14.55,14.59,67467400,1.00 +2002-08-12,14.90,15.02,14.69,14.99,44941400,1.02 +2002-08-09,15.25,15.25,14.75,15.00,51429000,1.02 +2002-08-08,14.77,15.38,14.77,15.30,56837200,1.04 +2002-08-07,15.09,15.36,14.35,15.03,83368600,1.03 +2002-08-06,14.21,15.23,14.08,14.74,68013400,1.01 +2002-08-05,14.51,14.70,13.97,13.99,51006200,0.96 +2002-08-02,14.74,15.00,14.25,14.45,44765000,0.99 +2002-08-01,15.11,15.42,14.73,14.80,57239000,1.01 +2002-07-31,15.40,15.42,14.90,15.26,77674800,1.04 +2002-07-30,14.85,15.51,14.56,15.43,88709600,1.05 +2002-07-29,14.48,15.10,14.37,15.02,68740000,1.03 +2002-07-26,14.46,14.53,13.80,14.34,51926000,0.98 +2002-07-25,14.93,14.95,14.01,14.36,119838600,0.98 +2002-07-24,14.33,15.22,14.25,15.20,101648400,1.04 +2002-07-23,14.90,15.13,14.44,14.47,99972600,0.99 +2002-07-22,14.75,15.19,14.61,14.92,107724400,1.02 +2002-07-19,14.70,15.17,14.53,14.96,96301800,1.02 +2002-07-18,15.50,15.56,14.75,14.99,139865600,1.02 +2002-07-17,16.13,16.20,15.19,15.63,303871400,1.07 +2002-07-16,18.15,18.57,17.61,17.86,111692000,1.22 +2002-07-15,17.43,18.60,16.81,18.23,73998400,1.24 +2002-07-12,18.55,18.79,17.26,17.51,110873000,1.20 +2002-07-11,17.26,18.35,16.97,18.30,93419200,1.25 +2002-07-10,17.71,18.17,17.25,17.32,51720200,1.18 +2002-07-09,18.09,18.29,17.46,17.53,56687400,1.20 +2002-07-08,18.52,18.61,17.68,18.01,52801000,1.23 +2002-07-05,17.71,18.75,17.71,18.74,40412400,1.28 +2002-07-03,16.81,17.68,16.75,17.55,49757400,1.20 +2002-07-02,17.03,17.16,16.83,16.94,76297200,1.16 +2002-07-01,17.71,17.88,17.05,17.06,55672400,1.16 +2002-06-28,17.10,17.82,17.00,17.72,67464600,1.21 +2002-06-27,16.79,17.27,16.42,17.06,62914600,1.16 +2002-06-26,16.80,17.29,15.98,16.55,139738200,1.13 +2002-06-25,17.40,17.68,16.86,17.14,75300400,1.17 +2002-06-24,16.77,17.73,16.70,17.27,107983400,1.18 +2002-06-21,16.97,17.49,16.79,16.85,111294400,1.15 +2002-06-20,17.17,17.60,16.85,17.11,99159200,1.17 +2002-06-19,17.37,17.60,16.88,17.12,427366800,1.17 +2002-06-18,20.42,20.59,19.98,20.15,88340000,1.38 +2002-06-17,20.24,20.63,19.85,20.54,81152400,1.40 +2002-06-14,19.24,20.36,18.11,20.10,106225000,1.37 +2002-06-13,20.02,20.05,19.38,19.54,88020800,1.33 +2002-06-12,20.41,20.75,19.94,20.09,132179600,1.37 +2002-06-11,21.64,21.70,20.41,20.46,87374000,1.40 +2002-06-10,21.48,21.84,21.34,21.48,69393800,1.47 +2002-06-07,21.76,21.94,20.93,21.40,153094200,1.46 +2002-06-06,22.96,23.23,22.04,22.16,64999200,1.51 +2002-06-05,22.83,22.83,22.35,22.72,69270600,1.55 +2002-06-04,22.88,23.04,22.18,22.78,86955400,1.56 +2002-06-03,23.39,23.45,22.58,22.91,58777600,1.56 +2002-05-31,24.09,24.25,23.28,23.30,91373800,1.59 +2002-05-30,23.77,24.38,23.51,24.20,49093800,1.65 +2002-05-29,23.92,24.44,23.45,23.98,55448400,1.64 +2002-05-28,23.69,24.20,23.43,23.98,37429000,1.64 +2002-05-24,24.99,24.99,23.96,24.15,41543600,1.65 +2002-05-23,24.45,25.24,24.07,25.18,92349600,1.72 +2002-05-22,23.37,24.37,23.32,24.32,72718800,1.66 +2002-05-21,24.83,25.00,23.40,23.46,70247800,1.60 +2002-05-20,24.57,24.93,24.53,24.74,67478600,1.69 +2002-05-17,25.49,25.78,24.61,25.01,59123400,1.71 +2002-05-16,25.06,25.45,24.75,25.21,56763000,1.72 +2002-05-15,25.37,25.98,24.84,25.28,83956600,1.73 +2002-05-14,24.45,25.68,24.22,25.61,131626600,1.75 +2002-05-13,23.52,24.09,22.94,23.94,66402000,1.63 +2002-05-10,24.29,24.29,22.98,23.32,58849000,1.59 +2002-05-09,24.25,24.35,23.80,24.19,56154000,1.65 +2002-05-08,23.20,24.52,23.04,24.37,109170600,1.66 +2002-05-07,22.94,22.95,22.14,22.47,60687200,1.53 +2002-05-06,23.35,23.50,22.46,22.65,62416200,1.55 +2002-05-03,23.57,24.02,23.43,23.51,57695400,1.61 +2002-05-02,23.81,24.34,23.60,23.69,59836000,1.62 +2002-05-01,24.29,24.29,23.36,23.98,53676000,1.64 +2002-04-30,23.89,24.38,23.75,24.27,70240800,1.66 +2002-04-29,23.16,24.06,23.09,23.96,68072200,1.64 +2002-04-26,24.28,24.37,23.00,23.01,76245400,1.57 +2002-04-25,23.56,24.34,23.55,24.12,48550600,1.65 +2002-04-24,24.30,24.50,23.68,23.77,35112000,1.62 +2002-04-23,24.54,24.78,24.09,24.25,58367400,1.66 +2002-04-22,24.84,24.93,24.23,24.53,67356800,1.67 +2002-04-19,25.49,25.49,24.93,24.98,93851800,1.71 +2002-04-18,25.50,25.52,24.88,25.41,100427600,1.73 +2002-04-17,25.93,26.17,25.38,26.11,99062600,1.78 +2002-04-16,25.15,25.99,25.12,25.74,153644400,1.76 +2002-04-15,25.06,25.15,24.80,25.00,74842600,1.71 +2002-04-12,25.01,25.17,24.57,25.06,80060400,1.71 +2002-04-11,25.03,25.20,24.75,24.86,101813600,1.70 +2002-04-10,24.21,24.95,24.01,24.66,56245000,1.68 +2002-04-09,24.59,25.00,24.01,24.10,47882800,1.65 +2002-04-08,24.16,24.68,23.78,24.56,65378600,1.68 +2002-04-05,24.95,25.19,24.10,24.74,69587000,1.69 +2002-04-04,23.67,25.05,23.67,24.90,84624400,1.70 +2002-04-03,24.05,24.49,23.60,23.75,53632600,1.62 +2002-04-02,24.00,24.30,23.87,24.07,50948800,1.64 +2002-04-01,23.38,24.70,23.28,24.46,49761600,1.67 +2002-03-28,23.70,23.88,23.46,23.67,27113800,1.62 +2002-03-27,23.35,23.72,23.26,23.47,31925600,1.60 +2002-03-26,23.20,23.64,23.00,23.46,64460200,1.60 +2002-03-25,24.07,24.09,23.24,23.35,65707600,1.59 +2002-03-22,24.22,24.56,23.87,24.09,50548400,1.64 +2002-03-21,23.86,24.30,23.26,24.27,154088200,1.66 +2002-03-20,24.66,25.14,24.50,24.92,73579800,1.70 +2002-03-19,24.69,25.30,24.30,24.85,60586400,1.70 +2002-03-18,24.95,25.05,24.32,24.74,76139000,1.69 +2002-03-15,24.46,24.96,24.25,24.95,60225200,1.70 +2002-03-14,24.30,24.60,23.87,24.43,54324200,1.67 +2002-03-13,24.37,24.85,24.15,24.49,50191400,1.67 +2002-03-12,24.51,24.74,24.10,24.72,63513800,1.69 +2002-03-11,24.60,25.14,24.10,25.06,65696400,1.71 +2002-03-08,24.74,25.09,24.30,24.66,67443600,1.68 +2002-03-07,24.06,24.53,23.61,24.38,64562400,1.66 +2002-03-06,23.48,24.34,22.93,24.07,56551600,1.64 +2002-03-05,24.15,24.43,23.40,23.53,68675600,1.61 +2002-03-04,23.26,24.58,22.76,24.29,87064600,1.66 +2002-03-01,21.93,23.50,21.82,23.45,87248000,1.60 +2002-02-28,22.15,22.59,21.35,21.70,114234400,1.48 +2002-02-27,23.94,24.25,20.94,21.96,257539800,1.50 +2002-02-26,23.91,24.37,23.25,23.67,65032800,1.62 +2002-02-25,22.85,24.72,22.36,23.81,106712200,1.63 +2002-02-22,21.66,22.95,21.50,22.74,101619000,1.55 +2002-02-21,22.92,23.00,21.45,21.50,111687800,1.47 +2002-02-20,22.77,23.20,22.35,23.13,71360800,1.58 +2002-02-19,23.76,23.87,22.48,22.62,97564600,1.54 +2002-02-15,24.53,24.98,23.85,23.90,65046800,1.63 +2002-02-14,25.05,25.23,24.38,24.60,65042600,1.68 +2002-02-13,24.73,25.24,24.65,25.01,78218000,1.71 +2002-02-12,24.66,25.04,24.45,24.71,56070000,1.69 +2002-02-11,23.93,25.00,23.74,24.98,99650600,1.71 +2002-02-08,24.40,24.64,23.37,24.03,88832800,1.64 +2002-02-07,24.65,25.29,24.08,24.30,86958200,1.66 +2002-02-06,25.60,25.98,24.15,24.67,149394000,1.68 +2002-02-05,25.09,25.98,25.08,25.45,114221800,1.74 +2002-02-04,24.32,25.52,24.20,25.35,130593400,1.73 +2002-02-01,24.34,24.96,24.34,24.41,99576400,1.67 +2002-01-31,24.16,24.73,24.11,24.72,117111400,1.69 +2002-01-30,23.07,24.14,22.94,24.09,117894000,1.64 +2002-01-29,23.22,23.54,22.85,23.07,60081000,1.58 +2002-01-28,23.40,23.55,22.72,23.27,46611600,1.59 +2002-01-25,22.89,23.42,22.66,23.25,46478600,1.59 +2002-01-24,22.91,23.51,22.90,23.21,86000600,1.58 +2002-01-23,21.80,23.04,21.59,23.02,110819800,1.57 +2002-01-22,22.27,22.37,21.82,21.82,81828600,1.49 +2002-01-18,22.00,22.60,21.96,22.17,84702800,1.51 +2002-01-17,21.96,22.74,21.87,22.48,165144000,1.53 +2002-01-16,21.41,21.41,20.50,20.78,141723400,1.42 +2002-01-15,21.32,21.76,21.21,21.70,72580200,1.48 +2002-01-14,21.01,21.40,20.90,21.15,103999000,1.44 +2002-01-11,21.39,21.84,20.60,21.05,87200400,1.44 +2002-01-10,21.22,21.46,20.25,21.23,113184400,1.45 +2002-01-09,22.80,22.93,21.28,21.65,81958800,1.48 +2002-01-08,22.75,23.05,22.46,22.61,112509600,1.54 +2002-01-07,23.72,24.00,22.75,22.90,111146000,1.56 +2002-01-04,23.34,23.95,22.99,23.69,102494000,1.62 +2002-01-03,23.00,23.75,22.77,23.58,153001800,1.61 +2002-01-02,22.05,23.30,21.96,23.30,132374200,1.59 +2001-12-31,22.51,22.66,21.83,21.90,34445600,1.50 +2001-12-28,21.97,23.00,21.96,22.43,74781000,1.53 +2001-12-27,21.58,22.25,21.58,22.07,47877200,1.51 +2001-12-26,21.35,22.30,21.14,21.49,36600200,1.47 +2001-12-24,20.90,21.45,20.90,21.36,12657400,1.46 +2001-12-21,21.01,21.54,20.80,21.00,64083600,1.43 +2001-12-20,21.40,21.47,20.62,20.67,55216000,1.41 +2001-12-19,20.58,21.68,20.47,21.62,72489200,1.48 +2001-12-18,20.89,21.33,20.22,21.01,58809800,1.43 +2001-12-17,20.40,21.00,20.19,20.62,43428000,1.41 +2001-12-14,20.73,20.83,20.09,20.39,47471200,1.39 +2001-12-13,21.49,21.55,20.50,21.00,49460600,1.43 +2001-12-12,21.87,21.92,21.25,21.49,48115200,1.47 +2001-12-11,22.67,22.85,21.65,21.78,51368800,1.49 +2001-12-10,22.29,22.99,22.23,22.54,42502600,1.54 +2001-12-07,22.46,22.71,22.00,22.54,50878800,1.54 +2001-12-06,23.48,23.50,22.14,22.78,84733600,1.56 +2001-12-05,22.36,24.03,22.17,23.76,142144800,1.62 +2001-12-04,21.05,22.56,20.72,22.40,95104800,1.53 +2001-12-03,21.06,21.28,20.60,21.05,45291400,1.44 +2001-11-30,20.47,21.44,20.25,21.30,75978000,1.45 +2001-11-29,20.60,20.70,20.19,20.42,50691200,1.39 +2001-11-28,20.85,21.21,20.41,20.53,62652800,1.40 +2001-11-27,21.20,21.52,20.50,21.00,67138400,1.43 +2001-11-26,19.94,21.55,19.88,21.37,115172400,1.46 +2001-11-23,19.71,19.95,19.57,19.84,15001000,1.35 +2001-11-21,19.61,19.80,19.26,19.68,50395800,1.34 +2001-11-20,19.82,20.20,19.50,19.53,69146000,1.33 +2001-11-19,19.00,20.05,18.96,20.00,83147400,1.37 +2001-11-16,19.27,19.29,18.40,18.97,57666000,1.30 +2001-11-15,19.45,19.90,19.23,19.45,53257400,1.33 +2001-11-14,19.59,19.90,19.15,19.61,55287400,1.34 +2001-11-13,19.08,19.39,18.71,19.37,56168000,1.32 +2001-11-12,18.66,19.17,17.96,18.75,50374800,1.28 +2001-11-09,18.60,19.25,18.55,18.71,33573400,1.28 +2001-11-08,19.63,19.89,18.57,18.71,85535800,1.28 +2001-11-07,19.46,20.13,19.33,19.59,95747400,1.34 +2001-11-06,18.96,19.62,18.53,19.57,79004800,1.34 +2001-11-05,18.84,19.25,18.61,19.07,58948400,1.30 +2001-11-02,18.52,18.86,18.16,18.57,49301000,1.27 +2001-11-01,17.65,18.78,17.25,18.59,78248800,1.27 +2001-10-31,17.73,18.40,17.44,17.56,68437600,1.20 +2001-10-30,17.38,18.00,17.06,17.60,69190800,1.20 +2001-10-29,18.57,18.67,17.60,17.63,59795400,1.20 +2001-10-26,18.86,19.25,18.62,18.67,69741000,1.27 +2001-10-25,18.44,19.25,18.16,19.19,63737800,1.31 +2001-10-24,18.06,19.09,17.75,18.95,93606800,1.29 +2001-10-23,19.12,19.42,17.87,18.14,171245200,1.24 +2001-10-22,18.21,19.07,18.09,19.02,97984600,1.30 +2001-10-19,17.94,18.40,17.88,18.30,41697600,1.25 +2001-10-18,17.29,18.23,17.29,18.00,153143200,1.23 +2001-10-17,18.34,18.41,16.96,16.99,71384600,1.16 +2001-10-16,18.09,18.20,17.77,18.01,50737400,1.23 +2001-10-15,17.95,18.38,17.95,17.99,79688000,1.23 +2001-10-12,17.31,18.08,16.86,18.01,71953000,1.23 +2001-10-11,16.92,17.74,16.85,17.74,83540800,1.21 +2001-10-10,16.10,16.85,15.95,16.82,76939800,1.15 +2001-10-09,16.05,16.20,15.63,16.00,43506400,1.09 +2001-10-08,15.57,16.35,15.50,16.20,51996000,1.11 +2001-10-05,15.40,16.15,14.99,16.14,85671600,1.10 +2001-10-04,15.35,16.25,14.99,15.88,100280600,1.08 +2001-10-03,14.95,15.36,14.83,14.98,170760800,1.02 +2001-10-02,15.43,15.83,14.88,15.05,58970800,1.03 +2001-10-01,15.49,15.99,15.23,15.54,52052000,1.06 +2001-09-28,15.71,15.91,15.39,15.51,91277200,1.06 +2001-09-27,15.25,15.75,15.20,15.51,80560200,1.06 +2001-09-26,15.81,15.89,14.93,15.15,123449200,1.03 +2001-09-25,16.14,16.22,15.35,15.54,93601200,1.06 +2001-09-24,16.11,16.84,15.95,16.45,73634400,1.12 +2001-09-21,14.80,16.25,14.68,15.73,142629200,1.07 +2001-09-20,16.29,16.95,15.50,15.68,102793600,1.07 +2001-09-19,16.50,17.10,15.60,17.02,93329600,1.16 +2001-09-18,16.90,17.72,16.17,16.28,81775400,1.11 +2001-09-17,16.00,17.07,15.73,16.99,114501800,1.16 +2001-09-10,17.00,17.50,16.92,17.37,77211400,1.19 +2001-09-07,17.50,18.10,17.20,17.28,60457600,1.18 +2001-09-06,18.40,18.93,17.65,17.72,70592200,1.21 +2001-09-05,18.24,18.95,18.12,18.55,90014400,1.27 +2001-09-04,18.50,19.08,18.18,18.25,87053400,1.25 +2001-08-31,17.73,18.60,17.65,18.55,54226200,1.27 +2001-08-30,17.74,18.18,17.28,17.83,92173200,1.22 +2001-08-29,18.44,18.83,17.83,17.83,59992800,1.22 +2001-08-28,18.90,19.14,18.40,18.40,42933800,1.26 +2001-08-27,18.60,19.30,18.16,18.92,43911000,1.29 +2001-08-24,18.00,18.62,17.65,18.57,72583000,1.27 +2001-08-23,18.20,18.34,17.58,17.81,54269600,1.22 +2001-08-22,17.94,18.25,17.61,18.21,43493800,1.24 +2001-08-21,18.14,18.14,17.70,17.92,46425400,1.22 +2001-08-20,18.14,18.23,17.81,18.12,63075600,1.24 +2001-08-17,18.00,18.45,17.99,18.07,52106600,1.23 +2001-08-16,18.27,18.75,17.97,18.65,72023000,1.27 +2001-08-15,18.76,18.94,18.20,18.44,72319800,1.26 +2001-08-14,19.20,19.36,18.67,18.73,57237600,1.28 +2001-08-13,19.10,19.33,18.76,19.09,36999200,1.30 +2001-08-10,19.04,19.32,18.59,19.02,46740400,1.30 +2001-08-09,18.96,19.15,18.72,19.05,50166200,1.30 +2001-08-08,19.26,19.70,18.54,18.90,69042400,1.29 +2001-08-07,19.33,19.67,18.98,19.25,42137200,1.31 +2001-08-06,19.04,19.66,19.00,19.13,24913000,1.31 +2001-08-03,19.89,19.90,19.00,19.50,46513600,1.33 +2001-08-02,19.65,19.87,19.26,19.82,63022400,1.35 +2001-08-01,19.01,19.78,18.95,19.06,76034000,1.30 +2001-07-31,19.27,19.42,18.51,18.79,58756600,1.28 +2001-07-30,19.12,19.36,18.51,18.93,60839800,1.29 +2001-07-27,18.75,19.25,18.50,18.96,83533800,1.29 +2001-07-26,18.48,18.80,17.85,18.59,92285200,1.27 +2001-07-25,19.12,19.30,17.97,18.47,110969600,1.26 +2001-07-24,19.39,19.92,18.73,19.09,87094000,1.30 +2001-07-23,20.09,20.50,19.51,19.54,60340000,1.33 +2001-07-20,19.70,20.06,19.49,19.98,111146000,1.36 +2001-07-19,21.23,21.42,19.75,19.96,215285000,1.36 +2001-07-18,21.78,22.78,20.42,20.79,284253200,1.42 +2001-07-17,23.98,25.22,23.01,25.10,161957600,1.71 +2001-07-16,24.88,25.10,23.91,23.96,69666800,1.64 +2001-07-13,24.13,25.01,23.84,24.85,113685600,1.70 +2001-07-12,23.30,24.81,23.30,24.36,153700400,1.66 +2001-07-11,21.03,22.55,21.00,22.54,117626600,1.54 +2001-07-10,22.95,23.07,20.84,21.14,98817600,1.44 +2001-07-09,22.09,23.00,21.68,22.70,84366800,1.55 +2001-07-06,22.76,22.96,21.72,22.03,75730200,1.50 +2001-07-05,23.60,23.77,23.01,23.19,38073000,1.58 +2001-07-03,23.51,24.18,23.50,23.84,28135800,1.63 +2001-07-02,23.64,24.23,23.14,23.90,57512000,1.63 +2001-06-29,23.66,25.10,23.20,23.25,128847600,1.59 +2001-06-28,23.05,23.91,22.94,23.54,87102400,1.61 +2001-06-27,23.83,24.00,22.50,23.34,93532600,1.59 +2001-06-26,23.34,23.77,23.01,23.75,68195400,1.62 +2001-06-25,22.50,24.00,22.45,23.99,109887400,1.64 +2001-06-22,22.48,23.00,21.76,22.26,71506400,1.52 +2001-06-21,21.55,23.00,21.10,22.49,85332800,1.54 +2001-06-20,20.00,21.85,19.98,21.67,107905000,1.48 +2001-06-19,20.85,21.40,20.01,20.19,80271800,1.38 +2001-06-18,20.41,20.85,20.00,20.33,86478000,1.39 +2001-06-15,20.10,20.75,19.35,20.44,113656200,1.40 +2001-06-14,20.04,20.45,19.77,19.88,74337200,1.36 +2001-06-13,21.42,21.73,20.06,20.47,127871800,1.40 +2001-06-12,19.77,20.69,19.76,20.31,75948600,1.39 +2001-06-11,21.05,21.07,19.95,20.04,73500000,1.37 +2001-06-08,21.65,21.65,20.71,21.32,85656200,1.46 +2001-06-07,20.71,21.70,20.45,21.66,81295200,1.48 +2001-06-06,20.93,20.93,20.33,20.73,55794200,1.42 +2001-06-05,20.80,21.10,20.35,20.94,117948600,1.43 +2001-06-04,21.08,21.11,20.46,20.66,70480200,1.41 +2001-06-01,20.13,21.09,19.98,20.89,114018800,1.43 +2001-05-31,19.80,20.24,19.49,19.95,110723200,1.36 +2001-05-30,20.76,20.76,19.30,19.78,194269600,1.35 +2001-05-29,22.32,22.50,20.81,21.47,128997400,1.47 +2001-05-25,23.20,23.29,22.50,22.76,39685800,1.55 +2001-05-24,23.29,23.30,22.62,23.20,67939200,1.58 +2001-05-23,23.75,23.75,22.86,23.23,70260400,1.59 +2001-05-22,24.00,24.13,23.40,23.50,103229000,1.60 +2001-05-21,23.63,23.91,23.05,23.56,115249400,1.61 +2001-05-18,23.36,23.64,23.12,23.53,39762800,1.61 +2001-05-17,24.23,24.33,23.25,23.55,83029800,1.61 +2001-05-16,23.26,24.50,22.85,24.10,80582600,1.65 +2001-05-15,23.37,25.50,23.04,23.18,59256400,1.58 +2001-05-14,22.89,23.68,22.75,23.29,77305200,1.59 +2001-05-11,23.01,23.49,22.76,22.85,50761200,1.56 +2001-05-10,24.21,24.50,22.95,23.00,72244200,1.57 +2001-05-09,24.14,24.55,23.67,23.98,81222400,1.64 +2001-05-08,25.35,25.45,23.95,24.57,78859200,1.68 +2001-05-07,25.62,25.76,24.84,24.96,69137600,1.70 +2001-05-04,24.24,25.85,23.96,25.75,70263200,1.76 +2001-05-03,25.97,26.25,24.73,24.96,75385800,1.70 +2001-05-02,26.34,26.70,25.76,26.59,92131200,1.82 +2001-05-01,25.41,26.50,25.20,25.93,106813000,1.77 +2001-04-30,26.70,27.12,24.87,25.49,123694200,1.74 +2001-04-27,25.20,26.29,24.75,26.20,113253000,1.79 +2001-04-26,25.17,26.10,24.68,24.69,199924200,1.69 +2001-04-25,24.21,24.86,23.57,24.72,82695200,1.69 +2001-04-24,24.33,24.75,23.51,24.03,94284400,1.64 +2001-04-23,24.34,25.00,24.00,24.25,135381400,1.66 +2001-04-20,24.93,25.63,24.60,25.04,173350800,1.71 +2001-04-19,25.55,25.75,23.60,25.72,468417600,1.76 +2001-04-18,21.57,24.08,21.08,22.79,275210600,1.56 +2001-04-17,21.20,21.21,19.60,20.40,171299800,1.39 +2001-04-16,22.09,22.40,20.86,21.44,71306200,1.46 +2001-04-12,21.42,23.02,21.15,22.42,74733400,1.53 +2001-04-11,22.98,23.00,21.28,21.80,83524000,1.49 +2001-04-10,20.90,22.70,20.78,22.04,114343600,1.50 +2001-04-09,20.69,21.34,20.06,20.54,66645600,1.40 +2001-04-06,20.80,21.04,19.90,20.59,81222400,1.41 +2001-04-05,20.60,22.50,20.00,20.87,111690600,1.42 +2001-04-04,19.76,20.25,18.75,19.50,171371200,1.33 +2001-04-03,21.36,21.40,20.13,20.24,92171800,1.38 +2001-04-02,22.09,22.66,21.40,21.59,85227800,1.47 +2001-03-30,22.55,22.72,21.34,22.07,100087400,1.51 +2001-03-29,21.77,23.45,21.50,22.53,153266400,1.54 +2001-03-28,22.08,22.50,21.50,22.17,146165600,1.51 +2001-03-27,21.94,23.05,21.90,22.87,135955400,1.56 +2001-03-26,23.13,23.75,21.13,21.78,183612800,1.49 +2001-03-23,22.06,23.56,22.00,23.00,236222000,1.57 +2001-03-22,20.38,21.75,20.19,21.62,180825400,1.48 +2001-03-21,19.78,20.87,19.38,20.12,92843800,1.37 +2001-03-20,20.72,20.94,19.69,19.69,124801600,1.34 +2001-03-19,19.75,20.62,19.50,20.56,89002200,1.40 +2001-03-16,19.00,20.31,18.87,19.63,117579000,1.34 +2001-03-15,20.87,21.38,19.69,19.69,132329400,1.34 +2001-03-14,18.50,20.50,18.44,20.44,119443800,1.40 +2001-03-13,18.87,19.56,18.19,19.56,110832400,1.34 +2001-03-12,19.69,19.87,18.12,18.63,97755000,1.27 +2001-03-09,20.62,20.69,20.00,20.25,74783800,1.38 +2001-03-08,20.69,21.13,20.44,20.81,51214800,1.42 +2001-03-07,21.31,21.62,20.75,21.25,104885200,1.45 +2001-03-06,20.72,22.06,20.69,21.50,182950600,1.47 +2001-03-05,19.38,20.50,19.25,20.38,81043200,1.39 +2001-03-02,18.31,20.44,18.25,19.25,101550400,1.31 +2001-03-01,17.81,18.75,17.19,18.75,82615400,1.28 +2001-02-28,19.38,19.44,18.12,18.25,127058400,1.25 +2001-02-27,19.28,19.44,18.69,19.38,87129000,1.32 +2001-02-26,19.06,19.69,18.56,19.50,51609600,1.33 +2001-02-23,18.63,18.87,18.25,18.81,73466400,1.28 +2001-02-22,19.06,19.38,18.00,18.81,107990400,1.28 +2001-02-21,18.25,19.94,18.25,18.87,97564600,1.29 +2001-02-20,19.19,19.44,18.19,18.31,78723400,1.25 +2001-02-16,19.00,19.50,18.75,19.00,65977800,1.30 +2001-02-15,19.69,20.56,19.69,20.06,77854000,1.37 +2001-02-14,19.19,19.63,18.50,19.50,77280000,1.33 +2001-02-13,19.94,20.44,19.00,19.12,59267600,1.31 +2001-02-12,19.06,20.00,18.81,19.69,68530000,1.34 +2001-02-09,20.50,20.81,18.69,19.12,147520800,1.31 +2001-02-08,20.56,21.06,20.19,20.75,151032000,1.42 +2001-02-07,20.66,20.87,19.81,20.75,98471800,1.42 +2001-02-06,20.16,21.39,20.00,21.13,115677800,1.44 +2001-02-05,20.50,20.56,19.75,20.19,71528800,1.38 +2001-02-02,21.13,21.94,20.50,20.62,106835400,1.41 +2001-02-01,20.69,21.50,20.50,21.13,92423800,1.44 +2001-01-31,21.50,22.50,21.44,21.62,182676200,1.48 +2001-01-30,21.56,22.00,20.87,21.75,173105800,1.48 +2001-01-29,19.56,21.75,19.56,21.69,213882200,1.48 +2001-01-26,19.50,19.81,19.06,19.56,120705200,1.34 +2001-01-25,20.56,20.56,19.75,19.94,122427200,1.36 +2001-01-24,20.62,20.69,19.56,20.50,179272800,1.40 +2001-01-23,19.31,20.94,19.06,20.50,219882600,1.40 +2001-01-22,19.06,19.63,18.44,19.25,129831800,1.31 +2001-01-19,19.44,19.56,18.69,19.50,194166000,1.33 +2001-01-18,17.81,18.75,17.63,18.69,306752600,1.28 +2001-01-17,17.56,17.56,16.50,16.81,210218400,1.15 +2001-01-16,17.44,18.25,17.00,17.12,76529600,1.17 +2001-01-12,17.88,18.00,17.06,17.19,105844200,1.17 +2001-01-11,16.25,18.50,16.25,18.00,200933600,1.23 +2001-01-10,16.69,17.00,16.06,16.56,145195400,1.13 +2001-01-09,16.81,17.64,16.56,17.19,147232400,1.17 +2001-01-08,16.94,16.98,15.94,16.56,93424800,1.13 +2001-01-05,16.94,17.37,16.06,16.37,103089000,1.12 +2001-01-04,18.14,18.50,16.81,17.06,184849000,1.16 +2001-01-03,14.50,16.69,14.44,16.37,204268400,1.12 +2001-01-02,14.88,15.25,14.56,14.88,113078000,1.02 +2000-12-29,14.69,15.00,14.50,14.88,157584000,1.02 +2000-12-28,14.38,14.94,14.31,14.81,76294400,1.01 +2000-12-27,14.34,14.81,14.19,14.81,81366600,1.01 +2000-12-26,14.88,15.00,14.25,14.69,54203800,1.00 +2000-12-22,14.13,15.00,14.13,15.00,79513000,1.02 +2000-12-21,14.25,15.00,13.87,14.06,91711200,0.96 +2000-12-20,13.78,14.62,13.62,14.38,141332800,0.98 +2000-12-19,14.38,15.25,14.00,14.00,93501800,0.96 +2000-12-18,14.56,14.62,13.94,14.25,81452000,0.97 +2000-12-15,14.56,14.69,14.00,14.06,128486400,0.96 +2000-12-14,15.03,15.25,14.44,14.44,65829400,0.99 +2000-12-13,15.56,15.56,14.88,15.00,86221800,1.02 +2000-12-12,15.25,16.00,15.00,15.37,96565000,1.05 +2000-12-11,15.19,15.37,14.88,15.19,83127800,1.04 +2000-12-08,14.81,15.31,14.44,15.06,108906000,1.03 +2000-12-07,14.44,14.88,14.00,14.31,102229400,0.98 +2000-12-06,14.62,15.00,14.00,14.31,343616000,0.98 +2000-12-05,16.94,17.44,16.37,17.00,153494600,1.16 +2000-12-04,17.19,17.19,16.44,16.69,92880200,1.14 +2000-12-01,17.00,17.50,16.81,17.06,96426400,1.16 +2000-11-30,16.69,17.00,16.13,16.50,202399400,1.13 +2000-11-29,18.09,18.31,17.25,17.56,123037600,1.20 +2000-11-28,18.69,19.00,17.94,18.03,67281200,1.23 +2000-11-27,19.87,19.94,18.50,18.69,64698200,1.28 +2000-11-24,18.86,19.50,18.81,19.31,40233200,1.32 +2000-11-22,18.81,19.12,18.38,18.50,70133000,1.26 +2000-11-21,19.19,19.50,18.75,18.81,75488000,1.28 +2000-11-20,18.59,19.50,18.25,18.94,102016600,1.29 +2000-11-17,19.19,19.25,18.25,18.50,111545000,1.26 +2000-11-16,19.50,19.81,18.87,19.00,59843000,1.30 +2000-11-15,20.03,20.19,19.25,19.87,70589400,1.36 +2000-11-14,19.94,20.50,19.56,20.25,102250400,1.38 +2000-11-13,18.75,20.00,18.25,19.38,107954000,1.32 +2000-11-10,19.36,19.87,19.06,19.06,105562800,1.30 +2000-11-09,19.87,20.50,19.06,20.19,119208600,1.38 +2000-11-08,21.38,21.44,19.81,20.06,105522200,1.37 +2000-11-07,21.50,21.81,20.81,21.31,75490800,1.46 +2000-11-06,22.44,22.62,20.87,21.44,98369600,1.46 +2000-11-03,23.00,23.00,21.94,22.25,128955400,1.52 +2000-11-02,21.13,22.44,21.06,22.31,147673400,1.52 +2000-11-01,19.44,20.87,19.44,20.50,143841600,1.40 +2000-10-31,19.75,20.25,19.25,19.56,221470200,1.34 +2000-10-30,19.12,19.94,18.75,19.31,159797400,1.32 +2000-10-27,18.87,19.19,17.88,18.56,186125800,1.27 +2000-10-26,18.81,18.87,17.50,18.50,180462800,1.26 +2000-10-25,19.06,19.19,18.44,18.50,165992400,1.26 +2000-10-24,20.69,20.87,18.81,18.87,201112800,1.29 +2000-10-23,20.27,20.56,19.44,20.38,137823000,1.39 +2000-10-20,19.06,20.38,18.94,19.50,197815800,1.33 +2000-10-19,19.16,19.81,18.31,18.94,376681200,1.29 +2000-10-18,19.44,21.06,18.75,20.12,208566400,1.37 +2000-10-17,21.69,21.94,19.69,20.12,150430000,1.37 +2000-10-16,22.31,23.25,21.38,21.50,205044000,1.47 +2000-10-13,20.25,22.13,20.00,22.06,311938200,1.51 +2000-10-12,20.31,20.81,19.50,20.00,297766000,1.37 +2000-10-11,20.12,21.00,19.12,19.63,299605600,1.34 +2000-10-10,21.62,22.44,20.50,20.87,172775400,1.43 +2000-10-09,22.62,22.88,21.13,21.75,149391200,1.48 +2000-10-06,22.69,22.94,21.00,22.19,153164200,1.51 +2000-10-05,23.50,24.50,22.00,22.06,218251600,1.51 +2000-10-04,22.37,23.75,21.88,23.62,366506000,1.61 +2000-10-03,24.94,25.00,22.19,22.31,509530000,1.52 +2000-10-02,26.69,26.75,23.50,24.25,606197200,1.66 +2000-09-29,28.19,29.00,25.38,25.75,1855410200,1.76 +2000-09-28,49.31,53.81,48.12,53.50,244896400,3.65 +2000-09-27,51.75,52.75,48.25,48.94,100564800,3.34 +2000-09-26,53.31,54.75,51.37,51.44,72734200,3.51 +2000-09-25,52.75,55.50,52.06,53.50,108887800,3.65 +2000-09-22,50.31,52.44,50.00,52.19,181675200,3.56 +2000-09-21,58.50,59.63,55.25,56.69,127622600,3.87 +2000-09-20,59.41,61.44,58.56,61.05,56847000,4.17 +2000-09-19,59.75,60.50,58.56,59.94,67877600,4.09 +2000-09-18,55.25,60.75,55.06,60.66,106134000,4.14 +2000-09-15,57.75,58.19,54.25,55.23,98628600,3.77 +2000-09-14,58.56,59.63,56.81,56.86,106638000,3.88 +2000-09-13,56.75,59.50,56.75,58.00,76496000,3.96 +2000-09-12,57.34,60.06,57.00,57.75,46999400,3.94 +2000-09-11,58.69,60.38,58.13,58.44,46845400,3.99 +2000-09-08,61.63,61.63,58.50,58.88,48879600,4.02 +2000-09-07,59.12,62.56,58.25,62.00,54366200,4.23 +2000-09-06,61.38,62.38,57.75,58.44,88851000,3.99 +2000-09-05,62.66,64.13,62.25,62.44,74660600,4.26 +2000-09-01,61.31,63.62,61.12,63.44,64218000,4.33 +2000-08-31,58.97,61.50,58.94,60.94,104899200,4.16 +2000-08-30,59.00,60.00,58.70,59.50,71348200,4.06 +2000-08-29,57.88,59.44,57.69,59.19,66757600,4.04 +2000-08-28,57.25,59.00,57.06,58.06,89751200,3.96 +2000-08-25,56.50,57.50,56.38,56.81,83615000,3.88 +2000-08-24,54.67,56.62,53.38,56.11,77691600,3.83 +2000-08-23,51.47,54.75,51.06,54.31,59215800,3.71 +2000-08-22,50.62,52.81,50.37,51.69,69200600,3.53 +2000-08-21,50.25,51.56,49.62,50.50,33616800,3.45 +2000-08-18,51.37,51.81,49.88,50.00,47544000,3.41 +2000-08-17,48.38,52.44,48.31,51.44,67725000,3.51 +2000-08-16,46.87,49.00,46.81,48.50,35918400,3.31 +2000-08-15,47.25,47.94,46.50,46.69,28550200,3.19 +2000-08-14,47.59,47.69,46.31,47.06,39165000,3.21 +2000-08-11,46.84,48.00,45.56,47.69,59514000,3.26 +2000-08-10,48.00,48.44,47.38,47.56,62928600,3.25 +2000-08-09,48.12,48.44,47.25,47.50,94910200,3.24 +2000-08-08,47.94,48.00,46.31,46.75,44168600,3.19 +2000-08-07,47.87,49.06,47.19,47.94,46837000,3.27 +2000-08-04,49.47,51.25,46.31,47.38,65780400,3.23 +2000-08-03,45.56,48.06,44.25,48.00,84974400,3.28 +2000-08-02,49.00,49.94,47.19,47.25,40588800,3.23 +2000-08-01,50.31,51.16,49.25,49.31,34321000,3.37 +2000-07-31,49.16,51.62,48.75,50.81,38824800,3.47 +2000-07-28,52.28,52.50,46.87,48.31,59473400,3.30 +2000-07-27,50.00,53.25,49.88,52.00,73746400,3.55 +2000-07-26,49.84,51.25,49.25,50.06,52617600,3.42 +2000-07-25,50.31,50.62,49.06,50.06,52901800,3.42 +2000-07-24,52.56,52.88,47.50,48.69,103042800,3.32 +2000-07-21,54.36,55.62,52.94,53.56,49058800,3.66 +2000-07-20,55.00,57.06,54.12,55.12,116393200,3.76 +2000-07-19,55.19,56.81,51.75,52.69,114468200,3.60 +2000-07-18,58.50,58.88,56.88,57.25,79601200,3.91 +2000-07-17,58.25,58.81,57.13,58.31,65000600,3.98 +2000-07-14,57.13,59.00,56.88,57.69,47569200,3.94 +2000-07-13,58.50,60.63,54.75,56.50,111414800,3.86 +2000-07-12,58.13,58.94,56.38,58.88,56358400,4.02 +2000-07-11,57.00,59.25,55.44,56.94,89474000,3.89 +2000-07-10,54.09,58.25,53.75,57.13,99449000,3.90 +2000-07-07,52.59,54.81,52.12,54.44,65900800,3.72 +2000-07-06,52.50,52.94,49.62,51.81,77386400,3.54 +2000-07-05,53.25,55.19,50.75,51.62,66304000,3.52 +2000-07-03,52.12,54.31,52.12,53.31,17707200,3.64 +2000-06-30,52.81,54.94,51.69,52.37,80774400,3.58 +2000-06-29,53.06,53.94,51.06,51.25,50915200,3.50 +2000-06-28,53.31,55.38,51.50,54.44,71607200,3.72 +2000-06-27,53.78,55.50,51.62,51.75,50867600,3.53 +2000-06-26,52.50,54.75,52.12,54.12,46338600,3.70 +2000-06-23,53.78,54.63,50.81,51.69,51241400,3.53 +2000-06-22,55.75,57.62,53.56,53.75,116928000,3.67 +2000-06-21,50.50,56.94,50.31,55.62,122500000,3.80 +2000-06-20,98.50,103.94,98.37,101.25,125347600,3.46 +2000-06-19,90.56,97.88,89.81,96.62,98501200,3.30 +2000-06-16,93.50,93.75,89.06,91.19,75891200,3.11 +2000-06-15,91.25,93.37,89.00,92.38,62143200,3.15 +2000-06-14,94.69,96.25,90.12,90.44,69361600,3.09 +2000-06-13,91.19,94.69,88.19,94.50,87864000,3.23 +2000-06-12,96.37,96.44,90.88,91.19,72584400,3.11 +2000-06-09,96.75,97.94,94.38,95.75,63089600,3.27 +2000-06-08,97.63,98.50,93.12,94.81,59631600,3.24 +2000-06-07,93.62,97.00,91.62,96.56,84254800,3.30 +2000-06-06,91.97,96.75,90.31,92.87,131370400,3.17 +2000-06-05,93.31,95.25,89.69,91.31,80917200,3.12 +2000-06-02,93.75,99.75,89.00,92.56,198212000,3.16 +2000-06-01,81.75,89.56,80.38,89.13,225960000,3.04 +2000-05-31,86.88,91.25,83.81,84.00,108376800,2.87 +2000-05-30,87.62,88.12,81.75,87.56,178264800,2.99 +2000-05-26,88.00,89.87,85.25,86.37,45287200,2.95 +2000-05-25,88.50,92.66,86.00,87.27,101687600,2.98 +2000-05-24,86.19,89.75,83.00,87.69,169615600,2.99 +2000-05-23,90.50,93.37,85.63,85.81,129396400,2.93 +2000-05-22,93.75,93.75,86.00,89.94,188876800,3.07 +2000-05-19,99.25,99.25,93.37,94.00,185166800,3.21 +2000-05-18,103.00,104.94,100.62,100.75,93444400,3.44 +2000-05-17,103.62,103.69,100.37,101.38,99523200,3.46 +2000-05-16,104.52,109.06,102.75,105.69,110112800,3.61 +2000-05-15,108.06,108.06,100.12,101.00,169733200,3.45 +2000-05-12,106.00,110.50,104.77,107.62,76728400,3.67 +2000-05-11,101.38,104.25,99.00,102.81,124936000,3.51 +2000-05-10,104.06,105.00,98.75,99.31,133772800,3.39 +2000-05-09,110.31,111.25,104.88,105.44,81785200,3.60 +2000-05-08,112.09,113.69,110.00,110.13,46225200,3.76 +2000-05-05,110.81,114.75,110.72,113.13,71019200,3.86 +2000-05-04,115.13,115.25,110.56,110.69,99878800,3.78 +2000-05-03,118.94,121.25,111.63,115.06,122449600,3.93 +2000-05-02,123.25,126.25,117.50,117.87,59108000,4.02 +2000-05-01,124.87,125.12,121.88,124.31,56548800,4.24 +2000-04-28,127.13,127.50,121.31,124.06,62395200,4.24 +2000-04-27,117.19,127.00,116.58,126.75,81650800,4.33 +2000-04-26,126.62,128.00,120.00,121.31,91728000,4.14 +2000-04-25,122.13,128.75,122.06,128.31,97910400,4.38 +2000-04-24,115.00,120.50,114.75,120.50,110905200,4.11 +2000-04-20,123.69,124.75,117.06,118.88,180530000,4.06 +2000-04-19,126.19,130.25,119.75,121.12,130037600,4.13 +2000-04-18,123.50,126.88,119.37,126.88,97731200,4.33 +2000-04-17,109.50,123.94,109.06,123.88,102390400,4.23 +2000-04-14,109.31,118.00,109.00,111.88,166905200,3.82 +2000-04-13,111.50,120.00,108.50,113.81,132456800,3.89 +2000-04-12,119.00,119.00,104.88,109.25,235284000,3.73 +2000-04-11,123.50,124.87,118.06,119.44,135455600,4.08 +2000-04-10,131.69,132.75,124.75,125.00,53065600,4.27 +2000-04-07,127.25,131.87,125.50,131.75,60608800,4.50 +2000-04-06,130.63,134.50,123.25,125.19,64906800,4.27 +2000-04-05,126.47,132.88,124.00,130.38,114416400,4.45 +2000-04-04,132.63,133.00,116.75,127.31,165082400,4.35 +2000-04-03,135.50,139.50,129.44,133.31,82140800,4.55 +2000-03-31,127.44,137.25,126.00,135.81,101158400,4.64 +2000-03-30,133.56,137.69,125.44,125.75,103600000,4.29 +2000-03-29,139.38,139.44,133.83,135.94,59959200,4.64 +2000-03-28,137.25,142.00,137.12,139.12,50741600,4.75 +2000-03-27,137.63,144.75,136.87,139.56,69795600,4.76 +2000-03-24,142.44,143.94,135.50,138.69,111728400,4.73 +2000-03-23,142.00,150.38,140.00,141.31,140641200,4.82 +2000-03-22,132.78,144.38,131.56,144.19,141999200,4.92 +2000-03-21,122.56,136.75,121.62,134.94,131082000,4.61 +2000-03-20,123.50,126.25,122.38,123.00,51122400,4.20 +2000-03-17,120.13,125.00,119.62,125.00,76260800,4.27 +2000-03-16,117.31,122.00,114.50,121.56,94525200,4.15 +2000-03-15,115.62,120.25,114.12,116.25,110902400,3.97 +2000-03-14,121.22,124.25,114.00,114.25,107144800,3.90 +2000-03-13,122.13,126.50,119.50,121.31,75989200,4.14 +2000-03-10,121.69,127.94,121.00,125.75,62151600,4.29 +2000-03-09,120.87,125.00,118.25,122.25,69179600,4.17 +2000-03-08,122.87,123.94,118.56,122.00,67807600,4.16 +2000-03-07,126.44,127.44,121.12,122.87,68252800,4.19 +2000-03-06,126.00,129.13,125.00,125.69,52640000,4.29 +2000-03-03,124.87,128.23,120.00,128.00,80841600,4.37 +2000-03-02,127.00,127.94,120.69,122.00,77814800,4.16 +2000-03-01,118.56,132.06,118.50,130.31,269250800,4.45 +2000-02-29,113.56,117.25,112.56,114.62,92240400,3.91 +2000-02-28,110.13,115.00,108.38,113.25,82082000,3.87 +2000-02-25,114.81,117.00,110.13,110.37,62286000,3.77 +2000-02-24,117.31,119.12,111.75,115.20,94108000,3.93 +2000-02-23,113.23,119.00,111.00,116.25,118274800,3.97 +2000-02-22,110.13,116.94,106.69,113.81,105574000,3.89 +2000-02-18,114.62,115.38,110.87,111.25,58360400,3.80 +2000-02-17,115.19,115.50,113.13,114.88,72374400,3.92 +2000-02-16,117.75,118.12,112.12,114.12,94561600,3.90 +2000-02-15,115.25,119.94,115.19,119.00,121436000,4.06 +2000-02-14,109.31,115.87,108.62,115.81,91884800,3.95 +2000-02-11,113.63,114.12,108.25,108.75,53062800,3.71 +2000-02-10,112.88,113.87,110.00,113.50,75745600,3.87 +2000-02-09,114.12,117.13,112.44,112.62,74841200,3.84 +2000-02-08,114.00,116.12,111.25,114.88,102160800,3.92 +2000-02-07,108.00,114.25,105.94,114.06,110266800,3.89 +2000-02-04,103.94,110.00,103.62,108.00,106330000,3.69 +2000-02-03,100.31,104.25,100.25,103.31,118798400,3.53 +2000-02-02,100.75,102.12,97.00,98.81,116048800,3.37 +2000-02-01,104.00,105.00,100.00,100.25,79508800,3.42 +2000-01-31,101.00,103.87,94.50,103.75,175420000,3.54 +2000-01-28,108.19,110.87,100.62,101.62,105837200,3.47 +2000-01-27,108.81,113.00,107.00,110.00,85036000,3.75 +2000-01-26,110.00,114.19,109.75,110.19,91789600,3.76 +2000-01-25,105.00,113.13,102.38,112.25,124286400,3.83 +2000-01-24,108.44,112.75,105.12,106.25,110219200,3.63 +2000-01-21,114.25,114.25,110.19,111.31,123981200,3.80 +2000-01-20,115.50,121.50,113.50,113.50,457783200,3.87 +2000-01-19,105.62,108.75,103.37,106.56,149410800,3.64 +2000-01-18,101.00,106.00,100.44,103.94,114794400,3.55 +2000-01-14,100.00,102.25,99.38,100.44,97594000,3.43 +2000-01-13,94.48,98.75,92.50,96.75,258171200,3.30 +2000-01-12,95.00,95.50,86.50,87.19,244017200,2.98 +2000-01-11,95.94,99.38,90.50,92.75,110387200,3.17 +2000-01-10,102.00,102.25,94.75,97.75,126266000,3.34 +2000-01-07,96.50,101.00,95.50,99.50,115183600,3.40 +2000-01-06,106.13,107.00,95.00,95.00,191993200,3.24 +2000-01-05,103.75,110.56,103.00,104.00,194580400,3.55 +2000-01-04,108.25,110.62,101.19,102.50,128094400,3.50 +2000-01-03,104.88,112.50,101.69,111.94,133949200,3.82 +1999-12-31,100.94,102.88,99.50,102.81,40952800,3.51 +1999-12-30,102.19,104.12,99.63,100.31,51786000,3.42 +1999-12-29,96.81,102.19,95.50,100.69,71125600,3.44 +1999-12-28,99.13,99.63,95.00,98.19,61894000,3.35 +1999-12-27,104.38,104.44,99.25,99.31,42098000,3.39 +1999-12-23,101.81,104.25,101.06,103.50,57383200,3.53 +1999-12-22,102.88,104.56,98.75,99.94,81768400,3.41 +1999-12-21,98.19,103.06,97.94,102.50,76899200,3.50 +1999-12-20,99.56,99.63,96.62,98.00,70996800,3.35 +1999-12-17,100.88,102.00,98.50,100.00,123751600,3.41 +1999-12-16,98.00,98.37,94.00,98.31,115956400,3.36 +1999-12-15,93.25,97.25,91.06,97.00,155744400,3.31 +1999-12-14,98.37,99.75,94.75,94.87,108967600,3.24 +1999-12-13,102.39,102.50,98.94,99.00,132490400,3.38 +1999-12-10,105.31,109.25,99.00,103.00,159440400,3.52 +1999-12-09,111.00,111.00,100.88,105.25,213799600,3.59 +1999-12-08,116.25,117.87,109.50,110.06,103087600,3.76 +1999-12-07,116.56,118.00,114.00,117.81,111255200,4.02 +1999-12-06,114.56,117.31,111.44,116.00,116695600,3.96 +1999-12-03,112.19,115.56,111.88,115.00,161980000,3.93 +1999-12-02,103.13,110.62,101.75,110.19,141839600,3.76 +1999-12-01,101.00,104.50,100.06,103.06,154641200,3.52 +1999-11-30,98.12,103.75,97.38,97.88,210795200,3.34 +1999-11-29,94.25,99.75,93.25,94.56,116040400,3.23 +1999-11-26,94.75,95.50,94.13,95.06,33017600,3.25 +1999-11-24,93.00,95.00,91.69,94.69,53776800,3.23 +1999-11-23,91.75,95.25,88.50,92.81,135828000,3.17 +1999-11-22,91.75,91.75,89.25,90.63,50590400,3.09 +1999-11-19,89.50,92.87,88.06,92.44,78128400,3.16 +1999-11-18,91.06,91.12,88.44,89.62,91196000,3.06 +1999-11-17,90.69,94.75,90.00,90.25,91142800,3.08 +1999-11-16,90.00,91.75,88.50,91.19,58464000,3.11 +1999-11-15,89.62,92.87,88.50,89.44,64976800,3.05 +1999-11-12,91.94,92.00,87.38,90.63,69764800,3.09 +1999-11-11,91.59,92.63,89.87,92.25,67468800,3.15 +1999-11-10,88.25,93.25,88.12,91.44,144474400,3.12 +1999-11-09,94.38,94.50,88.00,89.62,202294400,3.06 +1999-11-08,87.75,97.73,86.75,96.37,237731200,3.29 +1999-11-05,84.62,88.38,84.00,88.31,104202000,3.01 +1999-11-04,82.06,85.38,80.62,83.63,94771600,2.85 +1999-11-03,81.63,83.25,81.00,81.50,82115600,2.78 +1999-11-02,78.00,81.69,77.31,80.25,99808800,2.74 +1999-11-01,80.00,80.69,77.37,77.62,69644400,2.65 +1999-10-29,78.81,81.06,78.81,80.13,130762800,2.74 +1999-10-28,77.06,79.00,76.06,77.88,126022400,2.66 +1999-10-27,74.38,76.63,73.44,76.38,110768000,2.61 +1999-10-26,74.94,75.50,73.31,75.06,90358800,2.56 +1999-10-25,74.25,76.12,73.75,74.50,81648000,2.54 +1999-10-22,77.12,77.25,73.38,73.94,104876800,2.52 +1999-10-21,72.56,77.06,72.37,76.12,198363200,2.60 +1999-10-20,70.00,75.25,70.00,75.13,270351200,2.56 +1999-10-19,71.63,75.00,68.44,68.50,255645600,2.34 +1999-10-18,73.87,74.25,71.13,73.25,194101600,2.50 +1999-10-15,71.13,75.81,70.19,74.56,293294400,2.55 +1999-10-14,69.25,73.31,69.00,73.19,474700800,2.50 +1999-10-13,66.62,69.50,63.75,64.03,159182800,2.19 +1999-10-12,67.88,69.63,67.00,67.69,140938000,2.31 +1999-10-11,66.00,68.25,66.00,66.69,65780400,2.28 +1999-10-08,66.19,66.31,63.50,65.56,95701200,2.24 +1999-10-07,68.44,68.62,64.87,66.38,151471600,2.27 +1999-10-06,69.38,69.63,67.00,67.19,201068000,2.29 +1999-10-05,65.62,68.13,64.75,67.94,203551600,2.32 +1999-10-04,62.38,64.87,62.38,64.56,114839200,2.20 +1999-10-01,62.12,62.44,59.50,61.72,153697600,2.11 +1999-09-30,59.56,64.19,59.25,63.31,227021200,2.16 +1999-09-29,60.25,61.25,58.00,59.06,164320800,2.02 +1999-09-28,61.50,62.00,57.44,59.62,353740800,2.04 +1999-09-27,66.38,66.75,61.19,61.31,237048000,2.09 +1999-09-24,63.37,67.02,63.00,64.94,294968800,2.22 +1999-09-23,71.13,71.25,63.00,63.31,285938800,2.16 +1999-09-22,69.75,71.63,69.02,70.31,280792400,2.40 +1999-09-21,73.19,73.25,69.00,69.25,839389600,2.36 +1999-09-20,77.00,80.13,76.88,79.06,114167200,2.70 +1999-09-17,77.31,77.75,76.25,76.94,69319600,2.63 +1999-09-16,76.06,78.06,73.87,76.81,110471200,2.62 +1999-09-15,78.87,79.12,75.25,75.37,89894000,2.57 +1999-09-14,74.72,78.50,74.69,77.81,97073200,2.66 +1999-09-13,77.06,77.06,74.81,75.00,63000000,2.56 +1999-09-10,76.00,77.69,74.69,77.44,114690800,2.64 +1999-09-09,75.50,75.94,73.87,75.56,133520800,2.58 +1999-09-08,76.19,77.69,74.50,74.50,190551200,2.54 +1999-09-07,73.75,77.94,73.50,76.38,246198400,2.61 +1999-09-03,71.94,75.25,70.50,73.50,408816800,2.51 +1999-09-02,67.63,71.44,66.87,70.56,223787200,2.41 +1999-09-01,67.00,68.81,66.00,68.62,197156400,2.34 +1999-08-31,62.59,65.88,62.06,65.25,158636800,2.23 +1999-08-30,65.00,65.00,62.00,62.06,84148400,2.12 +1999-08-27,62.75,65.00,62.69,64.75,111708800,2.21 +1999-08-26,61.13,63.12,61.13,62.12,101122000,2.12 +1999-08-25,60.69,61.50,60.12,61.37,73791200,2.10 +1999-08-24,60.38,60.75,59.94,60.38,125566000,2.06 +1999-08-23,59.38,61.37,59.31,60.75,88891600,2.07 +1999-08-20,59.25,59.38,58.19,59.19,81986800,2.02 +1999-08-19,59.81,60.50,58.56,58.75,137505200,2.01 +1999-08-18,60.06,62.00,59.62,60.12,117143600,2.05 +1999-08-17,60.31,60.38,58.94,60.31,80234000,2.06 +1999-08-16,59.81,60.69,59.50,60.50,69232800,2.07 +1999-08-13,60.63,62.00,59.87,60.06,74608800,2.05 +1999-08-12,59.06,61.37,58.62,60.00,166527200,2.05 +1999-08-11,56.00,59.75,55.94,59.69,212584400,2.04 +1999-08-10,54.00,56.00,53.63,55.38,104056400,1.89 +1999-08-09,54.34,55.19,54.25,54.44,58321200,1.86 +1999-08-06,54.06,55.31,53.50,54.13,108889200,1.85 +1999-08-05,53.50,54.87,52.13,54.75,80634400,1.87 +1999-08-04,55.19,55.88,53.25,53.81,92856400,1.84 +1999-08-03,56.75,57.44,53.63,55.25,92094800,1.89 +1999-08-02,55.63,58.00,55.50,55.75,90610800,1.90 +1999-07-30,54.50,56.12,54.50,55.69,95785200,1.90 +1999-07-29,53.38,55.25,53.12,53.88,68868800,1.84 +1999-07-28,53.88,55.38,53.00,54.37,82227600,1.86 +1999-07-27,52.62,53.94,52.50,53.69,98977200,1.83 +1999-07-26,52.87,53.00,50.87,50.94,87796800,1.74 +1999-07-23,52.81,53.75,52.69,53.31,57262800,1.82 +1999-07-22,53.63,53.88,51.12,52.38,101682000,1.79 +1999-07-21,54.06,55.44,52.87,54.06,179541600,1.85 +1999-07-20,54.56,55.50,52.75,52.87,110518800,1.80 +1999-07-19,53.94,55.81,52.31,54.44,140324800,1.86 +1999-07-16,53.63,54.50,53.00,53.06,102874800,1.81 +1999-07-15,55.88,55.94,51.31,53.25,422951200,1.82 +1999-07-14,54.50,56.62,54.50,55.94,156139200,1.91 +1999-07-13,53.50,54.19,52.87,53.69,70814800,1.83 +1999-07-12,55.50,55.63,54.19,54.50,75978000,1.86 +1999-07-09,54.50,55.63,53.00,55.63,152174400,1.90 +1999-07-08,51.12,55.06,50.87,54.50,406260400,1.86 +1999-07-07,47.37,50.75,47.00,49.88,274789200,1.70 +1999-07-06,45.94,47.62,45.81,47.37,113453200,1.62 +1999-07-02,45.53,46.88,45.19,46.31,30920400,1.58 +1999-07-01,46.31,46.56,45.25,45.31,37304400,1.55 +1999-06-30,45.69,46.94,44.94,46.31,85817200,1.58 +1999-06-29,42.72,45.56,42.62,45.38,95096400,1.55 +1999-06-28,42.44,42.94,42.37,42.56,69423200,1.45 +1999-06-25,42.50,42.69,42.06,42.19,73533600,1.44 +1999-06-24,43.63,43.63,42.25,42.31,108340400,1.44 +1999-06-23,45.06,45.09,43.56,43.69,132874000,1.49 +1999-06-22,46.31,46.94,45.38,45.38,37769200,1.55 +1999-06-21,47.00,47.25,46.00,46.50,33787600,1.59 +1999-06-18,45.38,47.25,45.19,47.13,52015600,1.61 +1999-06-17,47.62,48.00,45.75,46.38,56100800,1.58 +1999-06-16,46.38,48.06,46.38,47.94,56254800,1.64 +1999-06-15,45.19,46.75,45.13,46.06,32597600,1.57 +1999-06-14,46.50,46.63,45.13,45.44,39270000,1.55 +1999-06-11,48.12,48.50,46.25,46.44,46261600,1.59 +1999-06-10,47.87,48.25,47.31,48.12,79262400,1.64 +1999-06-09,47.44,48.50,47.44,48.44,88446400,1.65 +1999-06-08,48.75,48.81,47.56,47.69,78414000,1.63 +1999-06-07,48.12,49.00,47.50,48.94,104571600,1.67 +1999-06-04,47.62,48.19,47.25,48.12,92170400,1.64 +1999-06-03,46.88,48.00,46.81,47.44,122127600,1.62 +1999-06-02,44.50,47.94,44.00,46.56,130264400,1.59 +1999-06-01,45.00,45.31,44.37,44.81,115256400,1.53 +1999-05-28,43.31,44.31,43.13,44.06,50282400,1.50 +1999-05-27,43.19,43.75,42.69,43.50,84190400,1.48 +1999-05-26,41.75,44.37,41.25,44.06,109387600,1.50 +1999-05-25,41.56,42.44,40.94,41.50,91627200,1.42 +1999-05-24,43.63,44.31,41.88,41.94,65231600,1.43 +1999-05-21,43.00,44.31,42.56,43.94,115796800,1.50 +1999-05-20,45.44,45.75,42.50,42.50,104428800,1.45 +1999-05-19,45.50,45.75,43.50,45.19,74569600,1.54 +1999-05-18,44.81,46.00,44.37,45.25,104594000,1.54 +1999-05-17,43.75,44.69,43.00,44.37,52690400,1.51 +1999-05-14,45.13,45.81,44.37,44.37,56658000,1.51 +1999-05-13,46.44,46.81,45.50,46.19,73880800,1.58 +1999-05-12,44.88,46.50,44.12,46.50,98781200,1.59 +1999-05-11,44.88,46.19,43.56,44.75,114648800,1.53 +1999-05-10,46.75,46.94,44.62,45.25,98249200,1.54 +1999-05-07,44.62,45.87,42.75,45.87,108679200,1.57 +1999-05-06,46.56,46.88,44.00,44.50,108287200,1.52 +1999-05-05,46.31,47.00,44.62,47.00,144824400,1.60 +1999-05-04,48.25,48.63,46.19,46.50,202809600,1.59 +1999-05-03,46.06,50.00,45.75,49.56,367609200,1.69 +1999-04-30,44.00,47.13,44.00,46.00,368082400,1.57 +1999-04-29,43.25,44.37,41.78,43.00,197327200,1.47 +1999-04-28,44.62,45.69,43.63,44.06,238747600,1.50 +1999-04-27,43.00,45.81,43.00,45.75,526512000,1.56 +1999-04-26,39.50,41.25,39.25,40.94,231982800,1.40 +1999-04-23,36.25,39.44,36.25,39.19,261710400,1.34 +1999-04-22,35.06,36.63,35.06,36.38,185043600,1.24 +1999-04-21,34.00,34.38,33.50,34.38,87850000,1.17 +1999-04-20,33.87,34.75,33.50,34.06,130964400,1.16 +1999-04-19,35.69,36.00,33.50,33.87,230454000,1.16 +1999-04-16,35.88,36.06,35.25,35.44,125554800,1.21 +1999-04-15,35.37,36.19,34.31,35.75,433619200,1.22 +1999-04-14,35.25,37.06,35.00,35.53,170256800,1.21 +1999-04-13,36.31,36.81,34.50,34.63,103096000,1.18 +1999-04-12,35.00,36.87,34.88,36.25,98954800,1.24 +1999-04-09,36.25,37.25,35.94,36.75,67135600,1.25 +1999-04-08,36.87,37.06,36.00,36.87,74102000,1.26 +1999-04-07,38.06,38.25,36.38,37.12,102953200,1.27 +1999-04-06,36.81,38.31,36.81,38.00,157147200,1.30 +1999-04-05,36.00,37.88,36.00,37.06,115234000,1.27 +1999-04-01,36.06,36.69,35.75,36.06,65514400,1.23 +1999-03-31,36.38,37.12,35.88,35.94,105588000,1.23 +1999-03-30,35.00,36.38,35.00,35.88,138630800,1.22 +1999-03-29,33.50,35.44,33.44,35.37,142217600,1.21 +1999-03-26,33.75,33.81,33.00,33.25,63459200,1.14 +1999-03-25,34.38,34.88,33.37,33.81,99990800,1.15 +1999-03-24,33.25,33.75,32.50,33.69,100038400,1.15 +1999-03-23,34.44,34.44,32.75,33.00,103888400,1.13 +1999-03-22,34.00,35.19,32.94,35.06,148402800,1.20 +1999-03-19,35.94,36.00,32.88,33.50,134125600,1.14 +1999-03-18,34.38,35.62,34.25,35.50,56770000,1.21 +1999-03-17,35.94,36.06,33.94,34.06,91579600,1.16 +1999-03-16,35.00,35.56,34.94,35.50,99957200,1.21 +1999-03-15,33.31,35.00,33.25,34.06,88040400,1.16 +1999-03-12,32.31,33.50,32.31,33.19,67849600,1.13 +1999-03-11,32.25,33.87,32.00,32.19,118414800,1.10 +1999-03-10,34.19,34.19,32.44,32.56,136570000,1.11 +1999-03-09,34.31,34.38,33.50,34.12,79923200,1.16 +1999-03-08,33.25,34.69,33.19,34.38,137667600,1.17 +1999-03-05,34.31,34.31,32.38,33.19,117009200,1.13 +1999-03-04,34.50,34.50,32.38,33.44,91817600,1.14 +1999-03-03,34.75,35.12,33.50,34.19,73337600,1.17 +1999-03-02,34.12,35.31,33.75,34.63,170763600,1.18 +1999-03-01,34.81,34.81,33.62,33.75,121956800,1.15 +1999-02-26,36.50,37.00,34.50,34.81,166812800,1.19 +1999-02-25,37.31,37.69,36.50,36.94,66150000,1.26 +1999-02-24,38.81,39.00,37.37,37.44,53188800,1.28 +1999-02-23,38.56,39.56,37.94,38.44,80544800,1.31 +1999-02-22,37.37,38.87,37.25,38.44,74667600,1.31 +1999-02-19,36.25,37.69,36.19,37.19,90423200,1.27 +1999-02-18,37.56,37.88,35.56,36.00,125042400,1.23 +1999-02-17,38.13,38.69,36.94,37.00,74015200,1.26 +1999-02-16,38.87,38.87,37.88,38.31,75056800,1.31 +1999-02-12,39.12,39.12,37.00,37.69,107226000,1.29 +1999-02-11,38.75,39.75,38.56,39.63,141299200,1.35 +1999-02-10,36.87,38.69,36.00,38.31,140907200,1.31 +1999-02-09,37.94,39.06,37.06,37.19,175288400,1.27 +1999-02-08,36.69,37.94,36.25,37.75,117056800,1.29 +1999-02-05,38.25,38.38,35.50,36.31,194300400,1.24 +1999-02-04,40.19,40.25,37.75,37.88,115945200,1.29 +1999-02-03,39.00,40.56,38.75,40.19,84686000,1.37 +1999-02-02,40.37,40.75,39.00,39.19,76790000,1.34 +1999-02-01,41.69,41.94,40.31,40.94,69728400,1.40 +1999-01-29,41.19,41.56,40.00,41.19,60678800,1.41 +1999-01-28,40.87,41.25,40.31,40.87,84070000,1.40 +1999-01-27,41.00,41.38,39.94,40.13,91238000,1.37 +1999-01-26,39.94,40.87,39.63,40.50,140011200,1.38 +1999-01-25,39.25,39.56,38.81,39.38,96334000,1.34 +1999-01-22,37.69,39.50,37.06,38.75,86441600,1.32 +1999-01-21,40.44,40.56,37.50,38.81,150122000,1.32 +1999-01-20,41.06,42.00,40.50,40.56,194530000,1.38 +1999-01-19,41.94,42.31,40.37,40.87,133722400,1.40 +1999-01-15,41.81,42.12,40.00,41.31,251501600,1.41 +1999-01-14,45.50,46.00,41.06,41.38,430964800,1.41 +1999-01-13,42.88,47.31,42.25,46.50,261954000,1.59 +1999-01-12,46.31,46.63,44.12,46.12,205184000,1.57 +1999-01-11,45.75,46.06,44.88,45.87,140243600,1.57 +1999-01-08,46.56,46.88,44.00,45.00,169708000,1.54 +1999-01-07,42.25,45.06,42.12,45.00,357254800,1.54 +1999-01-06,44.12,44.12,41.00,41.75,337142400,1.43 +1999-01-05,41.94,43.94,41.50,43.31,352528400,1.48 +1999-01-04,42.12,42.25,40.00,41.25,238221200,1.41 +1998-12-31,40.50,41.38,39.50,40.94,67922400,1.40 +1998-12-30,40.13,41.12,40.00,40.06,59340400,1.37 +1998-12-29,41.12,41.50,40.25,40.81,96838000,1.39 +1998-12-28,39.00,41.12,39.00,40.87,181328000,1.40 +1998-12-24,39.88,40.00,39.19,39.25,49996800,1.34 +1998-12-23,38.62,40.50,38.38,39.81,308758800,1.36 +1998-12-22,36.38,38.13,36.00,38.00,287700000,1.30 +1998-12-21,35.37,35.62,34.25,35.06,89362000,1.20 +1998-12-18,33.37,35.37,33.25,35.19,197873200,1.20 +1998-12-17,32.94,33.75,32.75,33.44,82653200,1.14 +1998-12-16,33.75,34.19,32.63,32.81,93587200,1.12 +1998-12-15,32.75,33.62,32.75,33.56,66178000,1.15 +1998-12-14,32.88,33.31,32.25,32.50,125361600,1.11 +1998-12-11,32.25,34.00,32.00,33.75,172499600,1.15 +1998-12-10,32.69,32.94,31.87,32.00,97812400,1.09 +1998-12-09,32.69,32.88,31.62,32.00,148229200,1.09 +1998-12-08,33.94,33.94,32.00,32.06,170027200,1.09 +1998-12-07,33.37,33.75,32.75,33.75,141649200,1.15 +1998-12-04,34.31,34.44,32.00,32.75,180342400,1.12 +1998-12-03,36.31,36.50,33.62,33.69,156511600,1.15 +1998-12-02,34.12,36.87,33.50,36.00,240620800,1.23 +1998-12-01,32.00,34.81,31.62,34.12,216434400,1.16 +1998-11-30,34.56,34.81,31.75,31.94,140372400,1.09 +1998-11-27,35.06,35.12,34.75,35.06,38276000,1.20 +1998-11-25,35.88,36.06,34.94,35.12,75950000,1.20 +1998-11-24,36.13,36.75,35.75,35.94,79937200,1.23 +1998-11-23,35.56,36.81,35.19,36.25,144488400,1.24 +1998-11-20,36.44,36.75,34.75,35.31,99806000,1.21 +1998-11-19,35.50,37.19,35.44,35.75,86632000,1.22 +1998-11-18,35.19,36.00,34.88,35.44,82415200,1.21 +1998-11-17,35.75,35.81,34.75,34.81,52682000,1.19 +1998-11-16,35.94,36.75,35.44,36.00,96132400,1.23 +1998-11-13,34.94,36.06,34.69,35.69,197954400,1.22 +1998-11-12,33.13,34.44,32.88,34.00,148775200,1.16 +1998-11-11,35.75,35.81,32.75,33.56,237126400,1.15 +1998-11-10,36.19,36.25,35.00,35.12,220995600,1.20 +1998-11-09,37.69,38.13,35.50,36.63,165197200,1.25 +1998-11-06,37.88,38.25,37.25,38.06,199334800,1.30 +1998-11-05,38.38,39.38,38.06,38.19,151779600,1.30 +1998-11-04,38.56,39.12,38.13,38.69,156970800,1.32 +1998-11-03,37.37,38.25,37.31,37.81,92612800,1.29 +1998-11-02,37.50,37.75,37.25,37.62,63442400,1.28 +1998-10-30,36.81,37.50,36.25,37.12,79410800,1.27 +1998-10-29,36.44,37.44,35.81,36.44,86144800,1.24 +1998-10-28,35.25,37.00,35.12,36.81,90927200,1.26 +1998-10-27,38.00,38.94,35.06,35.25,134548400,1.20 +1998-10-26,36.06,37.75,35.50,37.44,118960800,1.28 +1998-10-23,36.75,36.87,35.12,35.50,88995200,1.21 +1998-10-22,36.87,37.62,36.25,36.75,79343600,1.25 +1998-10-21,36.75,37.44,35.75,37.12,107654400,1.27 +1998-10-20,37.94,38.19,36.00,36.06,95522000,1.23 +1998-10-19,36.69,38.06,35.88,37.50,118944000,1.28 +1998-10-16,37.12,38.06,36.50,36.69,153890800,1.25 +1998-10-15,36.25,37.25,35.50,36.63,210168000,1.25 +1998-10-14,39.75,41.31,36.81,37.37,570004400,1.28 +1998-10-13,38.06,39.19,36.00,38.75,235407200,1.32 +1998-10-12,37.50,38.44,36.56,37.44,155724800,1.28 +1998-10-09,31.75,35.25,30.75,35.12,167059200,1.20 +1998-10-08,31.00,31.19,28.50,30.81,172303600,1.05 +1998-10-07,32.38,33.31,31.87,31.94,118339200,1.09 +1998-10-06,33.69,34.31,32.50,32.56,99965600,1.11 +1998-10-05,34.00,34.56,31.50,32.19,137970000,1.10 +1998-10-02,35.50,36.25,34.12,35.06,118893600,1.20 +1998-10-01,36.75,38.00,35.37,35.69,92554000,1.22 +1998-09-30,38.75,39.25,38.00,38.13,41795600,1.30 +1998-09-29,39.06,40.00,38.13,39.50,76283200,1.35 +1998-09-28,39.75,40.19,38.00,39.06,101354400,1.33 +1998-09-25,38.19,39.19,37.62,38.75,57072400,1.32 +1998-09-24,37.88,39.56,37.75,38.50,120710800,1.31 +1998-09-23,37.25,38.38,36.56,38.31,71979600,1.31 +1998-09-22,37.12,37.62,36.38,37.00,64484000,1.26 +1998-09-21,35.69,36.94,35.31,36.94,73967600,1.26 +1998-09-18,36.06,36.75,35.56,36.75,76269200,1.25 +1998-09-17,36.06,37.12,35.88,36.00,67323200,1.23 +1998-09-16,38.62,38.75,37.00,37.31,64719200,1.27 +1998-09-15,36.75,38.56,36.50,38.19,108413200,1.30 +1998-09-14,38.25,38.81,37.12,37.19,61768000,1.27 +1998-09-11,38.50,39.63,36.87,37.62,88071200,1.28 +1998-09-10,36.25,38.25,35.75,38.13,131720400,1.30 +1998-09-09,38.06,38.13,37.00,37.37,88673200,1.28 +1998-09-08,38.00,38.25,36.75,38.25,100699200,1.31 +1998-09-04,35.50,36.44,33.75,35.12,94318000,1.20 +1998-09-03,35.00,35.12,34.00,34.63,102438000,1.18 +1998-09-02,35.50,37.37,35.25,35.56,210750400,1.21 +1998-09-01,31.38,35.37,30.62,34.12,217268800,1.16 +1998-08-31,34.75,34.88,31.00,31.19,217056000,1.06 +1998-08-28,37.12,38.50,34.12,34.19,233063600,1.17 +1998-08-27,39.25,39.25,35.62,37.50,278560800,1.28 +1998-08-26,39.88,41.12,39.50,40.37,101620400,1.38 +1998-08-25,42.37,42.37,40.31,40.81,123891600,1.39 +1998-08-24,43.44,43.50,40.13,41.19,152544000,1.41 +1998-08-21,40.00,43.56,39.00,43.00,203344400,1.47 +1998-08-20,41.00,41.12,40.25,40.62,97980400,1.39 +1998-08-19,43.50,43.75,41.00,41.00,121497600,1.40 +1998-08-18,42.44,43.38,42.25,42.56,151488400,1.45 +1998-08-17,41.00,42.81,39.88,41.94,232719200,1.43 +1998-08-14,40.69,40.75,39.50,40.50,112694400,1.38 +1998-08-13,39.94,40.75,39.38,39.44,97694800,1.35 +1998-08-12,39.75,40.94,39.48,40.06,172443600,1.37 +1998-08-11,37.75,41.00,37.37,39.00,439868800,1.33 +1998-08-10,36.31,38.06,36.25,37.94,122150000,1.30 +1998-08-07,37.19,37.37,36.00,36.50,74505200,1.25 +1998-08-06,35.06,36.87,34.88,36.87,109653600,1.26 +1998-08-05,33.75,36.00,33.50,36.00,113520400,1.23 +1998-08-04,35.50,36.00,34.00,34.19,73480400,1.17 +1998-08-03,34.25,35.56,33.25,35.12,75440400,1.20 +1998-07-31,36.63,36.75,34.50,34.63,45777200,1.18 +1998-07-30,35.81,36.75,35.50,36.50,90574400,1.25 +1998-07-29,33.75,35.88,33.69,35.12,111930000,1.20 +1998-07-28,34.06,34.63,33.00,33.62,56344400,1.15 +1998-07-27,34.25,34.88,33.25,34.44,53558400,1.18 +1998-07-24,35.37,35.50,33.81,34.69,67821600,1.18 +1998-07-23,34.81,35.62,34.75,34.94,63282800,1.19 +1998-07-22,34.94,35.62,34.25,35.00,70182000,1.19 +1998-07-21,36.13,37.00,35.56,35.62,82376000,1.22 +1998-07-20,36.56,36.63,35.50,36.25,95972800,1.24 +1998-07-17,37.25,37.25,36.19,36.87,157388000,1.26 +1998-07-16,37.88,38.13,35.75,37.50,640337600,1.28 +1998-07-15,33.69,34.69,33.50,34.44,148741600,1.18 +1998-07-14,33.94,34.00,33.13,33.44,137132800,1.14 +1998-07-13,31.94,34.12,31.87,33.94,178847200,1.16 +1998-07-10,32.19,32.63,31.75,32.06,75630800,1.09 +1998-07-09,32.94,33.62,31.44,31.69,141652000,1.08 +1998-07-08,30.75,32.94,30.69,32.56,233203600,1.11 +1998-07-07,30.37,30.88,30.00,30.50,60368000,1.04 +1998-07-06,29.50,30.37,29.13,30.37,67737600,1.04 +1998-07-02,29.69,30.06,29.00,29.00,74527600,0.99 +1998-07-01,28.88,30.00,28.50,29.94,78528800,1.02 +1998-06-30,28.62,28.81,28.12,28.69,32765600,0.98 +1998-06-29,28.25,28.81,28.06,28.69,41546400,0.98 +1998-06-26,28.50,28.62,27.75,28.19,27778800,0.96 +1998-06-25,28.56,28.81,28.31,28.56,47952800,0.98 +1998-06-24,27.75,28.62,27.31,28.25,68448800,0.96 +1998-06-23,27.44,28.12,27.25,27.81,57764000,0.95 +1998-06-22,27.00,27.56,26.75,27.38,33642000,0.93 +1998-06-19,27.38,27.44,26.75,27.06,34389600,0.92 +1998-06-18,27.75,28.06,27.19,27.31,29999200,0.93 +1998-06-17,28.00,28.56,27.94,28.12,46793600,0.96 +1998-06-16,27.69,28.12,27.31,28.00,32421200,0.96 +1998-06-15,27.25,28.25,27.25,27.50,34165600,0.94 +1998-06-12,27.63,28.25,27.38,28.12,55963600,0.96 +1998-06-11,28.19,28.62,27.81,27.81,45029600,0.95 +1998-06-10,28.00,29.00,27.63,28.06,57307600,0.96 +1998-06-09,27.38,28.50,27.38,28.25,68936000,0.96 +1998-06-08,27.00,27.69,26.81,27.25,31656800,0.93 +1998-06-05,26.87,27.25,26.37,26.87,30830800,0.92 +1998-06-04,26.62,26.87,25.81,26.81,39034800,0.92 +1998-06-03,27.12,27.25,26.19,26.31,36285200,0.90 +1998-06-02,26.44,27.31,26.00,26.87,44825200,0.92 +1998-06-01,26.50,27.63,25.63,26.25,79923200,0.90 +1998-05-29,27.50,27.56,26.44,26.62,54180000,0.91 +1998-05-28,26.75,27.88,26.75,27.44,74622800,0.94 +1998-05-27,25.69,26.81,25.63,26.75,92548400,0.91 +1998-05-26,28.06,28.25,26.62,26.69,77943600,0.91 +1998-05-22,28.75,28.75,27.31,27.88,66648400,0.95 +1998-05-21,29.56,29.69,28.62,28.88,32748800,0.99 +1998-05-20,29.63,29.87,28.75,29.56,47544000,1.01 +1998-05-19,28.94,29.44,28.81,29.38,54566400,1.00 +1998-05-18,29.38,29.56,28.37,28.50,58097200,0.97 +1998-05-15,30.06,30.37,29.25,29.56,68146400,1.01 +1998-05-14,30.37,30.44,29.75,30.06,40670000,1.03 +1998-05-13,30.06,30.81,29.63,30.44,78604400,1.04 +1998-05-12,30.56,30.75,29.94,30.12,64453200,1.03 +1998-05-11,30.88,31.62,30.75,30.94,166255600,1.06 +1998-05-08,30.06,30.50,29.94,30.44,67704000,1.04 +1998-05-07,30.56,30.62,29.87,30.19,138224800,1.03 +1998-05-06,29.87,30.44,29.25,30.31,224252000,1.03 +1998-05-05,29.25,29.87,29.13,29.69,104820800,1.01 +1998-05-04,28.88,29.50,28.88,29.06,142786000,0.99 +1998-05-01,27.50,28.25,26.87,28.00,46018000,0.96 +1998-04-30,27.38,27.63,27.06,27.38,44987600,0.93 +1998-04-29,26.94,27.44,26.75,27.00,47384400,0.92 +1998-04-28,27.88,28.00,26.25,26.94,59292800,0.92 +1998-04-27,26.75,27.75,26.75,27.75,102449200,0.95 +1998-04-24,27.75,28.25,27.50,27.94,53886000,0.95 +1998-04-23,27.44,29.00,27.19,27.69,118823600,0.95 +1998-04-22,28.75,29.00,27.50,27.50,71237600,0.94 +1998-04-21,29.06,29.13,28.50,29.00,87007200,0.99 +1998-04-20,27.63,29.50,27.56,29.00,129444000,0.99 +1998-04-17,28.56,28.62,27.69,27.94,148041600,0.95 +1998-04-16,29.25,29.63,28.19,28.62,459488400,0.98 +1998-04-15,27.19,27.50,26.62,27.44,139378400,0.94 +1998-04-14,26.37,27.25,26.37,26.94,81961600,0.92 +1998-04-13,25.63,26.69,25.00,26.44,72074800,0.90 +1998-04-09,25.06,25.88,25.00,25.63,42576800,0.87 +1998-04-08,25.25,25.38,24.69,25.00,56299600,0.85 +1998-04-07,25.81,26.00,24.87,25.50,73175200,0.87 +1998-04-06,27.00,27.00,26.19,26.25,86898000,0.90 +1998-04-03,27.12,27.25,26.81,27.06,50766800,0.92 +1998-04-02,27.31,27.44,26.94,27.31,48577200,0.93 +1998-04-01,27.44,27.81,27.06,27.50,46720800,0.94 +1998-03-31,27.44,27.81,27.25,27.50,66724000,0.94 +1998-03-30,26.75,27.50,26.75,27.44,62675200,0.94 +1998-03-27,26.62,27.31,26.37,26.94,63898800,0.92 +1998-03-26,26.75,27.00,26.44,26.56,50741600,0.91 +1998-03-25,27.63,27.75,26.37,27.16,96843600,0.93 +1998-03-24,26.37,28.00,26.25,28.00,168982800,0.96 +1998-03-23,25.94,26.25,24.62,26.13,103684000,0.89 +1998-03-20,26.69,26.87,26.00,26.37,53869200,0.90 +1998-03-19,26.87,26.94,26.56,26.75,40014800,0.91 +1998-03-18,26.00,26.94,26.00,26.94,69249600,0.92 +1998-03-17,26.50,26.69,25.88,26.34,102564000,0.90 +1998-03-16,27.12,27.25,26.19,26.69,100590000,0.91 +1998-03-13,27.25,27.25,26.25,27.12,141540000,0.93 +1998-03-12,26.13,27.00,25.56,27.00,186090800,0.92 +1998-03-11,25.12,26.19,24.56,26.13,303584400,0.89 +1998-03-10,23.00,24.50,22.94,24.06,178225600,0.82 +1998-03-09,23.75,24.31,22.50,22.75,143732400,0.78 +1998-03-06,23.88,24.50,23.37,24.44,166616800,0.83 +1998-03-05,23.25,24.25,23.12,24.06,168781200,0.82 +1998-03-04,22.87,24.75,22.87,24.44,204456000,0.83 +1998-03-03,21.88,23.19,21.62,23.12,83518400,0.79 +1998-03-02,23.56,23.56,22.25,22.75,100111200,0.78 +1998-02-27,23.31,23.88,22.56,23.62,129900400,0.81 +1998-02-26,22.31,23.56,21.88,23.50,148783600,0.80 +1998-02-25,21.31,22.75,20.94,22.31,178166800,0.76 +1998-02-24,21.31,21.37,20.75,21.31,114147600,0.73 +1998-02-23,20.12,21.62,20.00,21.25,119372400,0.73 +1998-02-20,20.50,20.56,19.81,20.00,81354000,0.68 +1998-02-19,20.88,20.94,20.00,20.44,99915200,0.70 +1998-02-18,19.56,20.75,19.56,20.56,123648000,0.70 +1998-02-17,19.50,19.75,19.50,19.62,45687600,0.67 +1998-02-13,19.19,19.87,19.00,19.50,51998800,0.67 +1998-02-12,19.13,19.44,19.06,19.37,50937600,0.66 +1998-02-11,19.50,19.50,18.88,19.00,52917200,0.65 +1998-02-10,19.13,19.56,19.06,19.44,105504000,0.66 +1998-02-09,18.38,19.50,18.38,19.19,123667600,0.65 +1998-02-06,18.38,18.69,18.25,18.50,50584800,0.63 +1998-02-05,18.25,18.50,18.00,18.31,59567200,0.63 +1998-02-04,18.06,18.50,18.00,18.25,42548800,0.62 +1998-02-03,17.69,18.63,17.69,18.31,100654400,0.63 +1998-02-02,18.50,18.50,17.38,17.69,159185600,0.60 +1998-01-30,18.31,18.88,18.25,18.31,40611200,0.63 +1998-01-29,18.94,19.13,18.50,18.50,52970400,0.63 +1998-01-28,19.19,19.37,18.63,19.19,37780400,0.65 +1998-01-27,19.19,19.69,19.00,19.13,28058800,0.65 +1998-01-26,19.44,19.56,18.81,19.44,36610000,0.66 +1998-01-23,19.37,19.69,19.25,19.50,58290400,0.67 +1998-01-22,18.69,19.75,18.63,19.25,82432000,0.66 +1998-01-21,18.75,19.06,18.56,18.91,47552400,0.65 +1998-01-20,19.06,19.31,18.63,19.06,60390400,0.65 +1998-01-16,19.44,19.44,18.69,18.81,61588800,0.64 +1998-01-15,19.19,19.75,18.63,19.19,139818000,0.65 +1998-01-14,19.87,19.94,19.25,19.75,147316400,0.67 +1998-01-13,18.63,19.62,18.50,19.50,159213600,0.67 +1998-01-12,17.44,18.63,17.13,18.25,129099600,0.62 +1998-01-09,18.12,19.37,17.50,18.19,221636800,0.62 +1998-01-08,17.44,18.63,16.94,18.19,193505200,0.62 +1998-01-07,18.81,19.00,17.31,17.50,260405600,0.60 +1998-01-06,15.94,20.00,14.75,18.94,453118400,0.65 +1998-01-05,16.50,16.56,15.19,15.87,162968400,0.54 +1998-01-02,13.63,16.25,13.50,16.25,179527600,0.55 +1997-12-31,13.12,13.63,12.94,13.12,101589600,0.45 +1997-12-30,13.00,13.44,12.75,13.19,85626800,0.45 +1997-12-29,13.31,13.44,12.87,13.12,69549200,0.45 +1997-12-26,13.06,13.38,13.00,13.31,26969600,0.45 +1997-12-24,13.00,13.25,13.00,13.12,24458000,0.45 +1997-12-23,13.12,13.31,12.94,12.94,114707600,0.44 +1997-12-22,13.88,14.00,13.19,13.31,39869200,0.45 +1997-12-19,13.56,13.88,13.25,13.69,47653200,0.47 +1997-12-18,14.00,14.00,13.75,13.81,50512000,0.47 +1997-12-17,14.31,14.56,13.94,13.94,66323600,0.48 +1997-12-16,14.00,14.37,14.00,14.31,46407200,0.49 +1997-12-15,14.12,14.25,13.75,13.94,41473600,0.48 +1997-12-12,14.75,14.88,14.00,14.12,40140800,0.48 +1997-12-11,14.44,14.56,13.88,14.56,64234800,0.50 +1997-12-10,15.06,15.06,14.50,14.75,48720000,0.50 +1997-12-09,15.50,15.69,15.00,15.25,60762800,0.52 +1997-12-08,15.56,15.75,15.38,15.56,33395600,0.53 +1997-12-05,15.56,16.00,15.56,15.81,55367200,0.54 +1997-12-04,16.00,16.00,15.63,15.63,49910000,0.53 +1997-12-03,16.06,16.12,15.69,15.75,85764000,0.54 +1997-12-02,17.38,17.50,15.87,15.87,99204000,0.54 +1997-12-01,17.69,17.94,17.25,17.75,21809200,0.61 +1997-11-28,17.62,17.87,17.44,17.75,10329200,0.61 +1997-11-26,17.38,17.69,17.25,17.50,15103200,0.60 +1997-11-25,17.69,17.87,16.88,17.38,51357600,0.59 +1997-11-24,17.56,18.00,17.50,17.62,39337200,0.60 +1997-11-21,18.63,18.69,18.00,18.19,24444000,0.62 +1997-11-20,18.19,18.63,18.12,18.50,32043200,0.63 +1997-11-19,17.87,18.31,17.87,18.25,19896800,0.62 +1997-11-18,18.50,18.50,18.06,18.06,36660400,0.62 +1997-11-17,18.88,18.94,18.33,18.50,51256800,0.63 +1997-11-14,18.25,18.50,18.00,18.44,33759600,0.63 +1997-11-13,18.00,18.06,17.50,18.00,64380400,0.61 +1997-11-12,18.06,18.50,17.56,17.62,52015600,0.60 +1997-11-11,19.00,19.00,18.12,18.38,83120800,0.63 +1997-11-10,21.00,21.50,18.50,18.69,349560400,0.64 +1997-11-07,18.88,20.00,18.75,19.75,198903600,0.67 +1997-11-06,18.88,19.50,18.88,19.00,154271600,0.65 +1997-11-05,18.25,18.63,18.06,18.38,96779200,0.63 +1997-11-04,17.75,18.12,17.50,17.94,42148400,0.61 +1997-11-03,17.56,17.75,17.06,17.38,31502800,0.59 +1997-10-31,17.38,17.38,16.62,17.03,66771600,0.58 +1997-10-30,17.06,17.56,16.50,16.50,47238800,0.56 +1997-10-29,18.44,18.50,17.25,17.50,44396800,0.60 +1997-10-28,16.00,18.50,15.87,18.12,85828400,0.62 +1997-10-27,16.75,18.12,16.75,16.75,82339600,0.57 +1997-10-24,18.12,18.38,16.50,16.56,97059200,0.57 +1997-10-23,18.00,18.19,17.75,17.75,46695600,0.61 +1997-10-22,19.06,19.25,18.50,18.56,37794400,0.63 +1997-10-21,18.88,19.31,18.69,19.06,118818000,0.65 +1997-10-20,20.12,20.19,18.63,18.69,102958800,0.64 +1997-10-17,21.12,21.12,19.87,20.12,109667600,0.69 +1997-10-16,21.12,22.06,20.88,21.50,184797200,0.73 +1997-10-15,22.13,24.75,22.13,23.81,202717200,0.81 +1997-10-14,22.69,22.75,22.19,22.69,41454000,0.77 +1997-10-13,22.75,22.87,22.19,22.69,39656400,0.77 +1997-10-10,21.50,22.75,21.50,22.69,67600400,0.77 +1997-10-09,21.25,22.50,21.19,21.75,46832800,0.74 +1997-10-08,21.75,21.81,21.31,21.50,27210400,0.73 +1997-10-07,21.88,22.00,21.81,21.81,27322400,0.74 +1997-10-06,22.19,22.25,21.69,21.94,23324000,0.75 +1997-10-03,22.00,22.25,21.69,22.13,40558000,0.76 +1997-10-02,21.44,22.00,21.37,21.94,33852000,0.75 +1997-10-01,21.69,21.75,21.37,21.53,32617200,0.73 +1997-09-30,22.00,22.31,21.69,21.69,35142800,0.74 +1997-09-29,21.69,22.25,21.56,22.06,41809600,0.75 +1997-09-26,21.50,21.94,21.12,21.31,52080000,0.73 +1997-09-25,21.31,21.75,21.00,21.12,55846000,0.72 +1997-09-24,21.69,21.75,21.37,21.50,55608000,0.73 +1997-09-23,22.25,22.25,21.69,21.75,50134000,0.74 +1997-09-22,22.13,23.06,22.00,22.81,50092000,0.78 +1997-09-19,22.19,22.19,21.75,21.94,23732800,0.75 +1997-09-18,21.50,22.50,21.50,22.31,42291200,0.76 +1997-09-17,22.00,22.00,21.69,21.81,21691600,0.74 +1997-09-16,22.06,22.14,21.75,21.94,33555200,0.75 +1997-09-15,21.88,22.13,21.50,21.50,24228400,0.73 +1997-09-12,22.19,22.25,21.44,22.06,28420000,0.75 +1997-09-11,22.87,23.00,22.06,22.38,52469200,0.76 +1997-09-10,21.75,23.12,21.69,22.94,68516000,0.78 +1997-09-09,21.31,21.88,21.25,21.81,39757200,0.74 +1997-09-08,22.25,22.25,21.44,21.50,43789200,0.73 +1997-09-05,22.63,22.87,22.00,22.19,34176800,0.76 +1997-09-04,22.56,22.87,22.25,22.50,30634800,0.77 +1997-09-03,22.38,23.25,22.31,22.50,71033200,0.77 +1997-09-02,22.00,22.56,21.94,22.38,46510800,0.76 +1997-08-29,21.81,22.00,21.50,21.75,27417600,0.74 +1997-08-28,22.13,22.50,22.00,22.00,23917600,0.75 +1997-08-27,22.38,22.75,21.88,22.69,47658800,0.77 +1997-08-26,22.63,23.00,22.13,22.25,56551600,0.76 +1997-08-25,23.62,23.69,22.94,23.06,34658400,0.79 +1997-08-22,23.44,24.00,23.37,23.62,56907200,0.81 +1997-08-21,24.50,24.69,23.88,24.00,64820000,0.82 +1997-08-20,24.44,25.12,24.19,24.62,81076800,0.84 +1997-08-19,23.69,24.50,23.31,24.44,72290400,0.83 +1997-08-18,23.31,23.75,22.75,23.62,54460000,0.81 +1997-08-15,23.12,23.44,22.81,23.25,65240000,0.79 +1997-08-14,23.62,24.25,22.69,23.00,108612000,0.79 +1997-08-13,22.25,23.88,20.44,23.62,300356000,0.81 +1997-08-12,24.06,24.25,21.88,22.06,262099600,0.75 +1997-08-11,26.31,26.44,23.50,24.56,387749600,0.84 +1997-08-08,27.81,28.37,26.13,26.81,453541200,0.92 +1997-08-07,28.75,29.56,28.37,29.19,938859600,1.00 +1997-08-06,25.25,27.75,25.00,26.31,1047620000,0.90 +1997-08-05,19.94,20.00,19.48,19.75,61782000,0.67 +1997-08-04,19.19,19.81,19.19,19.75,152829600,0.67 +1997-08-01,17.62,19.19,17.56,19.19,120478400,0.65 +1997-07-31,17.38,17.75,17.25,17.50,65954000,0.60 +1997-07-30,16.94,17.69,16.75,17.38,93576000,0.59 +1997-07-29,16.44,16.62,16.37,16.50,17810800,0.56 +1997-07-28,16.44,16.50,16.25,16.44,27627600,0.56 +1997-07-25,15.87,16.56,15.75,16.25,54490800,0.55 +1997-07-24,16.12,16.12,15.63,15.81,33373200,0.54 +1997-07-23,16.75,16.88,16.00,16.12,35322000,0.55 +1997-07-22,16.37,16.69,16.31,16.56,57834000,0.57 +1997-07-21,17.56,17.69,16.00,16.16,88729200,0.55 +1997-07-18,17.87,17.94,17.06,17.34,79391200,0.59 +1997-07-17,17.00,18.12,16.44,17.50,186566800,0.60 +1997-07-16,15.81,16.50,15.63,16.44,111563200,0.56 +1997-07-15,15.75,16.00,15.63,15.94,104588400,0.54 +1997-07-14,15.25,15.63,14.88,15.63,102751600,0.53 +1997-07-11,13.38,15.50,13.31,15.19,183736000,0.52 +1997-07-10,12.87,13.38,12.75,13.25,123127200,0.45 +1997-07-09,13.81,13.88,13.63,13.69,35504000,0.47 +1997-07-08,13.88,14.00,13.69,13.75,23923200,0.47 +1997-07-07,13.94,14.25,13.75,13.81,47868800,0.47 +1997-07-03,13.12,13.88,13.00,13.69,46695600,0.47 +1997-07-02,13.25,13.38,13.00,13.06,62490400,0.45 +1997-07-01,13.94,14.00,13.12,13.19,112669200,0.45 +1997-06-30,14.75,14.75,14.00,14.25,42795200,0.49 +1997-06-27,14.69,14.81,14.62,14.69,39488400,0.50 +1997-06-26,15.13,15.13,14.62,14.69,95496800,0.50 +1997-06-25,15.31,15.38,15.00,15.13,49658000,0.52 +1997-06-24,15.44,15.56,15.25,15.31,27787200,0.52 +1997-06-23,15.50,15.63,15.38,15.38,24886400,0.52 +1997-06-20,15.69,15.75,15.50,15.56,27546400,0.53 +1997-06-19,16.00,16.00,15.69,15.75,30256800,0.54 +1997-06-18,16.12,16.25,15.75,15.94,27412000,0.54 +1997-06-17,15.56,16.50,15.50,16.34,35562800,0.56 +1997-06-16,15.87,15.87,15.38,15.50,33502000,0.53 +1997-06-13,16.06,16.12,15.75,15.81,33017600,0.54 +1997-06-12,16.37,16.37,16.00,16.06,19672800,0.55 +1997-06-11,16.31,16.44,16.25,16.31,26350800,0.56 +1997-06-10,16.75,16.75,16.06,16.25,34762000,0.55 +1997-06-09,16.69,16.94,16.62,16.62,18701200,0.57 +1997-06-06,16.62,16.75,16.50,16.75,13218800,0.57 +1997-06-05,16.62,17.13,16.56,16.69,16153200,0.57 +1997-06-04,16.62,16.75,16.50,16.62,20101200,0.57 +1997-06-03,16.75,16.94,16.62,16.69,16310000,0.57 +1997-06-02,17.00,17.00,16.75,16.94,10396400,0.58 +1997-05-30,16.50,17.00,16.37,16.62,44332400,0.57 +1997-05-29,17.13,17.13,16.62,16.62,27795600,0.57 +1997-05-28,17.38,17.50,17.00,17.00,21884800,0.58 +1997-05-27,16.75,17.38,16.75,17.25,20521200,0.59 +1997-05-23,16.62,17.00,16.62,16.88,16758000,0.58 +1997-05-22,16.75,16.88,16.50,16.62,19191200,0.57 +1997-05-21,17.13,17.13,16.50,16.88,30562000,0.58 +1997-05-20,17.00,17.44,16.75,17.25,21207200,0.59 +1997-05-19,17.50,17.62,17.00,17.00,13064800,0.58 +1997-05-16,17.50,17.62,17.25,17.25,23324000,0.59 +1997-05-15,17.75,18.00,17.50,17.75,24752000,0.61 +1997-05-14,17.87,18.00,17.50,17.69,33910800,0.60 +1997-05-13,17.50,17.87,17.00,17.56,49254800,0.60 +1997-05-12,17.25,17.62,17.00,17.56,41244000,0.60 +1997-05-09,17.00,17.50,17.00,17.06,47093200,0.58 +1997-05-08,16.62,17.13,16.50,17.00,20734000,0.58 +1997-05-07,16.88,17.00,16.37,16.50,28554400,0.56 +1997-05-06,17.00,17.13,16.75,16.88,20787200,0.58 +1997-05-05,17.00,17.13,16.75,17.00,24623200,0.58 +1997-05-02,17.00,17.13,16.75,17.00,25496800,0.58 +1997-05-01,16.88,17.13,16.75,17.00,18085200,0.58 +1997-04-30,17.00,17.25,16.75,17.00,64408400,0.58 +1997-04-29,18.00,18.00,17.50,17.69,12938800,0.60 +1997-04-28,17.75,17.87,17.50,17.62,11692800,0.60 +1997-04-25,17.62,17.87,17.38,17.50,21845600,0.60 +1997-04-24,18.50,18.50,17.75,17.87,18734800,0.61 +1997-04-23,18.38,18.50,18.12,18.12,13622000,0.62 +1997-04-22,18.12,18.50,17.87,18.50,23662800,0.63 +1997-04-21,18.63,18.63,18.00,18.00,22288000,0.61 +1997-04-18,19.13,19.13,18.38,18.38,35361200,0.63 +1997-04-17,18.25,19.13,18.12,19.00,54866000,0.65 +1997-04-16,18.63,19.00,18.38,18.56,21554400,0.63 +1997-04-15,19.13,19.25,18.12,18.44,34011600,0.63 +1997-04-14,18.38,18.88,18.00,18.75,28089600,0.64 +1997-04-11,18.88,18.88,18.12,18.25,19891200,0.62 +1997-04-10,19.00,19.13,18.50,18.88,29246000,0.64 +1997-04-09,19.25,19.25,18.88,19.00,61247200,0.65 +1997-04-08,19.62,19.62,18.63,19.13,48456800,0.65 +1997-04-07,19.75,19.87,19.25,19.50,63814800,0.67 +1997-04-04,19.13,19.62,19.00,19.25,118812400,0.66 +1997-04-03,18.50,19.13,18.25,18.88,137214000,0.64 +1997-04-02,17.87,18.06,17.62,18.00,55608000,0.61 +1997-04-01,17.62,17.81,17.38,17.50,55064800,0.60 +1997-03-31,18.63,19.37,17.25,18.25,242561200,0.62 +1997-03-27,17.50,19.25,17.25,18.63,284726400,0.64 +1997-03-26,16.37,16.88,16.25,16.75,26709200,0.57 +1997-03-25,16.62,16.62,16.08,16.50,28140000,0.56 +1997-03-24,16.50,16.62,16.25,16.50,17805200,0.56 +1997-03-21,17.50,17.50,16.37,16.62,34115200,0.57 +1997-03-20,16.00,17.50,15.87,17.25,79259600,0.59 +1997-03-19,16.37,16.37,15.87,16.12,52057600,0.55 +1997-03-18,16.37,16.50,16.12,16.25,31768800,0.55 +1997-03-17,16.25,16.50,16.00,16.50,48188000,0.56 +1997-03-14,16.37,16.75,16.25,16.56,57604400,0.57 +1997-03-13,16.37,16.37,16.12,16.37,26272400,0.56 +1997-03-12,16.25,16.75,16.12,16.25,17749200,0.55 +1997-03-11,16.62,16.62,16.00,16.37,24626000,0.56 +1997-03-10,16.62,16.75,16.44,16.62,24796800,0.57 +1997-03-07,16.75,16.75,16.37,16.50,17654000,0.56 +1997-03-06,17.00,17.00,16.50,16.62,29072400,0.57 +1997-03-05,16.62,17.00,16.50,17.00,24040800,0.58 +1997-03-04,16.25,16.50,16.00,16.50,25799200,0.56 +1997-03-03,16.50,16.50,16.00,16.12,32614400,0.55 +1997-02-28,16.88,16.88,16.25,16.25,30469600,0.55 +1997-02-27,17.00,17.13,16.75,17.00,25748800,0.58 +1997-02-26,17.00,17.13,16.75,17.13,25793600,0.58 +1997-02-25,17.00,17.38,16.88,16.88,34521200,0.58 +1997-02-24,16.25,16.88,16.25,16.62,29397200,0.57 +1997-02-21,16.88,17.00,16.00,16.37,52771600,0.56 +1997-02-20,17.62,17.62,17.00,17.00,31236800,0.58 +1997-02-19,17.87,17.87,17.13,17.62,60323200,0.60 +1997-02-18,16.62,17.87,16.25,17.87,92069600,0.61 +1997-02-14,16.25,16.37,16.00,16.31,59312400,0.56 +1997-02-13,15.75,16.12,15.50,16.12,48958000,0.55 +1997-02-12,15.75,15.87,15.50,15.75,44066400,0.54 +1997-02-11,15.87,16.00,15.50,15.69,35019600,0.54 +1997-02-10,16.12,16.12,15.63,15.63,46351200,0.53 +1997-02-07,16.50,16.50,15.75,15.81,58816800,0.54 +1997-02-06,15.25,16.12,15.25,16.00,99876000,0.55 +1997-02-05,15.25,15.63,15.25,15.25,98621600,0.52 +1997-02-04,16.25,16.37,15.13,15.38,178161200,0.52 +1997-02-03,16.88,17.00,16.25,16.31,92027600,0.56 +1997-01-31,16.62,16.62,16.50,16.62,49907200,0.57 +1997-01-30,16.75,16.75,16.50,16.75,34983200,0.57 +1997-01-29,16.62,16.75,16.50,16.62,37926000,0.57 +1997-01-28,17.00,17.00,16.50,16.62,52640000,0.57 +1997-01-27,17.13,17.25,16.62,16.62,53510800,0.57 +1997-01-24,17.25,17.25,16.88,16.88,47070800,0.58 +1997-01-23,17.25,17.38,17.13,17.25,43086400,0.59 +1997-01-22,17.38,17.50,17.00,17.19,51405200,0.59 +1997-01-21,17.00,17.25,16.88,17.25,71206800,0.59 +1997-01-20,16.88,17.13,16.75,16.94,72906400,0.58 +1997-01-17,16.75,17.13,16.62,16.75,81286800,0.57 +1997-01-16,17.13,17.13,16.62,16.75,167826400,0.57 +1997-01-15,18.00,18.00,17.13,17.25,108273200,0.59 +1997-01-14,18.38,18.38,17.75,17.87,63943600,0.61 +1997-01-13,18.50,18.50,18.12,18.12,76437200,0.62 +1997-01-10,17.62,18.25,17.62,18.25,88429600,0.62 +1997-01-09,17.75,17.87,17.50,17.75,111664000,0.61 +1997-01-08,18.25,18.38,17.38,17.62,275032800,0.60 +1997-01-07,18.12,18.25,17.50,17.50,244232800,0.60 +1997-01-06,17.62,18.34,17.25,17.87,470708000,0.61 +1997-01-03,21.12,22.25,21.00,21.75,29929200,0.74 +1997-01-02,21.12,21.25,20.75,21.00,35778400,0.72 +1996-12-31,21.37,21.50,20.75,20.88,95936400,0.71 +1996-12-30,23.12,23.25,21.75,21.75,65450000,0.74 +1996-12-27,22.87,23.75,22.87,23.12,34249600,0.79 +1996-12-26,23.25,23.25,22.87,23.00,21221200,0.79 +1996-12-24,23.25,23.37,22.87,23.12,14403200,0.79 +1996-12-23,24.00,24.25,23.25,23.25,83076000,0.79 +1996-12-20,22.50,23.62,21.37,23.50,136609200,0.80 +1996-12-19,23.00,23.25,22.25,22.25,34221600,0.76 +1996-12-18,22.75,23.12,22.63,23.12,51268000,0.79 +1996-12-17,22.38,22.50,22.25,22.50,39312000,0.77 +1996-12-16,23.50,23.50,22.50,22.63,37310000,0.77 +1996-12-13,23.75,23.88,23.25,23.25,22274000,0.79 +1996-12-12,24.13,24.25,23.88,23.88,21750400,0.82 +1996-12-11,23.75,24.25,23.75,24.00,40840800,0.82 +1996-12-10,24.87,25.00,24.25,24.50,46071200,0.84 +1996-12-09,25.25,25.38,24.81,25.00,39662000,0.85 +1996-12-06,24.38,25.38,24.00,25.12,57346800,0.86 +1996-12-05,25.00,25.25,25.00,25.00,35534800,0.85 +1996-12-04,25.12,25.38,24.87,25.00,47706400,0.85 +1996-12-03,25.25,25.50,25.00,25.12,68882800,0.86 +1996-12-02,24.13,25.12,23.88,25.12,43744400,0.86 +1996-11-29,24.50,24.62,24.00,24.13,10572800,0.82 +1996-11-27,24.13,24.62,24.13,24.50,22260000,0.84 +1996-11-26,24.87,25.00,24.00,24.25,28246400,0.83 +1996-11-25,25.38,25.50,25.00,25.00,19737200,0.85 +1996-11-22,24.50,25.25,24.50,25.25,25995200,0.86 +1996-11-21,24.87,25.00,24.38,24.50,17651200,0.84 +1996-11-20,24.87,25.38,24.87,25.00,25774000,0.85 +1996-11-19,24.87,25.12,24.62,24.87,31108000,0.85 +1996-11-18,25.00,25.12,24.50,24.75,38208800,0.84 +1996-11-15,25.88,26.00,25.00,25.00,32678800,0.85 +1996-11-14,25.50,25.75,25.38,25.63,12132400,0.87 +1996-11-13,25.38,25.88,25.00,25.56,20902000,0.87 +1996-11-12,26.13,26.25,25.12,25.25,35739200,0.86 +1996-11-11,26.37,26.37,25.88,26.00,23133600,0.89 +1996-11-08,25.88,26.25,25.75,26.25,47177200,0.90 +1996-11-07,25.38,26.00,25.25,25.88,38768800,0.88 +1996-11-06,25.63,25.75,24.87,25.50,45077200,0.87 +1996-11-05,24.50,25.88,24.50,25.50,94528000,0.87 +1996-11-04,24.38,24.50,23.75,24.38,22817200,0.83 +1996-11-01,23.37,24.25,23.12,24.25,52833200,0.83 +1996-10-31,23.25,23.37,22.25,23.00,48554800,0.79 +1996-10-30,23.50,24.00,22.87,22.87,64262800,0.78 +1996-10-29,24.62,24.75,23.12,23.25,49907200,0.79 +1996-10-28,25.12,25.12,24.50,24.50,29999200,0.84 +1996-10-25,24.87,25.00,24.50,24.50,19390000,0.84 +1996-10-24,25.00,25.00,24.50,24.75,21092400,0.84 +1996-10-23,24.75,25.25,24.38,24.75,40014800,0.84 +1996-10-22,25.63,25.63,24.25,24.87,53429600,0.85 +1996-10-21,26.50,26.62,25.50,25.63,46902800,0.87 +1996-10-18,26.50,26.62,26.00,26.56,95664800,0.91 +1996-10-17,27.50,27.75,26.37,26.37,256656400,0.90 +1996-10-16,25.25,26.13,24.62,25.75,83686400,0.88 +1996-10-15,25.75,25.88,25.00,25.25,90764800,0.86 +1996-10-14,24.50,25.38,24.25,25.25,67421200,0.86 +1996-10-11,24.38,24.62,24.00,24.25,30172800,0.83 +1996-10-10,23.88,24.50,23.75,24.19,69174000,0.83 +1996-10-09,23.37,23.62,22.87,23.00,21302400,0.79 +1996-10-08,23.50,24.25,23.25,23.25,47608400,0.79 +1996-10-07,23.00,23.37,22.87,23.12,23928800,0.79 +1996-10-04,22.87,23.12,22.13,22.81,33364800,0.78 +1996-10-03,23.62,23.75,22.38,22.38,56929600,0.76 +1996-10-02,23.62,24.62,23.12,23.62,69204800,0.81 +1996-10-01,22.00,24.75,22.00,24.62,134811600,0.84 +1996-09-30,22.13,22.38,22.13,22.19,21361200,0.76 +1996-09-27,22.25,22.38,22.13,22.31,20392400,0.76 +1996-09-26,22.38,22.50,22.25,22.38,25821600,0.76 +1996-09-25,22.50,22.63,22.00,22.38,27260800,0.76 +1996-09-24,22.38,22.87,22.38,22.50,35946400,0.77 +1996-09-23,22.87,22.87,22.38,22.38,11440800,0.76 +1996-09-20,23.37,23.50,22.75,22.87,37287600,0.78 +1996-09-19,23.62,23.62,23.37,23.37,29867600,0.80 +1996-09-18,23.00,24.13,22.87,23.50,88340000,0.80 +1996-09-17,22.87,23.12,22.50,23.00,52292800,0.79 +1996-09-16,21.50,23.00,21.37,22.38,61163200,0.76 +1996-09-13,20.38,21.25,20.38,21.00,41652800,0.72 +1996-09-12,21.00,21.12,20.25,20.38,65228800,0.70 +1996-09-11,21.50,21.75,21.00,21.12,36800400,0.72 +1996-09-10,22.13,22.13,21.50,21.50,38928400,0.73 +1996-09-09,22.63,22.75,21.88,22.00,37060800,0.75 +1996-09-06,23.12,23.25,22.63,23.00,60208400,0.79 +1996-09-05,23.50,23.75,22.87,22.87,69896400,0.78 +1996-09-04,23.88,24.62,23.88,24.13,25362400,0.82 +1996-09-03,24.13,24.38,23.88,24.13,17074400,0.82 +1996-08-30,24.75,24.75,24.25,24.25,26432000,0.83 +1996-08-29,24.87,24.87,24.38,24.50,26731600,0.84 +1996-08-28,24.87,25.00,24.50,24.87,40899600,0.85 +1996-08-27,24.13,25.00,24.00,24.86,72326800,0.85 +1996-08-26,23.88,24.13,23.50,24.13,22419600,0.82 +1996-08-23,23.00,24.00,23.00,23.88,50864800,0.82 +1996-08-22,23.00,23.25,22.87,23.25,21921200,0.79 +1996-08-21,23.50,23.62,22.87,23.00,28336000,0.79 +1996-08-20,23.88,23.88,23.37,23.50,52939600,0.80 +1996-08-19,22.38,23.62,22.38,23.62,56579600,0.81 +1996-08-16,22.63,22.63,22.13,22.50,35439600,0.77 +1996-08-15,22.63,22.75,22.25,22.25,26905200,0.76 +1996-08-14,22.63,23.00,22.63,22.75,17964800,0.78 +1996-08-13,22.87,23.12,22.38,22.50,25877600,0.77 +1996-08-12,23.37,23.62,22.38,23.00,37836400,0.79 +1996-08-09,22.25,23.37,22.13,23.12,57696800,0.79 +1996-08-08,22.38,22.38,21.88,22.13,25379200,0.76 +1996-08-07,21.75,22.63,21.62,22.38,62115200,0.76 +1996-08-06,21.00,21.50,20.75,21.50,23396800,0.73 +1996-08-05,21.62,21.88,20.88,21.00,25253200,0.72 +1996-08-02,21.62,22.00,21.25,21.62,31987200,0.74 +1996-08-01,22.00,22.00,21.12,21.25,27540800,0.73 +1996-07-31,21.25,22.00,21.25,22.00,23195200,0.75 +1996-07-30,22.63,22.75,21.25,21.37,47350800,0.73 +1996-07-29,22.00,22.50,21.75,22.25,48924400,0.76 +1996-07-26,21.50,22.00,21.12,22.00,30920400,0.75 +1996-07-25,21.12,21.37,20.75,21.00,28607600,0.72 +1996-07-24,20.00,21.00,19.87,20.81,66018400,0.71 +1996-07-23,20.50,20.63,20.25,20.50,32530400,0.70 +1996-07-22,20.88,20.88,20.00,20.25,38052000,0.69 +1996-07-19,20.88,21.00,20.75,20.75,66494400,0.71 +1996-07-18,21.50,21.75,20.36,20.88,224263200,0.71 +1996-07-17,17.38,17.50,16.62,16.88,58399600,0.58 +1996-07-16,17.38,17.38,16.00,16.88,72304400,0.58 +1996-07-15,18.12,18.12,17.13,17.19,33306000,0.59 +1996-07-12,18.38,18.38,17.25,18.06,67247600,0.62 +1996-07-11,18.75,18.88,17.38,17.87,72788800,0.61 +1996-07-10,19.13,19.50,18.75,18.75,42347200,0.64 +1996-07-09,19.50,19.62,19.00,19.00,46956000,0.65 +1996-07-08,19.62,19.87,19.00,19.13,47227600,0.65 +1996-07-05,19.37,19.75,19.25,19.50,26538400,0.67 +1996-07-03,20.38,20.38,19.37,19.37,72153200,0.66 +1996-07-02,21.37,21.50,21.00,21.00,22251600,0.72 +1996-07-01,21.12,21.50,21.00,21.50,32995200,0.73 +1996-06-28,20.88,21.00,20.63,21.00,28921200,0.72 +1996-06-27,20.00,21.00,19.75,20.63,57310400,0.70 +1996-06-26,20.63,20.75,19.62,19.87,101082800,0.68 +1996-06-25,22.13,22.25,20.38,20.63,61740000,0.70 +1996-06-24,22.63,22.63,22.13,22.25,30690800,0.76 +1996-06-21,22.87,22.87,22.38,22.63,40462800,0.77 +1996-06-20,23.37,23.37,22.50,22.75,36772400,0.78 +1996-06-19,23.12,23.37,22.63,23.12,33616800,0.79 +1996-06-18,23.62,23.75,22.63,22.75,55806800,0.78 +1996-06-17,24.13,24.13,23.62,23.62,28232400,0.81 +1996-06-14,24.75,24.75,23.88,23.94,36240400,0.82 +1996-06-13,24.38,24.92,24.00,24.62,47854800,0.84 +1996-06-12,24.50,24.50,24.00,24.25,37979200,0.83 +1996-06-11,24.25,24.25,24.00,24.00,38264800,0.82 +1996-06-10,24.38,24.50,24.00,24.13,26591600,0.82 +1996-06-07,24.00,24.38,23.50,24.38,66942400,0.83 +1996-06-06,25.00,25.25,24.13,24.25,90524000,0.83 +1996-06-05,25.38,25.50,24.25,25.12,127526000,0.86 +1996-06-04,24.00,24.38,23.88,24.19,190559600,0.83 +1996-06-03,25.88,26.00,24.75,24.75,31365600,0.84 +1996-05-31,25.63,26.62,25.50,26.13,40661600,0.89 +1996-05-30,24.87,25.75,24.75,25.50,25866400,0.87 +1996-05-29,26.25,26.25,24.75,24.87,54880000,0.85 +1996-05-28,26.75,27.25,26.37,26.37,25463200,0.90 +1996-05-24,26.25,26.87,26.13,26.75,28310800,0.91 +1996-05-23,26.13,26.62,25.75,26.25,31012800,0.90 +1996-05-22,27.38,27.38,25.75,26.06,50470000,0.89 +1996-05-21,28.00,28.12,27.12,27.12,28596400,0.93 +1996-05-20,27.88,28.12,27.63,27.94,21128800,0.95 +1996-05-17,28.37,28.37,27.50,27.63,30825200,0.94 +1996-05-16,28.25,28.62,27.88,28.37,32519200,0.97 +1996-05-15,27.88,28.88,27.75,28.50,73091200,0.97 +1996-05-14,27.75,28.00,27.50,27.50,49406000,0.94 +1996-05-13,27.12,27.63,26.62,27.06,46754400,0.92 +1996-05-10,26.25,27.38,26.00,27.25,27647200,0.93 +1996-05-09,26.37,26.50,25.75,26.13,24519600,0.89 +1996-05-08,27.25,27.25,25.63,26.75,46698400,0.91 +1996-05-07,26.37,27.38,26.25,26.87,88384800,0.92 +1996-05-06,24.87,25.88,24.75,25.63,72371600,0.87 +1996-05-03,24.13,24.13,23.50,23.88,27115200,0.82 +1996-05-02,24.50,24.50,23.50,23.75,47076400,0.81 +1996-05-01,24.38,24.75,24.13,24.38,28176400,0.83 +1996-04-30,24.87,24.87,24.13,24.38,34165600,0.83 +1996-04-29,25.00,25.00,24.50,24.75,30262400,0.84 +1996-04-26,25.00,25.12,24.62,24.75,47216400,0.84 +1996-04-25,24.38,24.87,24.13,24.87,43601600,0.85 +1996-04-24,24.62,24.75,24.19,24.25,32085200,0.83 +1996-04-23,25.12,25.25,24.62,24.75,42487200,0.84 +1996-04-22,25.25,25.50,24.87,25.12,27778800,0.86 +1996-04-19,24.62,25.12,24.62,25.06,25449200,0.86 +1996-04-18,25.38,25.39,24.25,24.75,54311600,0.84 +1996-04-17,25.88,26.00,25.12,25.25,21352800,0.86 +1996-04-16,25.88,26.00,25.63,25.88,25354000,0.88 +1996-04-15,25.50,25.75,25.00,25.75,38519600,0.88 +1996-04-12,25.88,25.88,25.38,25.50,20358800,0.87 +1996-04-11,26.13,26.25,25.50,25.75,24567200,0.88 +1996-04-10,26.13,26.50,25.88,26.00,43691200,0.89 +1996-04-09,24.87,26.50,24.38,26.00,58769200,0.89 +1996-04-08,23.88,24.50,23.75,24.38,42207200,0.83 +1996-04-04,24.62,24.62,24.00,24.13,21512400,0.82 +1996-04-03,25.12,25.12,24.33,24.56,18060000,0.84 +1996-04-02,25.63,25.63,24.87,25.00,25359600,0.85 +1996-04-01,25.12,25.88,24.52,25.50,39659200,0.87 +1996-03-29,24.25,24.75,23.75,24.56,41630400,0.84 +1996-03-28,24.75,25.63,24.13,24.19,73973200,0.83 +1996-03-27,23.25,25.25,23.00,25.25,107324000,0.86 +1996-03-26,24.00,24.50,23.62,23.88,40199600,0.82 +1996-03-25,25.50,25.75,24.00,24.00,41092800,0.82 +1996-03-22,25.25,25.38,24.87,25.38,26891200,0.87 +1996-03-21,25.50,25.50,25.00,25.12,27496000,0.86 +1996-03-20,25.75,25.75,25.12,25.25,28996800,0.86 +1996-03-19,26.37,26.50,25.63,25.75,31091200,0.88 +1996-03-18,25.94,26.13,25.75,26.13,27283200,0.89 +1996-03-15,26.00,26.00,25.50,25.88,25345600,0.88 +1996-03-14,25.88,25.88,25.50,25.63,23340800,0.87 +1996-03-13,25.88,26.13,25.63,25.75,24920000,0.88 +1996-03-12,26.00,26.37,25.63,25.81,24038000,0.88 +1996-03-11,26.25,26.37,25.75,25.88,31752000,0.88 +1996-03-08,25.75,26.25,25.00,26.00,37251200,0.89 +1996-03-07,26.25,26.37,25.38,25.81,65016000,0.88 +1996-03-06,26.75,26.87,26.13,26.19,24763200,0.89 +1996-03-05,26.50,26.75,26.25,26.62,29610000,0.91 +1996-03-04,27.25,27.38,26.25,26.25,46888800,0.90 +1996-03-01,27.63,27.63,26.62,26.87,57783600,0.92 +1996-02-29,27.50,27.75,27.25,27.50,28221200,0.94 +1996-02-28,28.88,28.88,27.63,27.75,46978400,0.95 +1996-02-27,29.87,29.87,28.50,28.62,37290400,0.98 +1996-02-26,30.00,30.12,29.50,29.50,29570800,1.01 +1996-02-23,29.87,30.25,29.63,29.87,43321600,1.02 +1996-02-22,30.00,30.12,29.63,29.87,46046000,1.02 +1996-02-21,29.38,29.75,29.13,29.63,55459600,1.01 +1996-02-20,28.00,29.50,28.00,29.00,94228400,0.99 +1996-02-16,28.12,28.37,27.50,27.50,39110400,0.94 +1996-02-15,27.63,28.12,27.38,28.00,30520000,0.96 +1996-02-14,28.25,28.25,27.44,27.63,40796000,0.94 +1996-02-13,28.00,28.88,27.88,28.12,57125600,0.96 +1996-02-12,28.12,28.50,28.00,28.37,48568800,0.97 +1996-02-09,27.88,28.50,27.63,27.75,51422000,0.95 +1996-02-08,27.50,28.12,27.50,27.88,65791600,0.95 +1996-02-07,29.75,29.75,27.75,28.25,90081600,0.96 +1996-02-06,29.25,30.00,29.25,29.63,56554400,1.01 +1996-02-05,29.69,29.75,29.00,29.25,79682400,1.00 +1996-02-02,28.88,29.63,28.75,29.25,138994800,1.00 +1996-02-01,27.50,28.37,27.50,28.37,83260800,0.97 +1996-01-31,27.75,28.00,27.38,27.63,82014800,0.94 +1996-01-30,27.00,28.12,26.86,27.31,155710800,0.93 +1996-01-29,29.00,29.75,28.75,29.13,83148800,0.99 +1996-01-26,30.37,31.25,28.62,30.62,183937600,1.05 +1996-01-25,31.75,32.00,30.12,30.25,111300000,1.03 +1996-01-24,32.12,32.25,31.75,32.25,163973600,1.10 +1996-01-23,33.75,34.00,31.00,31.62,247072000,1.08 +1996-01-22,29.75,31.00,29.25,30.50,124936000,1.04 +1996-01-19,31.00,31.75,29.38,29.87,207306400,1.02 +1996-01-18,32.88,33.37,30.37,31.94,174596800,1.09 +1996-01-17,34.38,34.38,33.75,34.00,59102400,1.16 +1996-01-16,34.38,34.75,33.62,34.56,88228000,1.18 +1996-01-15,33.75,34.50,33.37,34.12,90770400,1.16 +1996-01-12,34.75,34.75,33.25,33.87,100464000,1.16 +1996-01-11,32.63,35.00,32.38,35.00,189184800,1.19 +1996-01-10,32.50,34.75,32.25,34.25,91358400,1.17 +1996-01-09,34.63,34.63,32.75,32.75,62804000,1.12 +1996-01-08,34.50,35.50,34.00,34.63,30335200,1.18 +1996-01-05,31.62,34.25,31.38,34.25,111482000,1.17 +1996-01-04,32.38,32.38,31.38,31.56,75045600,1.08 +1996-01-03,32.00,32.88,31.87,32.12,107458400,1.10 +1996-01-02,32.25,32.25,31.75,32.12,34823600,1.10 +1995-12-29,32.00,32.38,31.62,31.87,76034000,1.09 +1995-12-28,32.12,32.75,31.87,32.00,62498800,1.09 +1995-12-27,32.12,33.37,31.87,32.38,67141200,1.11 +1995-12-26,32.50,32.50,31.75,32.06,34876800,1.09 +1995-12-22,32.63,32.88,32.12,32.25,58665600,1.10 +1995-12-21,32.75,32.75,31.62,32.50,83218800,1.11 +1995-12-20,33.50,33.62,32.50,32.63,91434000,1.11 +1995-12-19,32.75,33.25,32.25,32.75,107716000,1.12 +1995-12-18,35.12,35.25,31.87,32.25,166633600,1.10 +1995-12-15,35.50,36.63,34.38,35.25,181720000,1.20 +1995-12-14,38.87,39.38,38.00,38.25,83375600,1.31 +1995-12-13,38.25,39.00,36.75,38.38,171225600,1.31 +1995-12-12,38.62,38.62,38.00,38.00,44388400,1.30 +1995-12-11,39.50,39.63,38.38,38.62,27913200,1.32 +1995-12-08,38.75,39.38,37.88,39.38,35338800,1.34 +1995-12-07,38.75,38.75,37.88,38.56,35481600,1.32 +1995-12-06,39.75,39.88,38.38,38.75,50276800,1.32 +1995-12-05,38.50,39.88,38.25,39.50,90899200,1.35 +1995-12-04,40.13,40.13,39.00,39.50,120170400,1.35 +1995-12-01,38.00,38.25,37.12,37.62,51052400,1.28 +1995-11-30,38.87,39.00,38.00,38.13,43713600,1.30 +1995-11-29,40.13,40.13,39.00,39.25,26317200,1.34 +1995-11-28,39.38,40.13,39.25,40.00,44072000,1.37 +1995-11-27,40.62,40.62,39.38,39.38,28968800,1.34 +1995-11-24,38.87,40.37,38.75,40.19,27487600,1.37 +1995-11-22,38.62,39.25,38.50,38.62,24701600,1.32 +1995-11-21,38.75,38.75,37.88,38.62,47902400,1.32 +1995-11-20,40.25,40.25,38.50,38.62,37114000,1.31 +1995-11-17,40.00,40.37,39.75,40.13,32132800,1.37 +1995-11-16,40.87,41.50,39.50,39.94,56557200,1.36 +1995-11-15,42.00,42.00,40.13,41.00,62034000,1.40 +1995-11-14,41.00,42.50,41.00,41.50,101819200,1.41 +1995-11-13,40.25,41.25,40.00,40.87,79343600,1.39 +1995-11-10,39.38,40.25,38.87,39.75,55778800,1.35 +1995-11-09,39.75,40.00,38.87,39.38,65027200,1.34 +1995-11-08,39.75,41.00,38.75,38.87,89706400,1.32 +1995-11-07,37.75,40.50,37.50,39.63,184097200,1.35 +1995-11-06,36.50,38.75,36.38,38.13,77943600,1.30 +1995-11-03,36.75,36.87,35.88,36.50,44858800,1.24 +1995-11-02,36.87,36.87,36.25,36.63,38189200,1.25 +1995-11-01,36.63,37.12,35.50,36.63,48308400,1.25 +1995-10-31,35.25,36.63,35.12,36.31,72304400,1.24 +1995-10-30,34.88,35.25,34.63,35.25,43909600,1.20 +1995-10-27,34.88,34.88,34.12,34.75,38553200,1.18 +1995-10-26,34.88,35.00,34.50,34.88,31466400,1.19 +1995-10-25,35.25,35.37,34.75,34.75,33325600,1.18 +1995-10-24,35.50,35.50,34.88,35.12,53373600,1.20 +1995-10-23,35.12,35.12,34.75,35.12,49450800,1.20 +1995-10-20,35.25,35.25,34.63,35.12,96583200,1.20 +1995-10-19,35.88,36.13,34.75,34.75,236224800,1.18 +1995-10-18,37.00,39.56,36.75,37.37,128100000,1.27 +1995-10-17,36.50,36.87,35.88,36.63,44654400,1.25 +1995-10-16,36.25,37.00,35.88,36.13,45516800,1.23 +1995-10-13,35.75,36.87,35.50,36.00,58797200,1.23 +1995-10-12,35.00,35.37,34.75,35.31,40513200,1.20 +1995-10-11,35.25,35.62,34.12,34.88,83218800,1.19 +1995-10-10,34.38,35.00,33.62,34.69,100066400,1.18 +1995-10-09,35.37,35.75,34.38,34.81,93142000,1.18 +1995-10-06,36.75,37.00,35.62,35.69,77260400,1.21 +1995-10-05,36.25,36.63,35.88,36.50,61017600,1.24 +1995-10-04,36.63,37.00,36.00,36.38,66693200,1.24 +1995-10-03,38.13,38.50,37.12,37.62,72455600,1.28 +1995-10-02,37.75,38.50,37.50,37.62,98000000,1.28 +1995-09-29,38.00,38.25,36.87,37.25,70854000,1.27 +1995-09-28,36.50,37.88,36.50,37.75,82796000,1.28 +1995-09-27,37.50,37.50,34.75,36.25,112809200,1.23 +1995-09-26,37.75,37.88,37.12,37.37,62725600,1.27 +1995-09-25,38.25,38.27,37.37,37.52,78803200,1.28 +1995-09-22,36.87,37.25,36.38,37.06,99660400,1.26 +1995-09-21,36.50,37.50,36.38,37.00,86833600,1.26 +1995-09-20,37.25,37.37,36.50,36.63,80452400,1.25 +1995-09-19,36.75,37.12,36.13,36.75,122505600,1.25 +1995-09-18,36.38,36.81,35.88,36.69,155372000,1.25 +1995-09-15,37.37,39.88,35.50,35.88,302990800,1.22 +1995-09-14,41.38,41.63,39.75,40.00,137639600,1.36 +1995-09-13,42.88,43.38,42.00,42.37,80687600,1.44 +1995-09-12,44.50,44.88,42.62,42.94,81564000,1.46 +1995-09-11,44.88,45.50,44.25,44.25,43122800,1.51 +1995-09-08,44.75,44.88,44.50,44.75,43694000,1.52 +1995-09-07,44.00,45.31,43.75,44.75,65581600,1.52 +1995-09-06,43.87,44.17,43.50,43.75,50190000,1.49 +1995-09-05,43.50,43.50,42.75,43.50,44993200,1.48 +1995-09-01,43.00,43.50,42.88,42.94,24595200,1.46 +1995-08-31,43.38,43.50,43.00,43.00,21966000,1.46 +1995-08-30,43.25,43.75,43.13,43.38,38368400,1.48 +1995-08-29,43.00,43.25,42.50,43.13,79265200,1.47 +1995-08-28,44.88,45.00,43.00,43.00,60760000,1.46 +1995-08-25,45.87,45.87,44.62,44.75,33586000,1.52 +1995-08-24,45.62,46.25,45.50,45.75,71982400,1.56 +1995-08-23,44.88,45.87,44.62,45.50,63450800,1.55 +1995-08-22,44.37,45.13,44.12,44.75,54261200,1.52 +1995-08-21,44.88,45.38,44.12,44.12,67944800,1.50 +1995-08-18,44.88,45.13,43.75,44.88,60289600,1.53 +1995-08-17,44.62,45.50,44.12,44.62,61723200,1.52 +1995-08-16,44.00,44.50,43.63,44.50,73158400,1.51 +1995-08-15,43.87,44.12,43.13,44.06,79466800,1.50 +1995-08-14,43.00,43.75,42.88,43.38,41851600,1.47 +1995-08-11,42.88,43.13,41.88,43.06,51732800,1.46 +1995-08-10,43.13,43.25,42.62,42.75,41006000,1.45 +1995-08-09,42.62,43.75,42.50,43.13,92254400,1.46 +1995-08-08,43.63,43.75,42.37,42.50,58648800,1.44 +1995-08-07,44.12,44.62,43.13,43.38,48440000,1.47 +1995-08-04,45.00,45.13,43.75,44.25,48078800,1.50 +1995-08-03,44.12,45.62,43.87,45.00,53482800,1.53 +1995-08-02,43.87,45.00,43.75,44.37,68782000,1.51 +1995-08-01,44.88,44.88,43.50,43.50,52729600,1.48 +1995-07-31,45.50,45.62,44.75,45.00,39631200,1.53 +1995-07-28,46.75,47.25,45.00,45.50,65234400,1.54 +1995-07-27,45.50,47.50,45.50,46.81,81295200,1.59 +1995-07-26,46.25,46.25,45.38,45.38,42862400,1.54 +1995-07-25,46.00,46.38,45.62,45.75,65881200,1.55 +1995-07-24,44.00,45.50,43.75,45.38,53656400,1.54 +1995-07-21,43.00,44.88,43.00,43.75,189470400,1.48 +1995-07-20,46.00,47.37,45.00,47.06,82818400,1.60 +1995-07-19,47.00,48.00,45.00,45.50,130258800,1.54 +1995-07-18,49.00,49.56,47.75,48.12,63658000,1.63 +1995-07-17,48.88,49.75,48.63,49.00,56540400,1.66 +1995-07-14,47.37,49.00,47.00,48.75,69482000,1.65 +1995-07-13,47.37,48.75,47.13,47.62,88082400,1.62 +1995-07-12,47.25,48.00,46.12,47.00,70952000,1.60 +1995-07-11,47.75,48.63,47.06,47.13,53673200,1.60 +1995-07-10,48.63,49.88,48.12,48.63,74482800,1.65 +1995-07-07,46.88,49.25,46.75,48.63,96779200,1.65 +1995-07-06,46.50,47.00,45.75,47.00,46023600,1.60 +1995-07-05,46.88,47.87,46.50,46.50,44265200,1.58 +1995-07-03,46.50,47.13,46.25,46.94,9847600,1.59 +1995-06-30,47.25,47.87,46.12,46.44,41372800,1.58 +1995-06-29,46.38,48.12,46.00,47.25,58139200,1.60 +1995-06-28,46.00,47.50,45.38,46.63,66589600,1.58 +1995-06-27,47.37,48.25,46.38,46.38,54275200,1.57 +1995-06-26,48.25,48.50,47.62,48.12,38194800,1.63 +1995-06-23,48.75,49.00,47.75,48.75,57990800,1.65 +1995-06-22,49.00,49.62,48.63,49.12,118479200,1.67 +1995-06-21,47.62,50.13,46.75,49.37,156503200,1.68 +1995-06-20,46.00,47.75,46.00,47.37,184632000,1.61 +1995-06-19,43.87,45.25,43.50,44.37,117384400,1.51 +1995-06-16,43.87,44.00,43.50,43.87,22302000,1.49 +1995-06-15,43.63,43.75,43.38,43.63,23189600,1.48 +1995-06-14,43.87,43.87,43.38,43.63,29512000,1.48 +1995-06-13,44.50,44.62,43.87,44.00,31486000,1.49 +1995-06-12,44.00,44.50,43.87,44.17,53029200,1.50 +1995-06-09,43.63,43.75,43.13,43.50,46656400,1.48 +1995-06-08,43.38,43.38,42.12,42.94,34034000,1.46 +1995-06-07,44.12,44.12,43.13,43.13,31130400,1.46 +1995-06-06,43.63,44.37,43.50,44.00,78817200,1.49 +1995-06-05,42.37,43.50,42.12,43.50,63663600,1.48 +1995-06-02,41.88,42.37,41.50,42.12,26423600,1.43 +1995-06-01,41.88,42.50,41.75,42.19,46681600,1.43 +1995-05-31,42.12,42.12,41.00,41.56,39883200,1.41 +1995-05-30,42.62,42.88,41.50,42.00,49095200,1.43 +1995-05-26,43.00,43.13,42.25,42.69,28638400,1.45 +1995-05-25,43.25,44.00,43.00,43.38,45715600,1.47 +1995-05-24,43.75,44.25,42.88,43.50,66166800,1.47 +1995-05-23,44.12,44.37,43.50,43.87,69165600,1.48 +1995-05-22,42.50,44.12,42.25,44.12,92971200,1.49 +1995-05-19,42.88,43.75,42.62,42.75,80648400,1.45 +1995-05-18,44.12,44.12,43.25,43.38,92892800,1.47 +1995-05-17,43.75,44.37,43.50,44.00,65786000,1.49 +1995-05-16,43.13,44.37,42.50,43.75,83129200,1.48 +1995-05-15,43.13,43.75,42.50,43.63,98338800,1.48 +1995-05-12,40.87,43.69,40.50,43.63,161988400,1.48 +1995-05-11,41.63,41.63,40.37,41.00,130905600,1.39 +1995-05-10,41.50,41.88,40.75,41.44,68768000,1.40 +1995-05-09,40.62,41.38,40.00,41.25,80732400,1.40 +1995-05-08,39.88,41.00,39.75,40.50,96742800,1.37 +1995-05-05,38.75,39.12,38.13,38.87,52001600,1.32 +1995-05-04,38.25,39.88,38.00,38.50,75910800,1.30 +1995-05-03,38.25,38.62,38.00,38.13,42196000,1.29 +1995-05-02,38.25,38.38,37.50,38.13,30002000,1.29 +1995-05-01,38.25,38.75,38.00,38.25,44489200,1.29 +1995-04-28,38.00,38.38,37.50,38.25,48829200,1.29 +1995-04-27,38.50,38.50,37.75,37.88,34966400,1.28 +1995-04-26,37.62,38.75,37.37,38.25,57610000,1.29 +1995-04-25,39.12,39.38,37.25,37.75,68409600,1.28 +1995-04-24,39.00,39.63,38.50,39.00,68059600,1.32 +1995-04-21,37.25,39.50,37.12,39.12,166656000,1.32 +1995-04-20,37.12,38.50,36.63,37.62,82376000,1.27 +1995-04-19,37.50,37.50,35.62,36.38,69857200,1.23 +1995-04-18,38.50,38.62,37.50,37.50,57783600,1.27 +1995-04-17,38.13,39.38,37.88,38.38,52203200,1.30 +1995-04-13,39.25,39.25,37.88,38.25,43590400,1.29 +1995-04-12,38.25,39.63,37.37,39.00,118678000,1.32 +1995-04-11,36.75,37.88,36.63,37.75,53628400,1.28 +1995-04-10,36.87,37.00,36.13,36.63,29450400,1.24 +1995-04-07,37.00,37.12,36.25,36.75,73931200,1.24 +1995-04-06,37.25,38.00,35.53,36.75,180706400,1.24 +1995-04-05,34.12,34.75,33.75,34.75,66214400,1.18 +1995-04-04,35.75,35.88,33.62,33.87,107049600,1.15 +1995-04-03,35.50,35.75,35.12,35.50,38575600,1.20 +1995-03-31,35.12,35.62,34.75,35.25,45810800,1.19 +1995-03-30,34.63,35.50,34.50,35.37,68353600,1.20 +1995-03-29,34.00,34.88,33.87,34.38,124219200,1.16 +1995-03-28,36.25,36.34,34.12,34.38,172449200,1.16 +1995-03-27,37.62,37.62,36.63,37.19,35700000,1.26 +1995-03-24,37.37,37.88,37.25,37.75,32029200,1.28 +1995-03-23,37.88,38.00,36.98,37.12,42523600,1.26 +1995-03-22,36.25,39.50,36.25,38.06,119786800,1.29 +1995-03-21,35.50,36.75,35.25,36.25,76342000,1.23 +1995-03-20,35.12,35.62,35.00,35.25,47471200,1.19 +1995-03-17,35.50,35.50,34.88,35.12,53911200,1.19 +1995-03-16,35.25,36.00,35.00,35.25,79184000,1.19 +1995-03-15,35.50,36.25,34.88,35.00,182742000,1.18 +1995-03-14,38.25,38.25,34.50,35.00,181966400,1.18 +1995-03-13,39.63,39.63,38.00,38.13,81438000,1.29 +1995-03-10,39.63,40.37,39.38,39.50,34353200,1.34 +1995-03-09,39.88,40.37,39.38,39.75,49170800,1.35 +1995-03-08,38.75,40.13,37.75,39.56,91218400,1.34 +1995-03-07,39.88,39.88,38.25,38.31,37696400,1.30 +1995-03-06,39.75,40.00,39.50,39.75,33180000,1.35 +1995-03-03,39.75,40.69,39.50,40.25,36442000,1.36 +1995-03-02,40.13,40.75,39.75,40.00,67186000,1.35 +1995-03-01,39.75,40.13,39.42,40.00,56112000,1.35 +1995-02-28,38.50,39.88,38.00,39.50,55742400,1.34 +1995-02-27,38.25,39.00,38.11,38.25,67202800,1.29 +1995-02-24,40.13,40.37,38.50,39.00,142203600,1.32 +1995-02-23,41.12,41.88,40.00,40.19,78677200,1.36 +1995-02-22,40.62,41.00,40.13,40.81,73354400,1.38 +1995-02-21,42.62,42.75,40.87,41.00,75395600,1.39 +1995-02-17,42.88,43.00,42.50,42.50,30447200,1.44 +1995-02-16,43.13,43.25,42.62,43.19,54695200,1.46 +1995-02-15,43.25,43.50,42.50,42.56,46118800,1.44 +1995-02-14,43.75,44.12,42.62,42.94,41403600,1.45 +1995-02-13,43.50,44.50,43.25,43.75,70842800,1.48 +1995-02-10,43.63,44.19,43.38,43.75,87740800,1.48 +1995-02-09,42.12,43.87,42.12,43.63,118848800,1.47 +1995-02-08,41.00,42.37,40.87,42.31,100716000,1.43 +1995-02-07,40.37,41.00,40.00,40.81,50400000,1.38 +1995-02-06,40.75,40.75,39.50,40.50,60757200,1.37 +1995-02-03,42.00,42.12,40.37,40.50,79802800,1.37 +1995-02-02,40.13,41.88,40.13,41.63,50895600,1.40 +1995-02-01,40.75,40.75,39.88,40.13,39592000,1.35 +1995-01-31,40.50,40.87,40.00,40.37,53194400,1.36 +1995-01-30,40.13,40.50,39.88,40.13,57646400,1.35 +1995-01-27,39.88,40.37,39.00,39.88,74642400,1.35 +1995-01-26,40.87,41.50,39.25,39.50,61597200,1.33 +1995-01-25,39.50,42.00,39.50,40.98,129267600,1.38 +1995-01-24,42.25,42.37,41.38,41.63,54524400,1.40 +1995-01-23,41.88,42.62,41.00,42.25,99635200,1.43 +1995-01-20,47.00,47.00,42.50,42.62,250090400,1.44 +1995-01-19,45.50,46.00,45.00,45.87,78573600,1.55 +1995-01-18,45.00,45.62,44.75,45.62,31914400,1.54 +1995-01-17,44.50,45.50,44.12,45.00,82527200,1.52 +1995-01-16,44.88,45.25,44.25,44.50,47244400,1.50 +1995-01-13,46.12,46.12,44.37,44.88,87844400,1.51 +1995-01-12,46.12,46.38,44.75,45.38,137944800,1.53 +1995-01-11,43.75,48.06,42.69,46.75,218456000,1.58 +1995-01-10,41.25,44.00,41.25,43.69,153697600,1.47 +1995-01-09,41.63,41.88,41.00,41.20,68521600,1.39 +1995-01-06,41.63,43.13,41.12,42.00,269155600,1.42 +1995-01-05,39.25,39.38,38.75,38.87,18410000,1.31 +1995-01-04,38.62,39.63,38.62,39.38,39670400,1.33 +1995-01-03,38.87,38.87,37.88,38.38,25967200,1.30 +1994-12-30,39.38,39.88,38.75,39.00,18272800,1.32 +1994-12-29,39.25,39.88,39.12,39.50,30335200,1.33 +1994-12-28,39.12,39.25,38.25,39.12,22290800,1.32 +1994-12-27,39.25,39.75,38.87,39.12,20479200,1.32 +1994-12-23,38.50,39.38,38.50,38.87,23472400,1.31 +1994-12-22,38.50,38.87,38.25,38.62,33269600,1.30 +1994-12-21,37.88,38.50,37.50,38.38,39359600,1.30 +1994-12-20,39.12,39.25,38.38,38.50,43786400,1.30 +1994-12-19,37.25,39.38,37.25,39.12,83204800,1.32 +1994-12-16,37.25,37.75,36.75,37.25,44945600,1.26 +1994-12-15,38.00,38.38,36.87,37.12,56898800,1.25 +1994-12-14,36.50,38.13,36.50,37.88,77856800,1.28 +1994-12-13,36.63,36.94,36.25,36.38,29800400,1.23 +1994-12-12,36.38,36.75,35.50,36.50,56019600,1.23 +1994-12-09,35.88,36.38,34.75,36.25,65181200,1.22 +1994-12-08,36.87,37.00,35.75,35.88,42464800,1.21 +1994-12-07,37.50,37.81,36.06,36.63,34325200,1.24 +1994-12-06,37.00,38.38,36.87,37.56,59522400,1.27 +1994-12-05,36.50,37.37,36.13,37.19,45068800,1.26 +1994-12-02,36.50,36.75,35.62,36.56,43064000,1.23 +1994-12-01,37.00,37.62,36.00,36.19,77330400,1.22 +1994-11-30,38.38,39.38,37.00,37.25,78008000,1.26 +1994-11-29,38.00,38.50,37.75,38.25,36033200,1.29 +1994-11-28,37.62,38.25,37.31,37.81,34669600,1.28 +1994-11-25,36.87,37.75,36.75,37.75,21056000,1.27 +1994-11-23,37.00,37.88,36.38,36.87,81953200,1.24 +1994-11-22,37.75,39.12,37.25,37.37,56084000,1.26 +1994-11-21,40.00,40.25,38.00,38.13,50649200,1.29 +1994-11-18,40.00,40.50,39.63,40.00,36758400,1.35 +1994-11-17,40.87,41.00,39.88,40.00,37609600,1.35 +1994-11-16,40.75,41.56,40.62,40.94,46849600,1.38 +1994-11-15,42.50,43.00,41.25,41.38,41904800,1.39 +1994-11-14,41.25,42.75,41.25,42.50,34907600,1.43 +1994-11-11,41.25,41.50,41.00,41.12,15568000,1.38 +1994-11-10,41.75,41.88,41.00,41.31,38245200,1.39 +1994-11-09,42.75,43.00,41.00,41.63,101584000,1.40 +1994-11-08,40.62,42.62,40.25,42.25,87242400,1.42 +1994-11-07,40.37,41.25,40.13,40.75,28260400,1.37 +1994-11-04,41.50,41.63,40.00,40.37,48011600,1.36 +1994-11-03,41.75,42.00,41.00,41.50,27630400,1.40 +1994-11-02,43.13,43.25,41.38,41.38,54686800,1.39 +1994-11-01,42.88,43.48,42.37,43.13,54524400,1.45 +1994-10-31,42.00,43.38,41.50,43.19,88975600,1.45 +1994-10-28,42.37,42.88,41.75,42.12,68331200,1.42 +1994-10-27,43.25,43.75,42.50,42.75,39852400,1.44 +1994-10-26,42.62,43.27,42.62,43.25,49193200,1.46 +1994-10-25,41.63,42.62,41.50,42.62,75370400,1.43 +1994-10-24,42.75,43.13,41.88,42.25,51125200,1.42 +1994-10-21,40.75,42.75,40.75,42.62,80676400,1.43 +1994-10-20,41.25,41.81,40.50,41.00,54535600,1.38 +1994-10-19,41.00,42.12,41.00,41.25,87771600,1.39 +1994-10-18,40.62,41.63,40.50,41.25,117171600,1.39 +1994-10-17,40.87,41.50,38.87,39.75,75997600,1.34 +1994-10-14,41.50,42.00,40.87,41.12,44013200,1.38 +1994-10-13,42.62,42.88,40.62,41.12,131325600,1.38 +1994-10-12,39.63,42.62,39.12,42.12,149329600,1.42 +1994-10-11,41.38,41.88,39.38,39.63,210576800,1.33 +1994-10-10,37.12,39.63,37.00,38.87,130852400,1.31 +1994-10-07,36.13,37.06,35.50,37.00,91098000,1.25 +1994-10-06,37.37,37.48,36.00,36.25,131728800,1.22 +1994-10-05,33.62,38.13,33.37,37.88,177450000,1.27 +1994-10-04,33.25,34.00,33.00,33.75,40597200,1.14 +1994-10-03,33.62,33.75,32.50,33.13,32398800,1.11 +1994-09-30,34.12,34.50,33.62,33.69,17925600,1.13 +1994-09-29,33.75,34.38,33.37,34.12,27344800,1.15 +1994-09-28,34.00,34.38,33.62,33.87,20316800,1.14 +1994-09-27,33.75,34.12,33.37,33.87,27272000,1.14 +1994-09-26,33.87,34.50,33.62,33.94,35425600,1.14 +1994-09-23,33.87,34.50,33.87,33.94,33219200,1.14 +1994-09-22,34.25,34.25,33.62,33.87,36559600,1.14 +1994-09-21,34.50,34.63,33.75,34.12,58710400,1.15 +1994-09-20,35.12,35.37,34.38,34.56,49313600,1.16 +1994-09-19,36.38,36.75,35.50,35.50,43587600,1.19 +1994-09-16,35.88,37.25,35.50,36.38,91036400,1.22 +1994-09-15,35.12,36.13,35.12,36.00,64738800,1.21 +1994-09-14,35.62,35.75,35.00,35.12,24771600,1.18 +1994-09-13,35.75,36.25,35.62,35.81,26056800,1.21 +1994-09-12,35.62,35.75,35.37,35.75,22635200,1.20 +1994-09-09,35.75,36.00,35.37,35.75,39309200,1.20 +1994-09-08,36.00,36.25,35.62,36.13,39709600,1.22 +1994-09-07,35.62,36.63,35.37,36.13,50974000,1.22 +1994-09-06,35.25,35.62,35.00,35.56,22856400,1.20 +1994-09-02,35.25,35.50,35.00,35.37,25326000,1.19 +1994-09-01,35.37,35.75,34.63,35.00,51072000,1.18 +1994-08-31,36.00,37.37,35.75,36.19,87959200,1.22 +1994-08-30,35.25,36.38,35.12,36.25,45519600,1.22 +1994-08-29,35.75,36.13,35.25,35.37,38026800,1.19 +1994-08-26,35.25,36.13,35.25,35.75,51049600,1.20 +1994-08-25,34.25,36.38,34.25,35.06,74698400,1.18 +1994-08-24,34.75,35.00,34.38,34.88,42896000,1.17 +1994-08-23,34.88,35.88,34.75,35.00,53611600,1.18 +1994-08-22,34.75,35.00,34.63,34.88,38105200,1.17 +1994-08-19,34.75,35.00,34.25,34.88,32636800,1.17 +1994-08-18,34.75,35.25,34.50,34.63,51564800,1.17 +1994-08-17,34.88,35.37,34.63,35.00,71545600,1.18 +1994-08-16,34.38,34.75,34.00,34.75,38934000,1.17 +1994-08-15,34.75,35.00,34.25,34.63,30018800,1.17 +1994-08-12,34.38,35.12,33.87,34.75,44912000,1.17 +1994-08-11,34.25,35.12,33.87,34.31,74522000,1.15 +1994-08-10,33.62,34.88,33.25,34.63,63392000,1.16 +1994-08-09,33.50,33.87,33.13,33.62,19650400,1.13 +1994-08-08,33.13,34.00,33.00,33.75,35319200,1.13 +1994-08-05,32.88,33.37,32.88,33.25,21753200,1.11 +1994-08-04,33.13,33.75,33.13,33.25,46188800,1.11 +1994-08-03,32.75,33.25,32.12,33.13,56711200,1.11 +1994-08-02,33.50,33.62,32.38,32.56,67390400,1.09 +1994-08-01,33.62,33.75,32.75,33.37,57318800,1.12 +1994-07-29,31.87,34.00,31.87,33.69,138941600,1.13 +1994-07-28,31.00,32.12,30.88,31.87,61328400,1.07 +1994-07-27,31.25,31.38,30.62,31.06,33446000,1.04 +1994-07-26,31.75,32.00,31.13,31.38,47202400,1.05 +1994-07-25,31.13,31.87,30.75,31.69,105663600,1.06 +1994-07-22,31.62,31.97,30.00,31.00,196644000,1.04 +1994-07-21,26.62,28.50,26.50,28.00,72368800,0.94 +1994-07-20,27.38,27.63,26.37,26.62,54342400,0.89 +1994-07-19,28.62,28.75,27.38,27.69,29092000,0.93 +1994-07-18,28.12,29.00,28.00,28.37,19107200,0.95 +1994-07-15,28.23,28.62,27.50,28.25,23741200,0.95 +1994-07-14,29.63,29.75,28.25,28.62,45166800,0.96 +1994-07-13,28.50,30.25,28.50,29.69,112565600,1.00 +1994-07-12,27.00,28.44,26.37,28.37,60578000,0.95 +1994-07-11,27.12,27.38,26.62,27.00,26605600,0.91 +1994-07-08,26.50,27.63,26.50,27.06,52057600,0.91 +1994-07-07,25.88,27.00,25.50,26.81,42537600,0.90 +1994-07-06,26.25,26.50,26.00,26.13,24346000,0.88 +1994-07-05,25.63,26.75,25.63,26.50,21462000,0.89 +1994-07-01,26.37,26.50,25.38,25.75,44819600,0.86 +1994-06-30,26.25,26.87,26.25,26.50,25432400,0.89 +1994-06-29,26.75,27.12,25.88,26.13,33891200,0.88 +1994-06-28,26.25,27.12,25.63,26.75,43556800,0.90 +1994-06-27,25.25,26.25,24.62,26.25,63988400,0.88 +1994-06-24,25.12,26.13,24.75,25.61,73214400,0.86 +1994-06-23,26.25,26.25,24.87,25.12,50974000,0.84 +1994-06-22,26.25,26.75,26.00,26.25,28464800,0.88 +1994-06-21,26.87,27.25,25.75,26.00,60818800,0.87 +1994-06-20,26.25,27.25,26.00,27.12,49974400,0.91 +1994-06-17,26.00,26.75,25.88,26.50,56123200,0.89 +1994-06-16,27.75,27.75,26.13,26.37,54555200,0.88 +1994-06-15,27.00,28.00,26.87,27.81,39869200,0.93 +1994-06-14,27.25,27.38,26.62,27.06,38589600,0.91 +1994-06-13,26.37,27.19,26.37,27.00,23226000,0.91 +1994-06-10,27.12,27.38,26.37,26.50,35683200,0.89 +1994-06-09,25.63,27.00,25.50,27.00,73382400,0.91 +1994-06-08,27.50,27.63,26.00,26.13,68541200,0.88 +1994-06-07,27.25,27.75,27.25,27.50,35061600,0.92 +1994-06-06,27.50,27.75,27.00,27.38,31508400,0.92 +1994-06-03,27.12,28.00,26.75,27.63,88421200,0.93 +1994-06-02,28.37,28.50,27.12,27.38,96230400,0.92 +1994-06-01,28.50,28.62,27.88,28.25,96440400,0.95 +1994-05-31,29.50,29.50,28.50,29.25,64349600,0.98 +1994-05-27,30.25,30.75,29.50,29.94,27171200,1.00 +1994-05-26,31.50,31.50,30.25,30.50,18258800,1.02 +1994-05-25,30.25,31.75,30.00,31.25,34028400,1.04 +1994-05-24,31.00,31.25,30.25,30.75,31612000,1.03 +1994-05-23,31.00,31.25,30.00,30.50,29988000,1.02 +1994-05-20,31.75,32.25,31.00,31.06,24536400,1.04 +1994-05-19,30.75,32.50,30.50,32.12,68395600,1.07 +1994-05-18,29.75,30.75,29.25,30.62,30965200,1.02 +1994-05-17,29.75,29.75,28.75,29.38,45026800,0.98 +1994-05-16,30.00,30.50,29.50,29.50,33846400,0.99 +1994-05-13,29.75,30.50,29.25,30.00,23153200,1.00 +1994-05-12,30.50,30.75,29.50,29.69,26776400,0.99 +1994-05-11,31.00,31.50,29.75,30.25,36380400,1.01 +1994-05-10,31.75,32.00,31.00,31.00,36710800,1.04 +1994-05-09,32.25,32.50,30.75,31.25,35117600,1.04 +1994-05-06,32.25,32.75,31.25,32.31,46944800,1.08 +1994-05-05,33.25,33.75,32.25,32.88,72083200,1.10 +1994-05-04,31.00,33.25,30.50,33.00,91039200,1.10 +1994-05-03,31.00,31.25,29.50,30.25,33224800,1.01 +1994-05-02,30.00,31.25,30.00,31.00,30805600,1.04 +1994-04-29,30.00,30.50,29.75,30.00,23696400,1.00 +1994-04-28,31.00,31.25,29.75,30.25,25118800,1.01 +1994-04-26,31.50,31.50,31.00,31.25,41056400,1.04 +1994-04-25,29.75,31.00,29.50,31.00,89810000,1.04 +1994-04-22,31.25,32.00,28.50,29.75,174456800,0.99 +1994-04-21,28.50,30.50,27.00,29.63,102634000,0.99 +1994-04-20,29.25,30.00,28.00,28.25,70462000,0.94 +1994-04-19,29.75,30.00,28.50,29.00,41563200,0.97 +1994-04-18,30.50,30.50,29.25,29.63,57573600,0.99 +1994-04-15,31.25,31.50,30.00,30.25,47087600,1.01 +1994-04-14,30.50,31.75,30.00,31.50,55498800,1.05 +1994-04-13,32.25,32.50,31.25,31.75,58284800,1.06 +1994-04-12,33.37,33.37,31.75,32.00,34207600,1.07 +1994-04-11,33.50,33.50,32.50,33.50,26706400,1.12 +1994-04-08,33.75,34.00,33.25,33.50,44212000,1.12 +1994-04-07,33.50,33.75,32.75,33.37,19342400,1.11 +1994-04-06,34.00,34.00,32.75,33.50,32272800,1.12 +1994-04-05,33.75,34.25,33.50,33.50,24474800,1.12 +1994-04-04,32.25,33.25,31.75,33.25,42075600,1.11 +1994-03-31,32.50,33.50,31.50,33.25,52264800,1.11 +1994-03-30,32.50,33.25,31.75,32.50,42456400,1.09 +1994-03-29,33.25,33.75,32.25,32.75,53379200,1.09 +1994-03-28,33.00,34.00,32.75,33.25,70644000,1.11 +1994-03-25,34.75,34.75,32.75,32.75,85909600,1.09 +1994-03-24,35.12,35.25,34.00,34.63,47023200,1.16 +1994-03-23,35.25,35.50,34.25,35.12,54171600,1.17 +1994-03-22,35.25,35.50,34.50,35.00,60706800,1.17 +1994-03-21,36.38,36.50,35.25,35.50,61628000,1.19 +1994-03-18,36.75,36.75,35.75,36.38,55918800,1.21 +1994-03-17,36.75,37.00,36.25,36.50,39057200,1.22 +1994-03-16,37.50,37.75,36.50,36.75,36792000,1.23 +1994-03-15,38.25,38.25,37.25,37.62,51136400,1.26 +1994-03-14,38.50,38.50,37.75,38.13,110426400,1.27 +1994-03-11,37.00,37.75,36.75,37.25,40460000,1.24 +1994-03-10,37.25,37.62,36.75,37.25,35940800,1.24 +1994-03-09,36.63,37.50,36.00,37.50,62134800,1.25 +1994-03-08,38.00,38.00,36.75,37.00,46513600,1.24 +1994-03-07,37.00,38.13,36.75,37.88,77599200,1.27 +1994-03-04,36.00,37.50,35.75,36.75,56711200,1.23 +1994-03-03,35.75,36.25,35.50,35.75,47118400,1.19 +1994-03-02,35.25,36.25,34.75,35.62,73536400,1.19 +1994-03-01,36.75,36.75,35.75,36.25,52967600,1.21 +1994-02-28,36.25,37.00,36.00,36.50,30956800,1.22 +1994-02-25,37.00,37.25,35.50,36.00,59206000,1.20 +1994-02-24,37.00,37.25,36.25,36.63,49464800,1.22 +1994-02-23,37.25,38.25,37.00,37.25,65133600,1.24 +1994-02-22,36.25,37.50,35.75,37.25,53642400,1.24 +1994-02-18,36.50,37.00,36.25,36.25,37268000,1.21 +1994-02-17,37.25,37.88,36.25,37.00,36288000,1.24 +1994-02-16,37.50,37.50,36.75,36.75,30506000,1.23 +1994-02-15,36.75,37.50,36.25,37.12,32443600,1.24 +1994-02-14,37.00,38.00,36.75,37.00,61387200,1.24 +1994-02-11,36.25,37.50,36.25,37.00,41062000,1.24 +1994-02-10,36.25,37.50,36.00,36.50,75507600,1.22 +1994-02-09,35.75,36.50,35.25,36.25,46746000,1.21 +1994-02-08,36.00,36.50,35.25,35.75,71346800,1.19 +1994-02-07,33.50,37.12,33.50,36.50,181361600,1.22 +1994-02-04,33.50,35.00,33.25,33.50,88502400,1.11 +1994-02-03,33.00,33.62,32.50,33.50,34498800,1.11 +1994-02-02,33.25,33.25,32.50,33.00,36612800,1.10 +1994-02-01,33.00,33.50,32.25,33.25,39180400,1.11 +1994-01-31,33.50,33.75,32.75,32.75,59595200,1.09 +1994-01-28,34.25,34.75,33.75,34.00,34109600,1.13 +1994-01-27,33.50,34.25,33.00,34.12,33062400,1.14 +1994-01-26,33.75,34.00,33.25,33.50,41451200,1.11 +1994-01-25,34.75,35.00,33.25,33.87,110583200,1.13 +1994-01-24,33.25,35.25,33.25,35.00,173037200,1.16 +1994-01-21,33.25,33.50,32.25,33.37,245033600,1.11 +1994-01-20,29.50,30.75,29.50,29.87,67020800,0.99 +1994-01-19,29.25,29.75,28.75,29.25,70397600,0.97 +1994-01-18,30.25,30.25,29.00,29.38,90700400,0.98 +1994-01-17,31.00,31.50,30.00,30.37,36428000,1.01 +1994-01-14,30.75,31.75,30.50,31.00,53628400,1.03 +1994-01-13,30.00,30.75,29.75,30.62,132899200,1.02 +1994-01-12,32.25,32.25,30.50,30.50,109779600,1.02 +1994-01-11,33.50,33.75,31.75,31.87,88849600,1.06 +1994-01-10,33.00,33.87,32.75,33.62,50397200,1.12 +1994-01-07,32.00,33.25,31.25,33.13,74698400,1.10 +1994-01-06,33.75,34.00,32.50,32.75,91627200,1.09 +1994-01-05,31.75,33.87,31.75,33.75,153034000,1.12 +1994-01-04,30.25,31.50,30.00,31.50,71293600,1.05 +1994-01-03,29.50,30.00,29.00,29.87,45382400,0.99 +1993-12-31,29.75,30.25,29.25,29.25,40241600,0.97 +1993-12-30,28.50,30.25,28.50,29.75,78638000,0.99 +1993-12-29,29.25,29.25,28.50,28.50,26838000,0.95 +1993-12-28,28.75,29.50,28.50,29.13,39874800,0.97 +1993-12-27,27.75,28.75,27.25,28.50,39984000,0.95 +1993-12-23,27.25,27.25,26.50,27.25,56739200,0.91 +1993-12-22,27.25,28.50,27.00,28.00,45343200,0.93 +1993-12-21,28.50,28.75,27.25,27.50,62781600,0.92 +1993-12-20,29.25,29.75,28.25,28.50,47258400,0.95 +1993-12-17,29.50,29.75,29.13,29.50,36288000,0.98 +1993-12-16,29.50,29.75,29.00,29.38,31592400,0.98 +1993-12-15,29.00,29.75,29.00,29.75,30970800,0.99 +1993-12-14,29.25,29.75,29.00,29.13,73416000,0.97 +1993-12-13,28.25,29.50,27.75,29.50,61082000,0.98 +1993-12-10,30.25,30.50,27.75,28.25,124314400,0.94 +1993-12-09,31.75,32.00,29.75,30.00,45690400,1.00 +1993-12-08,32.00,32.25,31.50,31.87,9898000,1.06 +1993-12-07,32.00,32.25,31.50,32.25,15962800,1.07 +1993-12-06,31.50,32.50,31.25,32.25,39244800,1.07 +1993-12-03,31.75,32.00,31.00,31.50,30116800,1.05 +1993-12-02,31.75,32.00,31.00,31.75,25163600,1.06 +1993-12-01,32.00,32.25,31.25,31.50,27804000,1.05 +1993-11-30,31.75,32.63,31.50,31.50,28165200,1.05 +1993-11-29,32.25,32.50,31.50,31.75,24178000,1.06 +1993-11-26,32.75,33.00,32.25,32.63,10861200,1.09 +1993-11-24,32.75,33.50,32.63,33.00,22610000,1.10 +1993-11-23,32.50,33.00,31.25,33.00,46541600,1.10 +1993-11-22,32.75,33.00,32.25,32.50,37651600,1.08 +1993-11-19,33.00,33.50,32.50,33.00,30741200,1.10 +1993-11-18,33.50,33.75,33.00,33.50,28602000,1.11 +1993-11-17,34.00,35.00,32.75,33.50,75656000,1.11 +1993-11-16,32.00,34.25,31.75,34.00,75770800,1.13 +1993-11-15,31.50,32.75,31.50,32.00,39275600,1.06 +1993-11-12,31.50,32.00,30.50,31.75,35915600,1.05 +1993-11-11,30.75,32.00,30.50,31.38,35607600,1.04 +1993-11-10,30.25,30.75,30.00,30.75,19244400,1.02 +1993-11-09,31.00,31.25,29.75,30.12,42812000,1.00 +1993-11-08,32.00,32.12,30.50,30.75,41748000,1.02 +1993-11-05,31.87,32.25,30.75,31.87,94508400,1.06 +1993-11-04,31.50,32.25,30.75,32.25,46342800,1.07 +1993-11-03,33.00,33.00,31.00,31.62,44240000,1.05 +1993-11-02,31.25,33.00,31.00,32.75,56061600,1.09 +1993-11-01,30.75,31.50,30.25,31.50,26493600,1.04 +1993-10-29,31.00,31.75,30.50,30.75,34216000,1.02 +1993-10-28,31.75,32.25,31.00,31.00,61115600,1.03 +1993-10-27,30.00,32.25,29.75,31.75,114766400,1.05 +1993-10-26,29.75,30.00,29.00,29.75,55619200,0.99 +1993-10-25,30.25,30.50,29.63,30.00,54782000,0.99 +1993-10-22,30.50,31.50,29.75,30.25,99019200,1.00 +1993-10-21,27.50,31.25,27.25,30.25,156777600,1.00 +1993-10-20,28.00,28.25,27.25,27.75,34602400,0.92 +1993-10-19,28.25,28.50,27.25,27.75,53393200,0.92 +1993-10-18,28.00,28.75,27.75,28.37,83249600,0.94 +1993-10-15,27.75,28.50,26.75,28.25,238812000,0.94 +1993-10-14,24.00,24.50,23.50,23.75,40171600,0.79 +1993-10-13,24.25,24.25,23.50,24.00,44251200,0.80 +1993-10-12,24.00,25.00,23.75,24.00,76585600,0.80 +1993-10-11,22.75,24.00,22.75,23.75,40286400,0.79 +1993-10-08,23.25,23.25,22.25,22.63,34851600,0.75 +1993-10-07,23.50,23.75,22.75,23.00,33726000,0.76 +1993-10-06,23.75,24.00,23.37,23.62,43820000,0.78 +1993-10-05,23.00,24.00,23.00,23.50,44077600,0.78 +1993-10-04,22.63,23.00,22.00,22.75,48210400,0.75 +1993-10-01,22.75,23.00,22.50,22.75,83997200,0.75 +1993-09-30,24.00,24.00,23.00,23.37,68726000,0.78 +1993-09-29,24.25,24.87,23.75,23.88,59186400,0.79 +1993-09-28,24.75,25.00,24.25,24.75,23637600,0.82 +1993-09-27,25.00,25.25,24.25,24.75,28294000,0.82 +1993-09-24,25.00,25.25,24.50,25.00,19143600,0.83 +1993-09-23,25.50,25.50,24.50,24.75,32737600,0.82 +1993-09-22,24.25,25.50,24.25,25.50,27622000,0.85 +1993-09-21,24.75,25.25,23.88,24.50,36624000,0.81 +1993-09-20,25.25,25.50,24.75,24.87,27759200,0.82 +1993-09-17,24.38,25.50,24.25,25.25,43008000,0.84 +1993-09-16,24.25,25.00,24.25,24.75,21490000,0.82 +1993-09-15,24.50,25.00,23.50,24.50,64430800,0.81 +1993-09-14,24.25,25.00,24.00,24.25,69160000,0.80 +1993-09-13,26.25,26.50,24.75,25.25,63946400,0.84 +1993-09-10,26.25,26.25,25.38,26.25,33622400,0.87 +1993-09-09,26.75,27.00,26.00,26.00,37382800,0.86 +1993-09-08,26.25,27.00,26.00,26.75,56658000,0.89 +1993-09-07,26.00,27.00,25.75,26.25,35884800,0.87 +1993-09-03,26.00,26.00,25.25,25.75,40734400,0.85 +1993-09-02,26.00,26.25,25.25,25.75,70565600,0.85 +1993-09-01,26.50,26.75,25.75,26.13,56392000,0.87 +1993-08-31,26.50,26.75,26.00,26.50,31967600,0.88 +1993-08-30,26.50,26.50,25.88,26.00,68434800,0.86 +1993-08-27,27.00,27.00,26.25,26.50,46642400,0.88 +1993-08-26,27.25,27.25,26.50,26.87,44035600,0.89 +1993-08-25,28.00,28.25,26.75,27.25,36442000,0.90 +1993-08-24,28.25,28.75,27.75,28.00,25314800,0.93 +1993-08-23,28.00,28.75,27.50,28.37,22794800,0.94 +1993-08-20,27.75,28.00,27.00,28.00,24984400,0.93 +1993-08-19,28.75,28.75,27.50,27.50,38032400,0.91 +1993-08-18,29.00,29.75,28.25,28.50,47180000,0.95 +1993-08-17,27.75,28.50,27.25,28.37,27045200,0.94 +1993-08-16,27.50,28.00,27.25,27.50,25611600,0.91 +1993-08-13,26.50,27.75,26.25,27.38,34703200,0.90 +1993-08-12,27.50,27.75,26.00,26.50,84543200,0.87 +1993-08-11,28.50,28.50,27.00,27.50,41742400,0.91 +1993-08-10,29.50,29.75,28.25,28.50,38194800,0.94 +1993-08-09,29.25,30.25,29.00,29.75,40353600,0.98 +1993-08-06,29.25,30.25,29.25,29.25,31480400,0.97 +1993-08-05,30.75,30.75,29.00,29.50,52343200,0.97 +1993-08-04,29.25,30.50,29.00,30.25,60748800,1.00 +1993-08-03,29.00,29.25,28.75,29.00,44119600,0.96 +1993-08-02,28.25,29.25,28.00,28.50,54076400,0.94 +1993-07-30,27.50,28.25,27.00,27.75,53611600,0.92 +1993-07-29,27.00,27.50,26.75,27.25,30343600,0.90 +1993-07-28,26.25,27.00,26.25,26.87,22948800,0.89 +1993-07-27,26.75,27.50,26.25,26.50,49652400,0.87 +1993-07-26,26.75,27.50,26.00,26.87,38206000,0.89 +1993-07-23,27.00,27.50,26.00,26.25,58444400,0.87 +1993-07-22,26.00,27.00,25.75,26.50,52794000,0.87 +1993-07-21,26.00,26.75,25.50,26.25,113976800,0.87 +1993-07-20,26.25,27.75,25.75,26.87,132977600,0.89 +1993-07-19,28.00,28.75,25.50,25.63,201558000,0.85 +1993-07-16,28.50,29.63,26.50,27.50,530149200,0.91 +1993-07-15,37.25,37.75,35.25,35.75,84509600,1.18 +1993-07-14,36.75,37.50,35.75,37.25,61574800,1.23 +1993-07-13,38.75,38.75,37.00,37.25,39527600,1.23 +1993-07-12,36.75,38.13,36.25,38.00,43470000,1.25 +1993-07-09,37.00,37.25,36.50,36.75,39219600,1.21 +1993-07-08,36.50,37.50,36.25,36.50,34742400,1.21 +1993-07-07,37.50,37.88,36.25,36.50,56758800,1.21 +1993-07-06,38.25,39.00,37.50,37.75,38813600,1.25 +1993-07-02,38.25,38.75,37.75,38.50,47908000,1.27 +1993-07-01,39.00,39.75,38.00,38.00,54541200,1.25 +1993-06-30,38.75,39.75,38.50,39.50,50064000,1.30 +1993-06-29,40.25,40.25,38.50,39.00,73567200,1.29 +1993-06-28,40.50,40.50,38.75,40.13,88404400,1.32 +1993-06-25,40.37,40.75,39.50,40.00,64290800,1.32 +1993-06-24,40.50,41.75,40.00,41.75,55708800,1.38 +1993-06-23,41.75,41.75,40.00,40.50,45180800,1.34 +1993-06-22,40.87,42.00,39.75,41.38,84095200,1.37 +1993-06-21,40.50,40.50,39.50,39.63,68395600,1.31 +1993-06-18,41.63,42.12,39.75,41.00,77823200,1.35 +1993-06-17,42.50,42.50,40.50,41.25,102359600,1.36 +1993-06-16,42.25,43.25,41.50,42.25,88270000,1.39 +1993-06-15,45.25,45.25,41.88,42.00,112081200,1.39 +1993-06-14,44.00,44.75,43.50,44.62,62372800,1.47 +1993-06-11,45.00,45.25,43.38,43.75,60580800,1.44 +1993-06-10,43.50,44.75,42.75,44.50,138426400,1.47 +1993-06-09,45.00,45.62,44.00,44.25,294604800,1.46 +1993-06-08,48.75,50.00,48.00,49.50,155274000,1.63 +1993-06-07,54.50,54.75,50.38,50.75,120576400,1.68 +1993-06-04,55.75,56.25,54.50,54.87,53421200,1.81 +1993-06-03,57.00,57.25,56.00,56.37,39214000,1.86 +1993-06-02,56.75,58.25,56.00,57.00,50120000,1.88 +1993-06-01,56.50,57.75,56.50,57.00,33768000,1.88 +1993-05-28,57.00,57.50,56.25,56.62,45987200,1.87 +1993-05-27,57.75,58.50,57.25,57.50,49322000,1.89 +1993-05-26,56.00,57.75,55.38,57.75,30391200,1.90 +1993-05-25,56.75,57.50,55.75,56.37,45180800,1.86 +1993-05-24,56.75,58.75,56.75,57.63,37578800,1.90 +1993-05-21,58.75,59.13,56.75,57.50,37049600,1.89 +1993-05-20,57.25,59.00,57.25,58.75,72632000,1.94 +1993-05-19,54.75,57.50,54.50,57.25,43192800,1.89 +1993-05-18,55.50,56.25,55.00,55.50,40868800,1.83 +1993-05-17,55.50,56.00,55.00,55.75,17410400,1.84 +1993-05-14,55.25,56.00,55.00,55.50,29352400,1.83 +1993-05-13,53.50,55.75,53.50,55.50,90431600,1.83 +1993-05-12,54.25,54.75,53.00,53.25,26306000,1.75 +1993-05-11,55.00,55.25,54.00,54.50,39594800,1.80 +1993-05-10,55.00,55.88,55.00,55.00,34482000,1.81 +1993-05-07,53.50,54.75,53.50,54.75,20473600,1.80 +1993-05-06,54.50,54.75,53.50,53.75,17614800,1.77 +1993-05-05,53.00,55.50,53.00,54.50,63266000,1.80 +1993-05-04,52.25,54.25,52.00,53.38,42705600,1.76 +1993-05-03,51.25,52.00,51.00,51.88,16296000,1.71 +1993-04-30,50.75,52.50,50.75,51.25,33084800,1.69 +1993-04-29,51.50,51.75,50.13,50.75,20610800,1.67 +1993-04-28,49.75,52.00,49.75,51.37,40810000,1.69 +1993-04-27,48.75,50.25,48.75,50.25,32418400,1.66 +1993-04-26,49.25,49.75,48.50,49.00,25701200,1.61 +1993-04-23,49.75,50.25,48.75,49.25,33535600,1.62 +1993-04-22,49.25,50.50,49.00,50.00,39418400,1.65 +1993-04-21,50.25,50.75,49.25,49.62,51318400,1.64 +1993-04-20,48.75,50.25,48.25,50.00,60012400,1.65 +1993-04-19,48.50,49.50,48.25,48.50,56966000,1.60 +1993-04-16,48.25,48.75,47.37,48.12,171698800,1.59 +1993-04-15,48.25,48.25,46.75,47.25,54675600,1.56 +1993-04-14,48.25,48.75,47.62,48.75,42515200,1.61 +1993-04-13,50.50,51.25,48.25,48.50,41120800,1.60 +1993-04-12,49.50,51.00,49.50,50.00,23262400,1.65 +1993-04-08,50.00,50.50,49.00,49.75,40857600,1.64 +1993-04-07,49.00,50.75,48.50,50.50,40712000,1.66 +1993-04-06,50.00,50.25,48.75,48.75,42092400,1.61 +1993-04-05,50.00,50.50,49.50,50.00,37293200,1.65 +1993-04-02,50.50,51.25,49.50,50.13,63448000,1.65 +1993-04-01,51.25,52.00,51.00,51.75,27050800,1.71 +1993-03-31,52.50,52.75,51.25,51.50,55759200,1.70 +1993-03-30,51.12,52.25,50.25,52.25,66012800,1.72 +1993-03-29,52.25,52.50,50.75,51.00,65427600,1.68 +1993-03-26,54.75,54.75,52.50,53.25,37940000,1.75 +1993-03-25,53.75,54.75,53.50,54.75,42761600,1.80 +1993-03-24,52.75,54.25,52.50,53.75,35767200,1.77 +1993-03-23,53.25,54.00,52.62,52.75,25634000,1.74 +1993-03-22,53.50,53.88,52.75,53.25,41300000,1.75 +1993-03-19,55.00,55.25,53.50,53.75,38525200,1.77 +1993-03-18,55.00,55.63,54.50,54.50,26546800,1.80 +1993-03-17,56.50,57.00,55.00,55.12,44055200,1.82 +1993-03-16,57.25,57.75,56.50,56.50,25320400,1.86 +1993-03-15,56.00,57.25,55.38,57.00,34008800,1.88 +1993-03-12,56.75,56.75,55.50,56.25,31673600,1.85 +1993-03-11,57.00,57.25,56.25,56.88,36153600,1.87 +1993-03-10,56.75,57.25,56.00,56.75,33124000,1.87 +1993-03-09,56.50,57.50,56.50,56.75,38707200,1.87 +1993-03-08,55.00,56.75,55.00,56.50,44251200,1.86 +1993-03-05,54.75,55.75,54.75,55.00,27904800,1.81 +1993-03-04,54.50,55.25,53.50,55.00,47084800,1.81 +1993-03-03,54.00,55.00,53.25,54.62,50674400,1.80 +1993-03-02,53.00,54.50,53.00,54.25,36923600,1.79 +1993-03-01,53.00,53.50,52.75,53.25,29825600,1.75 +1993-02-26,54.25,54.25,52.25,53.00,73721200,1.75 +1993-02-25,53.25,54.75,53.25,54.75,41806800,1.80 +1993-02-24,52.13,53.88,52.13,53.63,71640800,1.77 +1993-02-23,55.00,55.25,54.00,54.25,48518400,1.79 +1993-02-22,55.00,56.00,54.75,55.12,24690400,1.82 +1993-02-19,55.25,55.50,54.75,55.00,44450000,1.81 +1993-02-18,55.00,55.25,53.50,55.00,70030800,1.81 +1993-02-17,53.25,54.00,52.00,53.88,62395200,1.78 +1993-02-16,53.50,53.50,51.50,53.00,101934000,1.75 +1993-02-12,55.00,55.50,53.75,53.88,68849200,1.78 +1993-02-11,55.75,56.25,55.00,55.12,42067200,1.81 +1993-02-10,57.00,57.25,55.00,55.75,67071200,1.83 +1993-02-09,57.00,57.38,56.50,56.88,59665200,1.87 +1993-02-08,57.00,57.50,55.50,56.50,70268800,1.86 +1993-02-05,59.25,59.50,56.25,57.25,91904400,1.88 +1993-02-04,60.00,60.25,59.00,59.50,52038000,1.96 +1993-02-03,61.00,61.00,58.50,60.00,66046400,1.97 +1993-02-02,60.75,61.50,60.25,60.25,45584000,1.98 +1993-02-01,59.25,61.25,59.25,61.25,60138400,2.01 +1993-01-29,60.25,61.25,59.00,59.50,66525200,1.96 +1993-01-28,60.00,60.25,59.25,59.87,46009600,1.97 +1993-01-27,61.00,61.75,58.75,60.25,56655200,1.98 +1993-01-26,60.50,62.00,60.50,60.75,71405600,2.00 +1993-01-25,59.25,60.50,59.25,60.00,50568000,1.97 +1993-01-22,60.25,60.25,59.00,59.50,36736000,1.96 +1993-01-21,59.75,60.25,58.75,60.00,46104800,1.97 +1993-01-20,59.75,60.25,59.50,60.00,39684400,1.97 +1993-01-19,59.75,60.50,59.25,59.75,68510400,1.96 +1993-01-18,59.50,60.00,58.00,59.50,83409200,1.96 +1993-01-15,61.00,62.25,60.00,60.25,225657600,1.98 +1993-01-14,64.00,65.25,63.75,65.00,91952000,2.14 +1993-01-13,61.50,64.00,61.25,63.50,49910000,2.09 +1993-01-12,62.75,63.75,61.50,61.50,86539600,2.02 +1993-01-11,62.00,64.38,61.75,64.13,68432000,2.11 +1993-01-08,60.75,63.00,59.75,62.25,80234000,2.05 +1993-01-07,61.75,62.50,60.63,61.00,68034400,2.01 +1993-01-06,60.75,62.00,60.50,61.75,70350000,2.03 +1993-01-05,58.00,59.25,57.25,59.25,46564000,1.95 +1993-01-04,59.50,60.00,57.75,58.25,32284000,1.91 +1992-12-31,58.75,60.00,58.75,59.75,23058000,1.96 +1992-12-30,59.75,59.75,58.75,58.75,25146800,1.93 +1992-12-29,59.50,60.75,59.50,59.62,29069600,1.96 +1992-12-28,59.25,59.75,59.25,59.50,17612000,1.96 +1992-12-24,60.00,60.00,59.00,59.00,11491200,1.94 +1992-12-23,60.25,60.50,59.25,59.75,28084000,1.96 +1992-12-22,59.75,61.25,59.75,60.63,70042000,1.99 +1992-12-21,58.25,60.00,58.00,59.62,64016400,1.96 +1992-12-18,57.50,59.25,57.25,58.25,58864400,1.91 +1992-12-17,55.25,57.50,55.25,56.88,58466800,1.87 +1992-12-16,56.25,57.00,54.50,55.00,56481600,1.81 +1992-12-15,56.75,57.00,55.50,56.37,45634400,1.85 +1992-12-14,57.50,57.75,56.75,57.25,27627600,1.88 +1992-12-11,57.25,58.25,57.25,57.50,30046800,1.89 +1992-12-10,57.25,57.63,56.50,57.25,35047600,1.88 +1992-12-09,57.75,58.00,57.25,57.63,39852400,1.89 +1992-12-08,57.75,58.75,57.75,58.12,49159600,1.91 +1992-12-07,56.75,57.75,56.75,57.75,36055600,1.90 +1992-12-04,57.25,57.50,56.50,56.88,23945600,1.87 +1992-12-03,56.50,57.63,56.12,57.50,46897200,1.89 +1992-12-02,58.25,58.50,57.00,57.25,24444000,1.88 +1992-12-01,57.25,59.00,56.75,58.25,32536000,1.91 +1992-11-30,56.25,57.50,55.63,57.50,40126800,1.89 +1992-11-27,56.50,57.25,56.25,56.50,11799200,1.85 +1992-11-25,57.00,57.25,56.00,56.50,29335600,1.85 +1992-11-24,57.00,57.50,56.50,57.50,39205600,1.89 +1992-11-23,56.50,57.00,56.25,56.75,38180800,1.86 +1992-11-20,58.50,58.75,57.00,57.50,38872400,1.89 +1992-11-19,57.75,59.50,57.75,58.25,60135600,1.91 +1992-11-18,56.00,58.25,55.50,57.75,76202000,1.89 +1992-11-17,57.25,57.50,54.87,55.25,42201600,1.81 +1992-11-16,56.25,57.75,56.00,57.38,16886800,1.88 +1992-11-13,57.00,57.25,56.00,56.25,21187600,1.85 +1992-11-12,57.00,57.50,56.37,56.88,26899600,1.87 +1992-11-11,56.50,58.25,56.25,56.75,35106400,1.86 +1992-11-10,55.00,56.50,54.75,56.25,30556400,1.85 +1992-11-09,56.00,56.00,54.75,55.25,28232400,1.81 +1992-11-06,54.75,56.50,54.75,55.75,65993200,1.83 +1992-11-05,52.50,55.00,52.50,55.00,74513600,1.80 +1992-11-04,52.00,52.75,52.00,52.50,35490000,1.72 +1992-11-03,52.50,52.50,51.50,52.00,28187600,1.71 +1992-11-02,52.50,52.75,51.75,52.25,42523600,1.71 +1992-10-30,53.50,53.50,52.00,52.50,32457600,1.72 +1992-10-29,52.25,54.00,51.50,53.25,53474400,1.75 +1992-10-28,51.25,52.75,50.75,52.25,49148400,1.71 +1992-10-27,51.50,52.50,51.00,51.50,52990000,1.69 +1992-10-26,48.75,51.50,48.50,51.50,62672400,1.69 +1992-10-23,49.25,49.50,48.25,48.75,22856400,1.60 +1992-10-22,48.50,49.25,48.25,48.75,21117600,1.60 +1992-10-21,49.25,49.50,48.00,48.50,28562800,1.59 +1992-10-20,49.00,50.00,48.50,49.12,71811600,1.61 +1992-10-19,49.00,49.25,48.50,49.00,49011200,1.61 +1992-10-16,46.75,49.50,46.50,49.00,112837200,1.61 +1992-10-15,45.75,46.00,45.25,45.50,18855200,1.49 +1992-10-14,45.25,46.25,45.00,46.00,23931600,1.51 +1992-10-13,44.75,46.00,44.00,45.38,36794800,1.49 +1992-10-12,43.25,44.25,43.25,44.00,17908800,1.44 +1992-10-09,43.50,44.00,43.00,43.38,14686000,1.42 +1992-10-08,44.00,44.25,43.00,43.50,31743600,1.43 +1992-10-07,45.00,45.25,43.50,43.75,28327600,1.44 +1992-10-06,43.75,45.00,42.75,44.75,28361200,1.47 +1992-10-05,43.25,43.75,41.50,43.50,66239600,1.43 +1992-10-02,44.50,44.75,43.00,43.75,28386400,1.44 +1992-10-01,44.75,45.13,44.25,44.25,30682400,1.45 +1992-09-30,45.00,45.50,44.50,45.13,25012400,1.48 +1992-09-29,44.50,45.50,44.00,44.88,39317600,1.47 +1992-09-28,45.00,45.00,43.75,44.75,37380000,1.47 +1992-09-25,46.25,46.50,45.25,45.50,34367200,1.49 +1992-09-24,47.25,47.75,46.25,46.25,31413200,1.52 +1992-09-23,46.00,47.50,45.50,47.50,30993200,1.56 +1992-09-22,46.75,46.75,45.25,45.75,27885200,1.50 +1992-09-21,46.75,47.75,46.25,46.50,22419600,1.53 +1992-09-18,45.75,46.88,45.25,46.50,28901600,1.53 +1992-09-17,47.25,47.25,45.38,46.00,43108800,1.51 +1992-09-16,47.75,48.25,46.50,47.00,44679600,1.54 +1992-09-15,49.25,49.25,47.75,48.25,54630800,1.58 +1992-09-14,49.00,50.00,48.50,49.50,53670400,1.62 +1992-09-11,49.00,49.25,47.50,47.62,44970800,1.56 +1992-09-10,48.00,49.50,47.50,49.25,57044400,1.62 +1992-09-09,48.00,49.25,47.75,49.00,39300800,1.61 +1992-09-08,46.75,48.00,46.50,47.75,17500000,1.57 +1992-09-04,48.25,48.25,46.75,47.25,15808800,1.55 +1992-09-03,49.00,49.25,47.75,47.75,52964800,1.57 +1992-09-02,46.50,48.75,46.50,48.50,47474000,1.59 +1992-09-01,46.25,46.50,45.75,46.50,15072400,1.53 +1992-08-31,45.00,46.25,44.75,46.00,30279200,1.51 +1992-08-28,44.25,45.25,44.00,45.00,15310400,1.48 +1992-08-27,44.75,45.13,44.25,44.50,20686400,1.46 +1992-08-26,44.25,44.50,43.25,44.25,30265200,1.45 +1992-08-25,43.25,44.50,43.25,44.37,33090400,1.46 +1992-08-24,44.25,44.75,43.25,43.25,38043600,1.42 +1992-08-21,44.75,45.25,44.00,44.62,27367200,1.46 +1992-08-20,44.75,45.00,44.25,44.75,27227200,1.47 +1992-08-19,44.62,45.25,44.50,44.50,42635600,1.46 +1992-08-18,44.50,45.25,44.50,44.75,28078400,1.47 +1992-08-17,44.25,44.75,43.75,44.75,32177600,1.47 +1992-08-14,45.00,45.25,44.50,44.75,34025600,1.46 +1992-08-13,44.50,45.50,44.25,44.75,42747600,1.46 +1992-08-12,43.75,44.25,43.25,44.12,30346400,1.44 +1992-08-11,44.50,44.50,43.00,43.50,30326800,1.42 +1992-08-10,43.25,44.50,43.00,44.12,22862000,1.44 +1992-08-07,42.00,43.75,41.50,43.38,54790400,1.42 +1992-08-06,44.25,44.50,42.75,44.00,64492400,1.44 +1992-08-05,45.50,45.50,44.50,44.75,34815200,1.46 +1992-08-04,45.00,45.75,44.75,45.50,29929200,1.49 +1992-08-03,46.75,47.25,45.50,45.75,17136000,1.50 +1992-07-31,47.25,47.50,46.75,46.75,22677200,1.53 +1992-07-30,47.25,47.50,46.75,47.25,34473600,1.55 +1992-07-29,46.63,47.75,46.50,47.25,62692000,1.55 +1992-07-28,45.50,46.50,45.25,46.50,33560800,1.52 +1992-07-27,45.75,46.50,45.25,45.25,599200,1.48 +1992-07-24,44.50,46.25,44.00,45.87,33742800,1.50 +1992-07-23,44.50,44.75,43.75,44.75,42879200,1.46 +1992-07-22,45.25,45.50,44.00,44.25,40493600,1.45 +1992-07-21,45.50,46.25,45.00,45.75,32986800,1.50 +1992-07-20,44.75,45.25,44.00,44.75,48031200,1.46 +1992-07-17,45.00,46.00,44.62,45.00,105910000,1.47 +1992-07-16,47.75,49.00,47.25,48.75,34949600,1.59 +1992-07-15,47.50,49.00,47.25,48.00,43615600,1.57 +1992-07-14,47.00,48.00,47.00,47.50,31497200,1.55 +1992-07-13,45.75,47.13,45.25,47.00,31390800,1.54 +1992-07-10,46.00,46.25,44.88,45.75,35949200,1.50 +1992-07-09,46.00,46.50,45.75,45.87,41448400,1.50 +1992-07-08,44.00,45.75,44.00,45.75,48988800,1.50 +1992-07-07,46.25,46.25,43.50,44.25,51772000,1.45 +1992-07-06,46.50,46.75,45.50,46.25,30500400,1.51 +1992-07-02,49.00,49.00,45.75,46.25,64162000,1.51 +1992-07-01,48.00,49.50,47.75,49.00,35882000,1.60 +1992-06-30,46.75,48.25,46.50,48.00,48336400,1.57 +1992-06-29,45.75,47.13,45.25,46.75,47107200,1.53 +1992-06-26,45.75,46.00,44.50,45.25,27591200,1.48 +1992-06-25,46.50,46.50,45.25,45.62,40152000,1.49 +1992-06-24,45.50,46.00,45.25,46.00,52766000,1.51 +1992-06-23,45.00,45.50,44.50,45.25,77887600,1.48 +1992-06-22,44.00,44.75,42.75,44.25,97484800,1.45 +1992-06-19,46.00,46.00,43.75,44.75,106859200,1.46 +1992-06-18,47.50,49.00,44.75,45.25,108430000,1.48 +1992-06-17,49.00,49.25,47.00,47.50,76062000,1.55 +1992-06-16,51.75,52.00,48.75,49.25,91338800,1.61 +1992-06-15,54.00,54.00,52.50,52.62,47297600,1.72 +1992-06-12,54.50,55.00,54.25,54.62,24127600,1.79 +1992-06-11,53.75,54.25,53.50,53.88,35128800,1.76 +1992-06-10,54.00,54.75,53.50,53.75,31651200,1.76 +1992-06-09,54.25,54.25,53.50,54.00,25320400,1.77 +1992-06-08,55.00,55.00,54.00,54.25,26084800,1.77 +1992-06-05,54.75,55.25,54.25,54.87,28182000,1.80 +1992-06-04,54.25,54.75,53.50,54.50,45038000,1.78 +1992-06-03,56.50,56.50,54.00,54.13,75143600,1.77 +1992-06-02,57.50,57.50,56.25,56.50,38920000,1.85 +1992-06-01,57.25,59.50,56.00,57.50,62011600,1.88 +1992-05-29,59.75,60.63,59.50,59.75,44562000,1.95 +1992-05-28,60.00,60.25,59.00,59.50,31810800,1.94 +1992-05-27,59.25,60.25,59.00,60.25,38522400,1.97 +1992-05-26,59.50,59.75,58.75,59.25,23903600,1.93 +1992-05-22,59.00,59.75,59.00,59.50,11617200,1.94 +1992-05-21,60.25,60.25,58.75,59.13,34423200,1.93 +1992-05-20,59.75,60.25,59.25,60.00,43302000,1.96 +1992-05-19,60.75,60.75,59.00,59.38,32919600,1.94 +1992-05-18,61.50,61.50,60.00,60.38,32272800,1.97 +1992-05-15,61.00,61.25,60.50,60.63,30326800,1.98 +1992-05-14,62.75,63.00,60.25,61.37,39230800,2.00 +1992-05-13,62.50,63.25,62.25,62.75,24368400,2.05 +1992-05-12,62.25,63.00,61.75,62.25,19261200,2.03 +1992-05-11,62.00,62.75,61.50,62.25,22724800,2.03 +1992-05-08,61.50,62.88,61.00,62.00,49674800,2.02 +1992-05-07,61.50,62.25,60.50,60.75,43089200,1.98 +1992-05-06,60.75,62.12,60.50,61.75,44497600,2.02 +1992-05-05,60.50,60.63,59.50,60.50,45021200,1.98 +1992-05-04,59.50,61.25,59.25,60.50,30808400,1.98 +1992-05-01,60.00,60.75,58.25,59.25,33594400,1.93 +1992-04-30,57.25,60.25,56.50,60.12,65066400,1.96 +1992-04-29,54.25,57.00,54.25,57.00,49725200,1.86 +1992-04-28,55.25,55.75,53.00,54.25,43531600,1.77 +1992-04-27,56.00,56.25,55.00,55.75,35067200,1.82 +1992-04-24,57.00,58.25,56.00,56.50,24570000,1.84 +1992-04-23,57.50,58.25,56.00,57.00,45704400,1.86 +1992-04-22,56.25,58.00,56.25,57.63,42882000,1.88 +1992-04-21,57.00,57.25,56.00,56.25,45091200,1.84 +1992-04-20,59.00,59.00,56.00,56.75,51511600,1.85 +1992-04-16,60.25,60.75,58.50,59.00,64671600,1.93 +1992-04-15,58.00,60.88,57.50,60.50,54339600,1.98 +1992-04-14,57.75,59.25,57.25,58.75,36100400,1.92 +1992-04-13,55.50,56.75,55.25,56.50,30707600,1.84 +1992-04-10,57.25,57.50,55.00,55.50,68516000,1.81 +1992-04-09,56.00,58.25,55.25,57.25,48034000,1.87 +1992-04-08,57.00,57.00,54.75,55.88,91756000,1.82 +1992-04-07,61.00,61.25,57.25,57.25,57554000,1.87 +1992-04-06,59.00,61.00,59.00,60.75,25496800,1.98 +1992-04-03,58.75,59.25,58.50,59.00,29114400,1.93 +1992-04-02,59.00,59.50,58.37,58.75,33493600,1.92 +1992-04-01,57.25,59.25,57.25,59.00,39914000,1.93 +1992-03-31,58.25,59.75,58.00,58.25,53158000,1.90 +1992-03-30,61.25,61.25,57.75,58.12,84758800,1.90 +1992-03-27,63.88,64.00,60.50,61.00,66133200,1.99 +1992-03-26,64.75,65.25,63.75,64.00,30755200,2.09 +1992-03-25,65.00,65.00,64.25,64.50,30388400,2.11 +1992-03-24,63.50,65.00,63.25,65.00,52354400,2.12 +1992-03-23,63.00,63.75,63.00,63.00,12518800,2.06 +1992-03-20,63.00,63.25,63.00,63.25,13540800,2.07 +1992-03-19,63.75,63.75,62.75,63.00,29629600,2.06 +1992-03-18,63.25,64.00,63.00,63.75,20258000,2.08 +1992-03-17,63.50,63.75,62.75,62.88,21274400,2.05 +1992-03-16,62.75,63.50,61.75,63.37,14072800,2.07 +1992-03-13,63.25,63.75,62.00,63.12,19796000,2.06 +1992-03-12,63.25,63.75,61.50,62.75,38225600,2.05 +1992-03-11,63.75,64.25,63.00,63.25,32914000,2.07 +1992-03-10,64.00,64.75,63.75,63.75,30674000,2.08 +1992-03-09,63.75,64.25,63.50,63.75,27235600,2.08 +1992-03-06,63.50,64.00,63.00,64.00,33572000,2.09 +1992-03-05,64.50,65.50,63.00,63.50,59180800,2.07 +1992-03-04,66.25,66.75,64.75,65.00,28842800,2.12 +1992-03-03,67.75,68.00,66.25,66.38,24819200,2.17 +1992-03-02,67.75,68.50,67.25,67.25,22313200,2.20 +1992-02-28,68.50,69.00,67.00,67.50,22598800,2.20 +1992-02-27,70.00,70.00,68.00,68.50,30542400,2.24 +1992-02-26,68.25,70.00,68.25,69.88,57271200,2.28 +1992-02-25,66.25,68.50,65.25,68.50,56803600,2.24 +1992-02-24,66.25,66.50,65.75,66.13,42851200,2.16 +1992-02-21,64.75,65.50,64.50,65.00,37895200,2.12 +1992-02-20,62.50,64.75,62.25,64.63,32715200,2.11 +1992-02-19,62.75,63.00,61.75,62.00,23917600,2.02 +1992-02-18,64.25,64.50,62.75,62.75,17088400,2.05 +1992-02-14,63.75,64.25,63.25,64.13,18146800,2.09 +1992-02-13,65.25,65.25,63.75,64.25,19003600,2.09 +1992-02-12,63.75,65.50,63.00,65.25,34490400,2.13 +1992-02-11,63.00,63.75,62.25,62.88,30503200,2.05 +1992-02-10,64.00,64.25,63.00,63.12,21610400,2.06 +1992-02-07,64.25,64.75,62.75,64.00,36884400,2.09 +1992-02-06,65.75,66.00,64.00,64.13,23284800,2.09 +1992-02-05,66.25,66.75,65.12,66.13,40376000,2.16 +1992-02-04,65.75,66.25,65.00,65.75,48232800,2.14 +1992-02-03,64.75,66.25,64.50,65.75,39533200,2.14 +1992-01-31,64.00,65.25,63.50,64.75,36139600,2.11 +1992-01-30,63.50,63.75,62.75,63.75,21778400,2.08 +1992-01-29,64.75,65.75,63.25,63.25,36139600,2.06 +1992-01-28,64.75,65.37,63.00,65.25,43430800,2.13 +1992-01-27,64.75,65.25,64.25,64.50,20862800,2.10 +1992-01-24,64.50,65.75,64.00,64.63,44402400,2.11 +1992-01-23,64.25,64.75,63.00,64.50,34588400,2.10 +1992-01-22,61.50,63.75,61.25,63.50,45920000,2.07 +1992-01-21,64.25,64.25,61.00,61.13,48521200,1.99 +1992-01-20,64.50,65.25,64.00,64.00,52416000,2.09 +1992-01-17,67.75,69.00,64.75,64.75,212088800,2.11 +1992-01-16,63.75,64.25,62.50,62.75,73382400,2.05 +1992-01-15,64.50,65.00,63.00,63.50,81435200,2.07 +1992-01-14,62.25,64.75,62.25,64.50,68451600,2.10 +1992-01-13,62.25,62.75,61.50,62.00,26964000,2.02 +1992-01-10,61.50,62.50,61.00,62.25,49056000,2.03 +1992-01-09,60.50,62.25,60.25,62.25,52127600,2.03 +1992-01-08,58.50,61.25,58.50,60.50,58186800,1.97 +1992-01-07,57.50,59.50,57.50,59.13,35366800,1.93 +1992-01-06,58.75,59.00,57.75,58.00,28560000,1.89 +1992-01-03,60.00,60.25,58.25,59.00,47563600,1.92 +1992-01-02,55.75,59.75,55.50,59.50,58408000,1.94 +1991-12-31,57.38,58.00,56.00,56.37,33507600,1.84 +1991-12-30,55.00,57.25,55.00,56.75,45911600,1.85 +1991-12-27,54.75,55.75,54.50,55.00,41935600,1.79 +1991-12-26,52.75,55.00,52.25,54.87,33625200,1.79 +1991-12-24,52.00,53.75,51.75,52.25,47140800,1.70 +1991-12-23,50.50,51.75,50.00,51.50,25790800,1.68 +1991-12-20,51.25,51.50,50.25,50.25,32046000,1.64 +1991-12-19,51.25,51.75,50.75,50.75,28831600,1.65 +1991-12-18,50.25,52.00,50.00,51.75,46650800,1.69 +1991-12-17,50.50,51.00,50.25,50.50,24460800,1.65 +1991-12-16,50.38,50.75,50.00,50.50,19297600,1.65 +1991-12-13,49.75,50.75,49.75,50.38,23780400,1.64 +1991-12-12,49.37,49.75,49.00,49.37,22937600,1.61 +1991-12-11,49.25,49.75,48.50,49.00,21140000,1.60 +1991-12-10,49.00,49.50,48.50,49.12,30654400,1.60 +1991-12-09,49.00,50.00,48.75,49.12,24458000,1.60 +1991-12-06,49.50,49.75,48.50,48.75,49246400,1.59 +1991-12-05,50.50,51.00,49.25,50.00,24799600,1.63 +1991-12-04,50.75,50.75,50.00,50.50,20137600,1.65 +1991-12-03,52.00,52.00,50.25,50.50,25715200,1.65 +1991-12-02,50.75,52.00,50.00,51.75,29724800,1.69 +1991-11-29,50.50,51.50,50.50,50.75,8523200,1.65 +1991-11-27,51.25,51.50,50.50,51.00,15808800,1.66 +1991-11-26,51.50,52.00,50.00,51.50,34818000,1.68 +1991-11-25,51.00,52.25,51.00,51.25,19608400,1.67 +1991-11-22,51.00,51.75,50.25,51.25,24460800,1.67 +1991-11-21,50.50,51.75,50.50,51.00,26703600,1.66 +1991-11-20,51.25,52.00,50.25,50.50,42025200,1.65 +1991-11-19,51.75,51.75,49.75,51.25,71372000,1.67 +1991-11-18,50.00,52.50,50.00,52.13,59684800,1.70 +1991-11-15,54.50,54.75,49.75,50.00,64237600,1.63 +1991-11-14,54.25,55.25,54.00,54.75,47000800,1.78 +1991-11-13,54.00,54.50,53.50,54.13,46480000,1.76 +1991-11-12,54.25,54.75,53.75,54.50,41672400,1.77 +1991-11-11,53.50,54.50,53.25,53.75,41235600,1.75 +1991-11-08,51.25,53.75,51.00,53.25,93956800,1.73 +1991-11-07,48.50,50.50,48.25,49.75,74183200,1.62 +1991-11-06,49.00,49.25,47.50,48.00,59197600,1.56 +1991-11-05,49.75,50.50,48.75,48.75,53900000,1.58 +1991-11-04,50.75,50.75,48.50,49.75,48823600,1.62 +1991-11-01,51.25,52.00,50.50,51.00,50316000,1.66 +1991-10-31,50.75,51.75,50.00,51.50,57951600,1.67 +1991-10-30,52.00,52.75,49.50,49.75,37060800,1.62 +1991-10-29,51.50,52.00,50.75,51.75,25309200,1.68 +1991-10-28,51.50,51.75,50.75,51.50,19465600,1.67 +1991-10-25,51.75,52.25,50.75,51.25,26742800,1.67 +1991-10-24,53.00,53.25,51.50,52.13,44475200,1.69 +1991-10-23,55.00,55.25,52.75,53.12,42207200,1.73 +1991-10-22,55.50,56.25,54.50,54.50,52052000,1.77 +1991-10-21,55.25,55.88,54.25,54.75,29173200,1.78 +1991-10-18,55.12,55.50,54.50,55.00,111739600,1.79 +1991-10-17,53.00,53.25,51.50,52.38,37903600,1.70 +1991-10-16,52.50,54.00,52.25,53.50,50218000,1.74 +1991-10-15,50.50,52.50,50.00,52.50,72052400,1.71 +1991-10-14,49.00,50.25,48.75,49.88,27969200,1.62 +1991-10-11,48.12,48.88,46.50,48.50,30013200,1.58 +1991-10-10,48.75,49.00,46.75,47.75,39303600,1.55 +1991-10-09,48.25,48.75,47.75,48.00,33185600,1.56 +1991-10-08,48.12,48.50,46.50,48.25,43064000,1.57 +1991-10-07,48.00,48.75,47.50,48.12,16175600,1.56 +1991-10-04,48.00,48.75,47.50,48.25,19843600,1.57 +1991-10-03,50.00,50.00,47.50,47.75,45250800,1.55 +1991-10-02,51.75,51.75,49.50,49.75,4496800,1.62 +1991-10-01,49.25,51.25,49.00,50.75,32844000,1.65 +1991-09-30,49.25,49.75,49.00,49.50,15800400,1.61 +1991-09-27,50.00,50.75,48.75,49.00,15702400,1.59 +1991-09-26,50.25,50.25,49.00,50.00,17805200,1.63 +1991-09-25,50.25,50.50,49.25,50.50,13616400,1.64 +1991-09-24,49.50,50.38,48.25,50.25,26524400,1.63 +1991-09-23,50.00,50.75,49.25,49.50,21915600,1.61 +1991-09-20,49.75,51.00,49.50,50.63,47037200,1.65 +1991-09-19,50.25,50.50,49.50,49.75,44584400,1.62 +1991-09-18,48.75,50.50,48.50,50.13,30338000,1.63 +1991-09-17,47.00,49.00,46.75,49.00,33852000,1.59 +1991-09-16,49.25,49.25,46.50,47.25,51444400,1.54 +1991-09-13,50.00,50.25,48.50,48.63,41683600,1.58 +1991-09-12,51.25,51.25,49.75,50.63,29803200,1.65 +1991-09-11,50.75,51.00,49.50,50.50,44500400,1.64 +1991-09-10,52.75,53.38,49.75,50.13,45710000,1.63 +1991-09-09,51.75,53.50,51.50,53.25,31620400,1.73 +1991-09-06,51.00,51.75,50.50,51.50,19818400,1.67 +1991-09-05,51.50,51.75,50.75,51.00,19471200,1.66 +1991-09-04,52.75,52.75,51.37,51.50,29946000,1.67 +1991-09-03,52.75,53.25,52.00,52.50,17094000,1.71 +1991-08-30,53.00,53.25,52.25,53.00,16534000,1.72 +1991-08-29,53.25,53.88,52.50,53.00,28338800,1.72 +1991-08-28,54.00,54.25,53.12,53.25,26896800,1.73 +1991-08-27,53.00,54.00,52.75,54.00,25088000,1.76 +1991-08-26,53.00,53.50,52.50,53.00,25398800,1.72 +1991-08-23,54.00,55.50,52.75,53.00,60104800,1.72 +1991-08-22,54.00,54.75,53.75,54.25,41412000,1.76 +1991-08-21,52.50,54.13,52.00,53.75,55843200,1.75 +1991-08-20,51.50,51.75,50.50,51.00,49856800,1.66 +1991-08-19,49.50,51.62,48.50,50.50,80620400,1.64 +1991-08-16,52.75,54.25,52.25,53.25,39701200,1.73 +1991-08-15,55.00,55.00,53.00,53.25,36386000,1.73 +1991-08-14,54.75,55.00,53.88,54.87,50178800,1.78 +1991-08-13,52.00,54.00,52.00,53.50,71646400,1.74 +1991-08-12,50.75,52.25,50.50,51.75,35632800,1.68 +1991-08-09,50.50,51.00,49.75,50.75,38600800,1.65 +1991-08-08,50.75,51.75,50.00,50.50,47362000,1.64 +1991-08-07,49.50,51.00,49.37,50.38,52903200,1.63 +1991-08-06,48.75,50.25,47.75,49.50,55106800,1.61 +1991-08-05,49.75,49.75,48.25,48.50,25191600,1.57 +1991-08-02,49.75,50.25,49.00,50.00,68252800,1.62 +1991-08-01,46.00,49.25,45.75,49.12,112106400,1.59 +1991-07-31,46.50,46.88,45.00,46.25,25701200,1.50 +1991-07-30,45.50,46.75,45.50,46.50,22965600,1.51 +1991-07-29,45.25,45.50,44.50,45.50,13325200,1.48 +1991-07-26,45.75,45.75,44.75,44.88,18558400,1.46 +1991-07-25,45.25,45.75,45.00,45.25,16450000,1.47 +1991-07-24,45.25,45.75,44.50,45.00,32863600,1.46 +1991-07-23,46.25,46.50,44.50,45.00,33264000,1.46 +1991-07-22,45.75,46.25,45.50,46.00,27168400,1.49 +1991-07-19,45.25,46.25,45.00,46.00,32104800,1.49 +1991-07-18,44.00,45.13,43.00,44.88,99579200,1.46 +1991-07-17,43.50,44.50,42.25,42.50,52234000,1.38 +1991-07-16,45.50,45.75,43.50,43.75,55748000,1.42 +1991-07-15,46.75,46.75,45.50,45.50,34496000,1.48 +1991-07-12,47.25,47.25,46.25,46.75,33188400,1.52 +1991-07-11,47.00,47.25,46.00,46.75,36478400,1.52 +1991-07-10,47.50,48.25,46.75,47.25,39144000,1.53 +1991-07-09,47.25,48.25,46.50,46.88,56610400,1.52 +1991-07-08,45.25,47.25,45.00,46.75,76770400,1.52 +1991-07-05,43.00,46.00,42.75,45.62,82888400,1.48 +1991-07-03,42.25,43.50,41.75,43.13,77593600,1.40 +1991-07-02,42.25,42.75,41.75,42.25,30035600,1.37 +1991-07-01,42.25,43.00,41.75,42.50,48706000,1.38 +1991-06-28,42.25,42.50,40.25,41.50,56660800,1.35 +1991-06-27,42.50,42.75,41.75,42.50,37800000,1.38 +1991-06-26,42.75,43.50,42.25,43.00,62610800,1.39 +1991-06-25,42.00,43.00,41.75,42.37,56980000,1.37 +1991-06-24,41.75,42.25,41.25,41.75,51996000,1.35 +1991-06-21,42.00,42.50,41.75,42.00,51503200,1.36 +1991-06-20,41.25,42.00,40.75,42.00,36010800,1.36 +1991-06-19,41.75,42.25,41.25,41.75,44735600,1.35 +1991-06-18,42.25,43.25,41.50,42.12,61171600,1.37 +1991-06-17,41.00,42.25,41.00,42.00,41650000,1.36 +1991-06-14,42.75,42.75,40.75,41.12,56322000,1.33 +1991-06-13,42.50,43.00,41.75,42.12,52841600,1.37 +1991-06-12,44.00,44.75,41.25,42.37,108908800,1.37 +1991-06-11,45.00,45.50,44.25,44.62,47140800,1.45 +1991-06-10,46.00,47.13,45.75,46.00,41860000,1.49 +1991-06-07,46.25,47.00,45.62,46.12,38186400,1.50 +1991-06-06,48.25,48.25,46.50,46.63,42126000,1.51 +1991-06-05,49.25,49.25,47.75,48.00,33322800,1.56 +1991-06-04,49.50,49.50,48.50,49.12,46071200,1.59 +1991-06-03,47.00,49.50,46.75,49.25,55017200,1.60 +1991-05-31,47.50,47.75,46.25,47.00,54465600,1.52 +1991-05-30,47.00,47.75,46.50,47.62,39586400,1.54 +1991-05-29,46.25,47.75,45.87,47.00,96000800,1.52 +1991-05-28,46.00,46.25,45.25,46.00,42859600,1.49 +1991-05-24,45.50,46.00,45.00,45.87,24281600,1.49 +1991-05-23,46.50,46.75,44.75,45.13,52164000,1.46 +1991-05-22,45.75,46.50,45.50,46.25,56817600,1.50 +1991-05-21,45.25,46.50,44.75,45.25,87449600,1.47 +1991-05-20,47.25,47.50,44.00,44.25,65542400,1.44 +1991-05-17,48.75,48.75,46.50,47.00,117765200,1.52 +1991-05-16,51.00,51.25,48.50,49.00,95533200,1.59 +1991-05-15,51.50,52.00,49.00,50.50,129586800,1.63 +1991-05-14,52.75,53.75,52.50,53.50,54236000,1.73 +1991-05-13,52.25,53.50,51.50,52.75,61236000,1.71 +1991-05-10,51.50,53.25,50.75,51.25,60432400,1.66 +1991-05-09,50.00,51.50,49.75,50.75,59553200,1.64 +1991-05-08,50.75,50.75,49.25,49.75,44195200,1.61 +1991-05-07,51.00,51.25,50.50,50.63,67620000,1.64 +1991-05-06,48.50,50.50,48.25,50.25,53082400,1.63 +1991-05-03,49.00,49.50,48.25,49.00,60928000,1.59 +1991-05-02,47.75,49.75,47.50,49.00,202781600,1.59 +1991-05-01,48.00,49.00,47.00,47.25,467093200,1.53 +1991-04-30,57.75,58.25,54.50,55.00,177861600,1.78 +1991-04-29,58.50,60.25,58.25,58.25,51676800,1.88 +1991-04-26,58.50,59.00,57.75,58.62,31264800,1.90 +1991-04-25,59.75,59.75,58.50,58.50,78845200,1.89 +1991-04-24,61.75,62.00,60.50,60.75,26362000,1.97 +1991-04-23,62.25,63.00,60.25,61.50,59323600,1.99 +1991-04-22,59.50,62.00,58.75,61.50,64254400,1.99 +1991-04-19,61.00,61.50,59.50,59.62,71825600,1.93 +1991-04-18,62.75,63.00,60.75,61.00,61840800,1.97 +1991-04-17,65.00,65.00,62.00,63.25,80600800,2.05 +1991-04-16,63.25,64.50,62.50,64.25,155195600,2.08 +1991-04-15,61.75,64.50,60.00,62.25,425096000,2.01 +1991-04-12,71.50,73.25,69.75,71.75,91929600,2.32 +1991-04-11,67.75,71.38,67.50,71.00,88897200,2.30 +1991-04-10,68.50,69.25,66.75,66.87,54101600,2.16 +1991-04-09,69.75,70.00,68.25,68.75,29862000,2.22 +1991-04-08,69.25,70.00,68.75,70.00,18118800,2.26 +1991-04-05,71.75,71.75,68.75,69.38,38852800,2.24 +1991-04-04,70.00,72.00,69.50,71.50,42109200,2.31 +1991-04-03,72.50,72.75,70.00,70.00,60032000,2.26 +1991-04-02,69.00,72.75,68.50,72.75,73231200,2.35 +1991-04-01,68.00,69.50,67.50,68.50,29481200,2.22 +1991-03-28,69.25,70.00,67.75,68.00,19675600,2.20 +1991-03-27,70.00,70.25,68.50,69.25,47555200,2.24 +1991-03-26,64.75,70.25,64.75,70.00,83406400,2.26 +1991-03-25,63.50,65.00,63.25,64.50,33964000,2.09 +1991-03-22,64.00,64.75,62.25,63.25,84532000,2.05 +1991-03-21,68.25,68.75,63.75,64.75,74200000,2.10 +1991-03-20,69.25,69.50,66.87,67.75,90426000,2.19 +1991-03-19,66.50,70.25,65.75,69.50,105548800,2.25 +1991-03-18,65.75,68.25,65.75,67.75,53502400,2.19 +1991-03-15,65.75,66.50,65.25,66.25,51209200,2.14 +1991-03-14,66.75,67.50,64.50,65.25,56767200,2.11 +1991-03-13,62.75,66.50,62.75,66.25,43638000,2.14 +1991-03-12,63.00,63.75,62.50,62.88,58419200,2.03 +1991-03-11,64.50,64.75,62.25,63.50,43842400,2.05 +1991-03-08,67.75,68.25,65.00,65.00,80550400,2.10 +1991-03-07,63.50,67.50,63.25,67.25,80438400,2.18 +1991-03-06,64.00,65.62,62.88,63.00,130989600,2.04 +1991-03-05,59.00,63.25,59.00,63.12,110362000,2.04 +1991-03-04,58.00,58.75,57.00,58.37,22089200,1.89 +1991-03-01,57.00,59.00,57.00,57.75,31533600,1.87 +1991-02-28,58.25,58.50,56.25,57.25,56840000,1.85 +1991-02-27,58.25,58.50,57.50,58.25,43593200,1.88 +1991-02-26,57.50,58.75,56.50,58.25,62504400,1.88 +1991-02-25,60.25,60.50,57.50,58.00,89818400,1.88 +1991-02-22,59.00,61.75,58.50,59.75,58142000,1.93 +1991-02-21,61.25,62.25,58.75,59.00,47717600,1.91 +1991-02-20,59.50,61.75,59.25,61.00,53410000,1.97 +1991-02-19,57.50,60.25,57.38,60.00,56562800,1.94 +1991-02-15,57.25,58.50,57.25,57.63,91403200,1.86 +1991-02-14,60.00,60.00,56.75,57.13,94418800,1.84 +1991-02-13,60.00,60.25,58.00,60.00,63887600,1.94 +1991-02-12,61.00,61.25,59.38,60.00,56187600,1.94 +1991-02-11,60.00,61.50,59.75,61.37,80757600,1.98 +1991-02-08,57.50,60.25,57.50,59.87,78388800,1.93 +1991-02-07,57.00,58.75,55.75,57.75,130043200,1.86 +1991-02-06,57.75,58.25,56.50,56.88,55641600,1.84 +1991-02-05,55.25,58.00,54.75,57.75,89028800,1.86 +1991-02-04,55.75,56.00,55.00,55.25,66962000,1.78 +1991-02-01,55.50,57.87,55.50,55.75,111137600,1.80 +1991-01-31,55.50,56.00,54.75,55.50,60648000,1.79 +1991-01-30,53.25,55.75,53.25,55.50,84193200,1.79 +1991-01-29,54.25,54.50,52.25,53.75,53888800,1.74 +1991-01-28,53.25,55.25,53.25,54.50,68370400,1.76 +1991-01-25,52.00,53.63,52.00,53.50,55952400,1.73 +1991-01-24,51.50,52.75,51.50,52.13,58483600,1.68 +1991-01-23,51.25,52.25,51.00,51.75,61065200,1.67 +1991-01-22,51.00,52.50,50.50,51.25,106932000,1.65 +1991-01-21,49.75,51.50,49.75,50.75,81076800,1.64 +1991-01-18,48.75,50.75,48.50,50.25,235810400,1.62 +1991-01-17,52.50,52.75,49.00,51.25,147918400,1.65 +1991-01-16,47.00,50.00,46.75,49.75,97658400,1.61 +1991-01-15,46.50,46.75,46.00,46.75,48014400,1.51 +1991-01-14,46.00,46.75,46.00,46.25,52710000,1.49 +1991-01-11,47.00,47.25,46.00,47.00,76913200,1.52 +1991-01-10,45.75,47.25,45.75,47.13,108830400,1.52 +1991-01-09,44.25,46.00,43.75,45.25,116816000,1.46 +1991-01-08,43.75,43.87,42.50,43.25,54672800,1.40 +1991-01-07,43.00,45.25,43.00,43.25,77700000,1.40 +1991-01-04,43.00,44.25,43.00,43.25,35380800,1.40 +1991-01-03,43.50,44.25,43.00,43.00,37545200,1.39 +1991-01-02,42.75,44.00,42.00,43.50,38746400,1.40 +1990-12-31,43.00,43.25,42.75,43.00,11068400,1.39 +1990-12-28,43.25,43.50,42.75,43.00,15982400,1.39 +1990-12-27,43.25,44.00,43.25,43.50,24413200,1.40 +1990-12-26,44.00,44.25,43.00,43.75,25768400,1.41 +1990-12-24,44.75,45.00,44.00,44.00,14680400,1.42 +1990-12-21,44.25,45.25,43.50,45.00,86534000,1.45 +1990-12-20,41.25,44.50,41.25,44.00,100268000,1.42 +1990-12-19,42.50,42.50,41.12,41.88,35165200,1.35 +1990-12-18,41.00,42.50,40.75,42.25,55246800,1.36 +1990-12-17,39.00,40.50,39.00,40.13,32776800,1.30 +1990-12-14,40.25,40.50,39.50,39.88,21767200,1.29 +1990-12-13,39.50,41.00,39.50,40.75,40182800,1.32 +1990-12-12,39.75,40.00,39.00,39.63,60589200,1.28 +1990-12-11,41.25,41.50,40.00,40.00,86970800,1.29 +1990-12-10,42.25,42.50,41.50,41.75,62647200,1.35 +1990-12-07,41.00,42.75,41.00,42.50,82415200,1.37 +1990-12-06,41.25,41.75,40.50,41.25,133061600,1.33 +1990-12-05,38.50,40.25,37.88,40.13,54597200,1.30 +1990-12-04,37.50,38.75,37.50,38.50,38038000,1.24 +1990-12-03,37.25,38.25,37.00,38.13,41350400,1.23 +1990-11-30,36.25,37.25,36.25,36.75,30377200,1.19 +1990-11-29,37.00,37.00,36.25,36.75,31676400,1.19 +1990-11-28,37.75,38.50,36.75,36.75,43727600,1.19 +1990-11-27,37.00,38.25,36.75,37.50,41146000,1.21 +1990-11-26,36.00,37.00,36.00,36.75,20364400,1.19 +1990-11-23,36.25,37.00,36.00,36.38,13300000,1.17 +1990-11-21,35.25,36.25,34.75,36.13,30802800,1.17 +1990-11-20,36.50,36.75,35.25,35.50,38407600,1.15 +1990-11-19,35.50,36.38,35.25,36.38,55977600,1.17 +1990-11-16,35.75,36.00,34.75,35.12,45752000,1.13 +1990-11-15,36.75,37.00,35.50,36.00,40443200,1.16 +1990-11-14,35.75,37.25,35.75,37.00,47686800,1.19 +1990-11-13,36.25,36.50,35.75,36.00,35487200,1.16 +1990-11-12,35.50,36.75,35.25,36.25,36262800,1.17 +1990-11-09,35.00,35.75,34.50,35.50,49557200,1.14 +1990-11-08,33.00,35.00,33.00,34.50,49812000,1.11 +1990-11-07,33.50,33.75,32.63,33.25,50744400,1.07 +1990-11-06,33.50,34.50,33.25,33.50,46191600,1.08 +1990-11-05,32.25,33.50,32.00,33.25,46118800,1.07 +1990-11-02,30.50,32.38,30.50,31.75,37153200,1.02 +1990-11-01,30.50,31.00,29.75,30.50,22663200,0.98 +1990-10-31,30.50,31.87,30.25,30.75,37189600,0.99 +1990-10-30,29.75,30.75,28.88,30.37,24511200,0.98 +1990-10-29,30.25,30.50,29.75,29.87,30870000,0.96 +1990-10-26,29.75,31.25,29.75,30.00,33549600,0.97 +1990-10-25,30.25,31.25,29.63,30.00,38365600,0.97 +1990-10-24,30.75,31.00,30.00,30.50,35456400,0.98 +1990-10-23,31.00,31.50,30.25,31.00,41762000,1.00 +1990-10-22,31.50,31.50,30.50,31.13,63184800,1.00 +1990-10-19,31.25,31.75,30.25,31.38,233433200,1.01 +1990-10-18,26.50,28.75,26.50,28.50,78750000,0.92 +1990-10-17,25.25,26.50,25.00,26.50,77266000,0.85 +1990-10-16,27.50,27.50,24.25,25.00,76308400,0.80 +1990-10-15,28.50,28.75,26.62,27.75,50254400,0.89 +1990-10-12,28.25,28.50,27.00,28.25,57162000,0.91 +1990-10-11,26.75,27.88,25.50,27.75,51494800,0.89 +1990-10-10,27.25,28.00,26.00,26.50,36976800,0.85 +1990-10-09,28.50,29.00,27.75,28.00,30144800,0.90 +1990-10-08,28.75,29.25,28.25,29.13,15383200,0.94 +1990-10-05,27.00,28.75,27.00,28.00,24872400,0.90 +1990-10-04,26.75,28.00,26.25,28.00,53373600,0.90 +1990-10-03,29.75,29.75,26.75,27.00,67060000,0.87 +1990-10-02,31.00,32.00,29.50,29.63,67746000,0.95 +1990-10-01,29.50,31.00,29.25,30.50,38914400,0.98 +1990-09-28,28.50,29.00,27.25,29.00,44010400,0.93 +1990-09-27,30.00,30.50,28.00,28.25,35585200,0.91 +1990-09-26,30.00,30.50,29.75,29.75,23534000,0.96 +1990-09-25,30.50,30.75,29.25,30.00,39488400,0.97 +1990-09-24,31.50,31.50,29.75,30.25,34624800,0.97 +1990-09-21,32.00,32.50,31.00,31.50,38466400,1.01 +1990-09-20,32.25,32.25,31.25,31.62,25233600,1.02 +1990-09-19,33.25,33.75,32.00,32.50,45614800,1.05 +1990-09-18,33.75,33.75,33.00,33.37,31152800,1.07 +1990-09-17,34.00,35.25,33.50,33.75,19418000,1.09 +1990-09-14,33.50,34.25,33.25,34.00,28478800,1.09 +1990-09-13,34.50,34.75,33.00,33.75,24315200,1.09 +1990-09-12,34.50,34.50,33.50,34.00,25102000,1.09 +1990-09-11,36.00,36.13,33.75,34.00,44567600,1.09 +1990-09-10,37.00,37.00,35.75,35.75,18995200,1.15 +1990-09-07,35.50,36.75,35.12,36.38,14543200,1.17 +1990-09-06,35.50,36.00,35.25,35.75,21907200,1.15 +1990-09-05,37.25,37.25,35.75,36.00,16013200,1.16 +1990-09-04,36.50,37.50,36.50,37.00,20686400,1.19 +1990-08-31,36.00,37.25,36.00,37.00,24864000,1.19 +1990-08-30,37.25,37.50,36.00,36.25,30648800,1.17 +1990-08-29,38.00,38.13,36.75,37.25,37732800,1.20 +1990-08-28,37.50,38.38,37.25,38.13,20048000,1.23 +1990-08-27,36.75,38.00,36.25,37.75,29366400,1.21 +1990-08-24,35.25,36.00,34.75,35.50,18354000,1.14 +1990-08-23,34.25,35.00,33.50,34.50,35924000,1.11 +1990-08-22,37.00,37.00,34.88,35.12,30679600,1.13 +1990-08-21,35.75,36.75,35.25,36.25,40261200,1.17 +1990-08-20,36.50,37.50,36.25,36.75,18765600,1.18 +1990-08-17,38.50,38.50,35.75,36.50,61527200,1.17 +1990-08-16,39.00,39.63,38.50,38.50,30973600,1.24 +1990-08-15,40.00,40.25,39.25,39.25,23013200,1.26 +1990-08-14,40.00,40.00,39.25,39.75,24542000,1.28 +1990-08-13,38.00,40.00,37.88,39.88,39029200,1.28 +1990-08-10,38.75,39.25,38.25,38.75,25676000,1.24 +1990-08-09,40.25,40.50,39.25,39.50,24096800,1.27 +1990-08-08,39.50,40.75,39.50,40.13,25634000,1.29 +1990-08-07,40.25,40.62,38.75,39.50,49632800,1.27 +1990-08-06,39.00,40.50,38.50,39.50,44914800,1.27 +1990-08-03,43.50,43.75,39.75,41.25,67242000,1.32 +1990-08-02,41.25,43.75,41.25,43.50,55781600,1.40 +1990-08-01,42.00,42.75,41.50,42.37,23377200,1.36 +1990-07-31,42.50,42.75,41.50,42.00,24001600,1.35 +1990-07-30,40.75,42.50,40.75,42.37,21364000,1.36 +1990-07-27,41.25,41.75,40.50,41.38,15579200,1.33 +1990-07-26,42.25,42.50,41.00,41.38,20084400,1.33 +1990-07-25,42.00,43.25,41.75,42.25,26230400,1.36 +1990-07-24,42.00,42.25,41.00,42.12,48479200,1.35 +1990-07-23,41.00,41.75,40.00,41.50,67547200,1.33 +1990-07-20,42.00,42.50,40.75,41.00,47961200,1.32 +1990-07-19,40.75,42.50,40.00,41.75,146496000,1.34 +1990-07-18,44.50,45.00,43.00,44.62,72091600,1.43 +1990-07-17,45.75,46.00,44.00,44.25,34213200,1.42 +1990-07-16,46.75,47.13,45.25,45.62,44926000,1.46 +1990-07-13,47.50,47.75,46.75,46.75,57744400,1.50 +1990-07-12,46.75,47.50,46.50,47.37,45617600,1.52 +1990-07-11,46.75,47.00,45.75,47.00,61538400,1.51 +1990-07-10,47.00,47.50,46.75,47.00,90356000,1.51 +1990-07-09,45.00,47.00,44.75,46.63,78864800,1.50 +1990-07-06,43.50,45.00,43.25,44.75,52264800,1.44 +1990-07-05,43.75,44.25,43.25,43.50,26866000,1.40 +1990-07-03,43.87,44.50,43.75,44.00,24875200,1.41 +1990-07-02,44.50,44.50,43.75,44.00,33852000,1.41 +1990-06-29,43.00,44.88,42.75,44.75,81298000,1.44 +1990-06-28,42.75,43.25,41.75,43.00,62484800,1.38 +1990-06-27,40.75,42.00,40.25,41.50,24306800,1.33 +1990-06-26,41.75,42.00,40.37,40.62,31813600,1.30 +1990-06-25,41.50,41.75,40.25,41.25,30500400,1.32 +1990-06-22,42.00,42.62,41.25,41.50,70994000,1.33 +1990-06-21,40.00,42.00,40.00,41.88,52150000,1.34 +1990-06-20,39.88,40.25,39.75,40.00,38684800,1.28 +1990-06-19,39.00,39.75,38.38,39.63,39306400,1.27 +1990-06-18,39.25,39.50,39.00,39.25,27848800,1.26 +1990-06-15,39.75,40.00,39.12,39.50,36036000,1.27 +1990-06-14,40.00,40.25,39.25,39.75,35081200,1.28 +1990-06-13,40.37,40.75,39.75,39.75,34736800,1.28 +1990-06-12,39.12,40.50,38.75,40.50,41258000,1.30 +1990-06-11,37.75,39.00,37.75,39.00,39474400,1.25 +1990-06-08,38.50,38.50,37.50,38.25,83470800,1.23 +1990-06-07,39.50,39.75,38.50,39.00,46608800,1.25 +1990-06-06,39.00,39.50,38.75,39.50,52936800,1.27 +1990-06-05,41.00,41.00,39.00,39.50,74858000,1.27 +1990-06-04,40.75,41.00,39.75,40.75,44856000,1.31 +1990-06-01,41.38,42.00,40.75,40.75,39309200,1.31 +1990-05-31,41.50,41.50,41.00,41.25,25771200,1.32 +1990-05-30,41.63,41.75,41.25,41.38,69204800,1.33 +1990-05-29,40.00,41.25,39.25,41.00,60802000,1.32 +1990-05-25,39.50,40.75,39.00,40.00,80830400,1.28 +1990-05-24,42.25,42.25,41.50,42.00,37032800,1.35 +1990-05-23,41.25,42.50,41.25,42.00,51878400,1.35 +1990-05-22,40.13,41.50,40.00,41.38,75272400,1.33 +1990-05-21,39.50,40.00,38.75,39.50,65620800,1.27 +1990-05-18,41.25,41.50,39.50,39.75,64615600,1.27 +1990-05-17,41.75,42.25,41.00,41.50,38396400,1.33 +1990-05-16,41.75,41.75,41.00,41.63,21826000,1.33 +1990-05-15,41.38,42.00,41.00,41.75,37346400,1.34 +1990-05-14,42.75,42.75,41.25,41.75,56596400,1.34 +1990-05-11,41.38,42.75,40.75,42.62,53810400,1.36 +1990-05-10,41.75,41.75,40.50,41.38,44760800,1.32 +1990-05-09,41.63,42.00,41.25,41.88,24309600,1.34 +1990-05-08,41.00,42.00,41.00,41.75,28114800,1.34 +1990-05-07,39.75,41.75,39.75,41.50,33997600,1.33 +1990-05-04,40.00,40.75,39.25,40.00,42383600,1.28 +1990-05-03,39.75,40.25,39.75,40.00,41577200,1.28 +1990-05-02,39.75,40.00,39.25,39.75,33857600,1.27 +1990-05-01,39.75,40.00,39.38,39.63,40902400,1.27 +1990-04-30,39.25,39.75,39.00,39.38,34098400,1.26 +1990-04-27,39.00,39.50,38.75,39.12,29103200,1.25 +1990-04-26,39.00,39.50,38.13,38.87,35540400,1.24 +1990-04-25,38.75,39.00,38.25,38.75,33143600,1.24 +1990-04-24,40.00,40.50,38.50,38.75,75933200,1.24 +1990-04-23,40.25,40.50,39.50,39.75,32088000,1.27 +1990-04-20,40.87,41.50,39.75,40.25,80880800,1.29 +1990-04-19,41.75,43.13,40.00,40.25,120369200,1.29 +1990-04-18,43.25,43.75,42.50,43.25,48361600,1.38 +1990-04-17,43.25,43.50,42.75,43.25,32776800,1.38 +1990-04-16,43.50,44.25,43.25,43.75,56722400,1.40 +1990-04-12,43.00,44.00,42.50,43.25,52950800,1.38 +1990-04-11,41.50,43.00,41.50,42.50,53289600,1.36 +1990-04-10,41.25,42.00,41.00,41.25,32830000,1.32 +1990-04-09,39.75,41.50,39.50,41.12,26370400,1.32 +1990-04-06,40.25,41.25,39.75,39.88,29559600,1.28 +1990-04-05,41.00,41.25,40.00,40.25,27048000,1.29 +1990-04-04,41.50,42.00,40.75,41.25,37433200,1.32 +1990-04-03,40.50,41.75,40.50,41.75,34927200,1.34 +1990-04-02,40.00,40.62,39.50,40.25,37192400,1.29 +1990-03-30,40.00,41.00,40.00,40.25,55837600,1.29 +1990-03-29,41.00,41.50,40.75,41.12,24222800,1.32 +1990-03-28,42.00,42.12,41.00,41.25,25734800,1.32 +1990-03-27,42.00,42.25,41.25,42.00,21151200,1.34 +1990-03-26,42.50,43.38,42.00,42.25,32015200,1.35 +1990-03-23,41.25,43.00,41.00,42.25,56996800,1.35 +1990-03-22,41.75,42.25,40.75,40.75,57915200,1.30 +1990-03-21,41.25,42.25,41.25,41.63,38183600,1.33 +1990-03-20,42.25,43.00,40.75,41.38,97829200,1.32 +1990-03-19,40.50,42.50,40.00,42.37,107948400,1.36 +1990-03-16,40.00,40.75,39.12,40.25,161190400,1.29 +1990-03-15,36.50,38.00,36.50,36.75,30058000,1.18 +1990-03-14,36.75,37.25,36.50,37.00,25446400,1.18 +1990-03-13,36.50,37.25,36.25,36.87,37144800,1.18 +1990-03-12,37.25,37.50,36.25,36.63,40989200,1.17 +1990-03-09,36.75,37.50,36.25,36.87,57618400,1.18 +1990-03-08,35.75,37.00,35.00,36.75,55960800,1.18 +1990-03-07,35.00,36.00,35.00,35.37,51055200,1.13 +1990-03-06,35.00,35.25,34.50,35.25,39004000,1.13 +1990-03-05,33.50,34.75,33.50,34.50,45617600,1.10 +1990-03-02,33.50,34.75,33.25,33.75,26224800,1.08 +1990-03-01,33.50,34.75,33.25,34.25,50974000,1.10 +1990-02-28,33.50,34.00,33.25,34.00,27333600,1.09 +1990-02-27,34.00,34.25,33.50,33.50,18488400,1.07 +1990-02-26,33.00,34.25,33.00,34.00,19902400,1.09 +1990-02-23,32.75,33.50,32.75,33.25,37489200,1.06 +1990-02-22,34.00,34.50,33.00,33.00,48795600,1.06 +1990-02-21,32.75,34.25,32.50,34.00,43976800,1.09 +1990-02-20,33.50,33.75,33.00,33.50,30811200,1.07 +1990-02-16,34.25,34.50,33.75,33.75,31802400,1.08 +1990-02-15,33.75,34.25,33.50,34.25,24491600,1.09 +1990-02-14,34.50,34.75,33.75,34.25,24015600,1.09 +1990-02-13,34.00,35.00,33.75,34.50,25541600,1.10 +1990-02-12,34.25,34.50,33.75,34.00,18729200,1.08 +1990-02-09,33.50,34.50,33.25,34.25,42019600,1.09 +1990-02-08,33.25,33.50,32.25,33.00,46659200,1.05 +1990-02-07,33.00,34.00,32.50,33.25,78111600,1.06 +1990-02-06,34.75,35.00,34.00,34.75,18480000,1.11 +1990-02-05,34.25,35.25,34.00,35.00,25438000,1.12 +1990-02-02,33.25,34.75,33.25,34.25,29618400,1.09 +1990-02-01,34.50,34.63,33.50,33.62,29268400,1.07 +1990-01-31,34.50,34.75,33.00,34.00,35985600,1.08 +1990-01-30,33.25,34.50,33.00,34.00,29111600,1.08 +1990-01-29,33.00,33.50,32.12,33.25,29982400,1.06 +1990-01-26,34.00,34.00,32.25,32.75,45312400,1.04 +1990-01-25,34.25,34.75,34.00,34.12,27885200,1.09 +1990-01-24,32.50,34.25,32.25,34.00,42448000,1.08 +1990-01-23,33.75,34.25,33.00,33.75,35218400,1.08 +1990-01-22,34.00,34.50,33.25,33.25,36402800,1.06 +1990-01-19,33.75,34.50,33.50,34.25,66284400,1.09 +1990-01-18,33.00,33.50,32.25,32.38,68322800,1.03 +1990-01-17,34.75,34.75,33.00,33.25,49324800,1.06 +1990-01-16,33.50,35.00,32.75,34.88,53561200,1.11 +1990-01-15,34.50,35.75,34.25,34.25,40434800,1.09 +1990-01-12,34.25,34.75,33.75,34.50,42974400,1.10 +1990-01-11,36.25,36.25,34.50,34.50,52763200,1.10 +1990-01-10,37.62,37.62,35.75,36.00,49929600,1.15 +1990-01-09,38.00,38.00,37.00,37.62,21534800,1.20 +1990-01-08,37.50,38.00,37.00,38.00,25393200,1.21 +1990-01-05,37.75,38.25,37.00,37.75,30828000,1.20 +1990-01-04,38.25,38.75,37.25,37.62,55378400,1.20 +1990-01-03,38.00,38.00,37.50,37.50,51998800,1.20 +1990-01-02,35.25,37.50,35.00,37.25,45799600,1.19 +1989-12-29,34.75,35.75,34.38,35.25,38102400,1.12 +1989-12-28,35.00,35.25,34.25,34.63,37814000,1.10 +1989-12-27,35.50,35.75,35.00,35.12,64251600,1.12 +1989-12-26,36.75,36.75,35.25,35.50,33821200,1.13 +1989-12-22,36.25,37.25,36.00,36.50,46146800,1.16 +1989-12-21,35.75,36.25,35.50,36.25,76202000,1.16 +1989-12-20,35.75,36.25,35.25,35.75,44497600,1.14 +1989-12-19,34.50,35.50,34.50,35.00,62798400,1.12 +1989-12-18,33.75,35.00,33.75,34.75,76801200,1.11 +1989-12-15,34.75,35.00,32.50,33.75,129542000,1.08 +1989-12-14,35.75,36.13,34.50,34.88,76188000,1.11 +1989-12-13,36.00,36.50,35.50,36.00,97440000,1.15 +1989-12-12,39.25,39.50,35.00,36.00,256354000,1.15 +1989-12-11,41.00,41.50,38.38,39.25,162503600,1.25 +1989-12-08,42.50,43.00,41.25,41.75,63145600,1.33 +1989-12-07,42.25,43.25,42.00,42.75,44604000,1.36 +1989-12-06,45.00,45.25,41.00,42.75,83745200,1.36 +1989-12-05,45.25,45.75,44.50,45.00,30441600,1.44 +1989-12-04,43.75,45.50,43.75,45.25,24340400,1.44 +1989-12-01,44.50,45.00,43.63,44.00,36556800,1.40 +1989-11-30,43.75,44.50,43.50,44.25,15862000,1.41 +1989-11-29,43.50,44.25,42.50,44.00,38236800,1.40 +1989-11-28,43.75,44.25,42.75,44.12,33843600,1.41 +1989-11-27,44.75,45.25,43.75,44.00,26286400,1.40 +1989-11-24,44.75,45.00,44.75,44.75,6963600,1.43 +1989-11-22,45.50,45.75,44.50,44.75,24486000,1.43 +1989-11-21,45.25,46.50,45.25,45.25,35061600,1.44 +1989-11-20,45.00,45.50,44.50,45.25,27017200,1.44 +1989-11-17,44.50,45.25,44.50,44.75,22139600,1.43 +1989-11-16,44.50,44.75,43.75,44.75,24141600,1.42 +1989-11-15,45.00,45.25,44.00,44.25,24446800,1.41 +1989-11-14,46.50,46.75,44.50,44.75,21095200,1.42 +1989-11-13,46.50,47.25,46.50,46.50,17004400,1.48 +1989-11-10,45.75,47.00,45.75,46.75,16214800,1.49 +1989-11-09,45.00,46.00,44.50,46.00,22047200,1.46 +1989-11-08,44.25,45.25,44.25,45.00,35658000,1.43 +1989-11-07,43.25,44.50,43.25,44.00,37830800,1.40 +1989-11-06,43.50,44.00,43.00,43.25,30772000,1.38 +1989-11-03,44.00,44.50,43.25,43.25,43663200,1.38 +1989-11-02,45.00,45.00,43.00,44.00,113167600,1.40 +1989-11-01,46.25,46.75,45.75,46.12,15296400,1.47 +1989-10-31,45.75,46.50,45.50,46.50,22999200,1.48 +1989-10-30,45.50,46.00,45.00,45.75,21744800,1.46 +1989-10-27,45.25,45.75,44.50,45.25,32354000,1.44 +1989-10-26,45.50,46.50,45.00,45.25,42316400,1.44 +1989-10-25,47.75,47.75,46.25,46.50,29786400,1.48 +1989-10-24,46.25,48.50,45.25,47.62,54110000,1.52 +1989-10-23,48.00,48.25,46.25,46.75,30489200,1.49 +1989-10-20,47.75,49.25,47.50,48.00,65377200,1.53 +1989-10-19,48.25,49.50,48.25,48.75,27974800,1.55 +1989-10-18,46.50,48.25,46.00,48.25,36008000,1.53 +1989-10-17,46.00,48.75,45.00,47.25,62510000,1.50 +1989-10-16,44.75,46.75,42.50,46.75,106229200,1.49 +1989-10-13,48.75,49.50,45.00,45.75,50279600,1.46 +1989-10-12,49.00,49.25,48.50,48.75,20661200,1.55 +1989-10-11,48.75,49.25,48.00,48.88,39239200,1.55 +1989-10-10,49.75,50.38,48.50,49.50,71780800,1.57 +1989-10-09,48.00,49.75,47.50,49.50,48888000,1.57 +1989-10-06,46.25,48.25,46.00,48.12,90426000,1.53 +1989-10-05,44.50,46.50,44.25,45.50,61320000,1.45 +1989-10-04,43.75,44.62,43.50,44.25,39793600,1.41 +1989-10-03,44.25,44.50,43.13,43.63,42624400,1.39 +1989-10-02,44.50,44.75,43.75,44.37,34350400,1.41 +1989-09-29,45.25,45.50,44.50,44.50,17452400,1.42 +1989-09-28,45.00,45.75,45.00,45.50,19854800,1.45 +1989-09-27,44.25,45.13,44.00,44.75,22531600,1.42 +1989-09-26,45.00,45.50,44.75,45.25,19331200,1.44 +1989-09-25,44.75,45.75,44.75,45.25,34039600,1.44 +1989-09-22,44.75,45.25,44.25,44.88,18124400,1.43 +1989-09-21,45.00,46.00,44.25,44.75,50240400,1.42 +1989-09-20,44.00,45.00,43.75,44.62,29537200,1.42 +1989-09-19,44.25,44.50,43.00,43.25,20199200,1.38 +1989-09-18,44.50,45.00,44.00,44.00,15789200,1.40 +1989-09-15,45.00,45.25,44.25,45.00,31217200,1.43 +1989-09-14,45.00,45.25,44.50,44.75,32821600,1.42 +1989-09-13,46.25,46.63,45.00,45.00,32172000,1.43 +1989-09-12,45.50,46.75,45.00,46.00,25897200,1.46 +1989-09-11,44.75,46.00,44.50,45.75,24648400,1.46 +1989-09-08,44.75,45.25,44.50,45.00,13958000,1.43 +1989-09-07,44.75,45.50,44.75,44.75,28473200,1.42 +1989-09-06,44.75,44.88,44.00,44.75,21688800,1.42 +1989-09-05,44.50,45.38,44.50,44.75,28705600,1.42 +1989-09-01,44.50,44.75,44.25,44.62,18530400,1.42 +1989-08-31,44.50,45.00,44.25,44.50,14072800,1.42 +1989-08-30,44.00,44.75,44.00,44.50,29024800,1.42 +1989-08-29,44.75,45.00,43.75,44.12,44226000,1.40 +1989-08-28,44.50,45.00,44.00,44.75,20414800,1.42 +1989-08-25,44.00,45.00,44.00,44.75,40348000,1.42 +1989-08-24,43.75,44.50,43.50,44.12,40731600,1.40 +1989-08-23,43.00,44.25,42.50,43.75,43411200,1.39 +1989-08-22,42.00,43.00,42.00,42.88,27958000,1.36 +1989-08-21,42.25,43.25,42.00,42.25,34456800,1.34 +1989-08-18,41.75,42.50,41.50,42.25,21016800,1.34 +1989-08-17,40.25,41.25,40.00,41.00,38329200,1.30 +1989-08-16,41.50,41.75,40.00,40.37,30133600,1.28 +1989-08-15,40.75,41.50,40.75,41.38,40933200,1.31 +1989-08-14,41.50,42.00,40.50,40.75,25706800,1.29 +1989-08-11,44.00,44.00,41.25,41.88,57520400,1.33 +1989-08-10,44.00,44.00,42.75,43.25,38091200,1.37 +1989-08-09,44.00,45.75,43.87,44.00,48790000,1.40 +1989-08-08,43.50,44.75,43.50,44.12,51548000,1.40 +1989-08-07,43.00,44.00,42.62,43.75,42053200,1.39 +1989-08-04,41.25,42.75,41.12,42.75,45838800,1.36 +1989-08-03,40.50,41.50,40.50,41.25,43234800,1.31 +1989-08-02,39.75,40.50,39.50,40.50,25351200,1.29 +1989-08-01,39.75,40.25,39.25,39.88,34885200,1.27 +1989-07-31,39.25,40.00,39.00,39.75,27966400,1.26 +1989-07-28,39.25,39.75,39.00,39.38,29834000,1.25 +1989-07-27,38.25,39.50,38.00,39.25,43268400,1.25 +1989-07-26,38.25,38.50,37.75,38.25,58436000,1.21 +1989-07-25,39.25,39.75,38.00,38.75,52460800,1.23 +1989-07-24,39.75,39.75,39.25,39.25,28996800,1.25 +1989-07-21,39.75,40.00,39.00,40.00,34871200,1.27 +1989-07-20,40.75,41.25,39.75,40.00,59018400,1.27 +1989-07-19,39.50,40.75,39.00,40.50,59743600,1.29 +1989-07-18,40.75,40.75,38.75,39.25,119327600,1.25 +1989-07-17,40.75,41.25,39.75,40.75,32723600,1.29 +1989-07-14,40.75,41.00,39.75,40.75,64330000,1.29 +1989-07-13,40.00,41.00,39.50,40.62,56358400,1.29 +1989-07-12,39.75,40.25,39.50,40.00,31032400,1.27 +1989-07-11,40.75,41.00,39.75,39.75,60981200,1.26 +1989-07-10,41.00,41.25,40.00,40.50,50923600,1.29 +1989-07-07,41.25,42.00,40.50,41.25,26527200,1.31 +1989-07-06,40.75,41.75,40.25,41.25,43481200,1.31 +1989-07-05,40.50,40.75,40.00,40.50,29789200,1.29 +1989-07-03,41.75,41.75,40.75,40.75,12087600,1.29 +1989-06-30,40.50,41.75,39.50,41.25,41185200,1.31 +1989-06-29,41.00,41.25,40.00,40.62,58380000,1.29 +1989-06-28,42.25,42.25,41.00,41.75,64257200,1.33 +1989-06-27,43.75,44.25,42.50,42.62,26446000,1.35 +1989-06-26,44.00,44.00,43.25,43.50,45959200,1.38 +1989-06-23,43.25,44.25,43.25,43.87,30973600,1.39 +1989-06-22,42.50,43.75,42.00,43.25,34300000,1.37 +1989-06-21,43.00,43.50,42.25,42.50,32466000,1.35 +1989-06-20,44.00,44.00,42.25,43.00,33633600,1.36 +1989-06-19,44.50,44.75,43.50,44.00,45780000,1.40 +1989-06-16,44.75,45.50,43.50,44.50,135500400,1.41 +1989-06-15,49.50,49.75,47.50,47.50,40350800,1.51 +1989-06-14,49.00,50.25,48.25,49.62,62826400,1.57 +1989-06-13,47.50,48.75,47.00,48.50,57744400,1.54 +1989-06-12,46.75,47.75,46.25,47.50,20216000,1.51 +1989-06-09,47.25,47.75,46.50,47.00,23604000,1.49 +1989-06-08,48.50,49.00,47.25,47.62,44503200,1.51 +1989-06-07,46.75,48.50,46.75,48.25,43918000,1.53 +1989-06-06,46.75,47.00,46.25,46.75,36251600,1.48 +1989-06-05,48.75,49.00,46.50,47.00,31029600,1.49 +1989-06-02,48.50,49.50,48.50,49.00,31119200,1.56 +1989-06-01,47.75,49.25,47.50,48.75,44875600,1.55 +1989-05-31,47.50,48.12,47.00,47.75,28803600,1.52 +1989-05-30,48.25,49.00,47.37,47.50,27980400,1.51 +1989-05-26,48.25,49.00,48.00,48.50,28128800,1.54 +1989-05-25,47.25,49.00,47.25,48.25,58091600,1.53 +1989-05-24,45.25,47.75,45.25,47.75,74401600,1.52 +1989-05-23,46.00,46.00,45.25,45.50,33616800,1.44 +1989-05-22,45.75,46.25,45.25,46.00,47600000,1.46 +1989-05-19,44.75,46.25,44.75,45.75,82692400,1.45 +1989-05-18,45.25,45.50,44.75,44.75,52813600,1.42 +1989-05-17,45.25,45.50,45.00,45.25,62115200,1.43 +1989-05-16,46.00,46.25,45.00,45.38,57167600,1.44 +1989-05-15,44.75,46.25,44.75,46.00,79475200,1.46 +1989-05-12,44.50,45.00,44.00,45.00,116785200,1.43 +1989-05-11,43.25,44.25,43.00,43.87,75236000,1.39 +1989-05-10,43.00,43.50,42.50,43.25,58609600,1.37 +1989-05-09,42.00,43.00,42.00,42.50,86693600,1.35 +1989-05-08,41.50,42.25,41.50,42.25,51480800,1.34 +1989-05-05,42.50,42.75,41.50,41.50,115189200,1.31 +1989-05-04,40.25,41.25,40.00,41.00,47227600,1.30 +1989-05-03,39.75,40.75,39.75,40.25,55134800,1.27 +1989-05-02,39.00,40.25,39.00,39.88,53936400,1.26 +1989-05-01,38.50,39.25,38.50,39.00,20165600,1.24 +1989-04-28,39.25,39.50,38.50,39.00,25964400,1.24 +1989-04-27,39.50,40.00,39.00,39.38,34846000,1.25 +1989-04-26,40.00,40.25,39.12,39.75,46533200,1.26 +1989-04-25,40.00,40.50,39.75,40.00,29044400,1.27 +1989-04-24,40.00,40.25,39.50,40.13,27697600,1.27 +1989-04-21,40.50,40.87,39.75,40.13,28792400,1.27 +1989-04-20,40.75,41.50,40.25,40.75,44954000,1.29 +1989-04-19,40.00,41.63,39.75,40.87,106470000,1.29 +1989-04-18,39.50,40.50,39.25,40.13,140246400,1.27 +1989-04-17,38.50,39.25,38.00,39.25,35036400,1.24 +1989-04-14,39.00,39.25,38.25,38.75,30839200,1.23 +1989-04-13,38.75,39.50,38.25,38.50,45318000,1.22 +1989-04-12,38.25,39.25,37.88,38.50,96978000,1.22 +1989-04-11,37.50,38.00,37.00,37.75,36635200,1.20 +1989-04-10,37.25,38.00,36.75,37.00,33843600,1.17 +1989-04-07,36.00,37.50,36.00,37.37,88746000,1.18 +1989-04-06,34.75,36.13,34.50,36.00,39093600,1.14 +1989-04-05,34.50,35.25,34.25,35.00,30063600,1.11 +1989-04-04,34.50,34.88,33.87,34.50,28932400,1.09 +1989-04-03,35.50,36.25,34.75,35.00,41571600,1.11 +1989-03-31,35.00,35.75,34.75,35.62,46337200,1.13 +1989-03-30,34.25,35.00,34.00,34.75,26311600,1.10 +1989-03-29,34.00,34.50,34.00,34.25,18600400,1.08 +1989-03-28,34.00,34.50,34.00,34.00,35313600,1.08 +1989-03-27,34.25,34.50,33.50,33.75,37914800,1.07 +1989-03-23,34.00,34.50,33.75,34.38,29727600,1.09 +1989-03-22,34.25,34.75,33.75,33.87,36212400,1.07 +1989-03-21,35.50,35.50,34.75,34.88,32048800,1.10 +1989-03-20,35.00,35.25,34.50,34.88,45362800,1.10 +1989-03-17,34.50,35.75,34.00,34.88,59281600,1.10 +1989-03-16,35.00,35.50,34.50,35.25,48059200,1.12 +1989-03-15,35.25,35.50,34.75,35.00,22514800,1.11 +1989-03-14,35.00,35.50,34.88,35.25,40485200,1.12 +1989-03-13,35.00,35.50,34.75,35.00,32776800,1.11 +1989-03-10,34.50,35.00,34.25,35.00,25678800,1.11 +1989-03-09,35.25,35.75,34.50,34.50,33359200,1.09 +1989-03-08,35.62,36.25,35.25,35.25,54073600,1.12 +1989-03-07,35.50,36.00,35.00,35.75,65172800,1.13 +1989-03-06,35.00,35.88,34.50,35.50,42128800,1.12 +1989-03-03,35.25,35.25,34.00,34.75,96944400,1.10 +1989-03-02,35.75,36.25,34.75,35.00,94082800,1.11 +1989-03-01,36.25,36.50,35.50,36.00,42532000,1.14 +1989-02-28,36.50,36.75,36.00,36.25,44004800,1.15 +1989-02-27,36.00,36.50,35.75,36.50,28980000,1.16 +1989-02-24,37.00,37.00,36.00,36.00,38032400,1.14 +1989-02-23,36.50,37.00,36.25,36.75,23842000,1.16 +1989-02-22,37.25,37.50,36.50,36.75,59581200,1.16 +1989-02-21,36.87,37.75,36.75,37.50,47639200,1.19 +1989-02-17,36.25,37.00,36.25,36.75,29212400,1.16 +1989-02-16,36.25,37.25,36.00,36.38,63924000,1.15 +1989-02-15,35.75,36.25,35.50,36.25,82656000,1.14 +1989-02-14,36.87,37.00,35.25,35.75,222894000,1.13 +1989-02-13,36.75,37.25,36.75,37.00,58797200,1.17 +1989-02-10,38.25,38.25,37.00,37.25,87085600,1.18 +1989-02-09,38.25,39.00,38.00,38.25,40202400,1.21 +1989-02-08,39.00,39.50,38.00,38.25,39253200,1.21 +1989-02-07,38.25,39.25,38.25,39.00,41288800,1.23 +1989-02-06,39.50,39.50,38.25,38.50,29184400,1.22 +1989-02-03,40.00,40.25,39.00,39.25,44727200,1.24 +1989-02-02,39.50,40.25,39.25,39.75,118372800,1.26 +1989-02-01,37.75,39.63,37.37,39.25,121889600,1.24 +1989-01-31,37.25,37.75,36.75,37.75,115088400,1.19 +1989-01-30,37.62,38.00,37.25,37.37,146624800,1.18 +1989-01-27,38.25,39.25,36.25,37.62,531792800,1.19 +1989-01-26,40.75,42.12,40.62,41.75,71316000,1.32 +1989-01-25,41.75,42.00,41.00,41.50,27734000,1.31 +1989-01-24,41.00,41.75,40.75,41.63,55823600,1.31 +1989-01-23,40.75,41.25,40.75,41.00,45133200,1.29 +1989-01-20,40.50,41.50,40.25,41.00,43433600,1.29 +1989-01-19,40.50,41.00,40.00,40.50,63996800,1.28 +1989-01-18,40.75,41.12,39.50,39.75,121982000,1.26 +1989-01-17,43.25,43.50,40.00,40.37,189151200,1.28 +1989-01-16,43.25,44.00,43.00,43.75,42148400,1.38 +1989-01-13,42.75,43.50,42.37,43.25,48476400,1.37 +1989-01-12,42.25,43.00,42.00,42.75,37578800,1.35 +1989-01-11,42.25,42.50,41.25,42.12,39032000,1.33 +1989-01-10,42.50,42.88,41.50,42.62,25830000,1.35 +1989-01-09,43.00,43.13,42.25,43.00,19826800,1.36 +1989-01-06,42.25,43.50,42.25,42.62,49666400,1.35 +1989-01-05,42.00,43.25,41.25,42.25,76832000,1.33 +1989-01-04,40.75,42.12,40.50,42.00,59987200,1.33 +1989-01-03,40.25,40.50,40.00,40.37,25004000,1.28 +1988-12-30,40.50,41.25,40.25,40.25,20423200,1.27 +1988-12-29,40.25,40.75,40.25,40.50,29453200,1.28 +1988-12-28,40.50,40.75,39.75,40.25,12885600,1.27 +1988-12-27,41.00,41.50,40.50,40.50,14996800,1.28 +1988-12-23,41.00,41.38,41.00,41.12,10239600,1.30 +1988-12-22,41.75,42.00,40.75,41.00,26507600,1.29 +1988-12-21,41.00,42.00,41.00,41.75,60491200,1.32 +1988-12-20,41.00,41.50,40.62,41.00,68546800,1.29 +1988-12-19,40.25,41.00,40.00,40.75,58581600,1.29 +1988-12-16,39.50,40.50,39.25,40.13,45872400,1.27 +1988-12-15,40.00,40.50,39.25,39.50,28142800,1.25 +1988-12-14,38.50,40.00,38.50,39.75,48325200,1.26 +1988-12-13,38.50,38.75,38.25,38.75,30637600,1.22 +1988-12-12,39.25,39.50,38.50,38.50,29470000,1.22 +1988-12-09,39.25,39.50,38.75,39.12,11239200,1.24 +1988-12-08,39.25,39.25,38.75,39.12,14865200,1.24 +1988-12-07,39.00,39.50,38.75,39.38,24533600,1.24 +1988-12-06,39.25,39.75,39.00,39.50,26233200,1.25 +1988-12-05,39.50,40.00,38.75,39.50,38603600,1.25 +1988-12-02,38.25,39.88,38.00,39.25,83428800,1.24 +1988-12-01,37.75,39.00,37.50,38.75,53040400,1.22 +1988-11-30,36.75,38.00,36.75,37.62,41960800,1.19 +1988-11-29,36.50,36.75,36.00,36.75,23167200,1.16 +1988-11-28,36.50,36.75,36.00,36.50,34840400,1.15 +1988-11-25,36.25,36.75,36.00,36.50,12073600,1.15 +1988-11-23,35.75,37.00,35.50,36.87,46998000,1.16 +1988-11-22,36.50,36.87,36.00,36.13,37046800,1.14 +1988-11-21,37.50,37.75,36.25,36.63,55476400,1.16 +1988-11-18,38.50,38.50,38.00,38.00,14397600,1.20 +1988-11-17,38.00,38.50,38.00,38.25,19885600,1.20 +1988-11-16,39.00,39.25,37.75,38.00,36960000,1.20 +1988-11-15,39.00,39.25,38.75,39.00,20000400,1.23 +1988-11-14,38.75,39.00,38.25,38.87,21308000,1.22 +1988-11-11,39.00,39.63,38.50,38.50,27171200,1.21 +1988-11-10,39.50,39.75,39.00,39.50,24978800,1.24 +1988-11-09,38.25,39.38,38.00,39.25,50430800,1.24 +1988-11-08,37.50,38.75,37.37,38.50,38631600,1.21 +1988-11-07,37.25,37.75,37.00,37.50,42520800,1.18 +1988-11-04,36.75,38.00,36.75,37.75,38449600,1.19 +1988-11-03,37.25,37.50,36.75,37.12,60614400,1.17 +1988-11-02,38.25,38.25,36.75,37.25,52130400,1.17 +1988-11-01,38.50,38.75,37.75,38.00,35924000,1.20 +1988-10-31,38.75,38.75,37.50,38.62,60726400,1.22 +1988-10-28,39.00,39.50,38.50,38.50,21120400,1.21 +1988-10-27,38.75,39.25,38.25,39.00,35921200,1.23 +1988-10-26,40.00,40.00,38.50,39.25,47180000,1.24 +1988-10-25,40.25,40.25,39.75,39.88,21296800,1.26 +1988-10-24,41.25,41.25,39.63,40.00,33790400,1.26 +1988-10-21,41.25,41.75,40.75,41.00,30900800,1.29 +1988-10-20,40.00,41.63,40.00,41.50,43366400,1.31 +1988-10-19,39.75,40.75,39.50,40.00,69330800,1.26 +1988-10-18,39.00,39.50,38.25,39.38,35649600,1.24 +1988-10-17,38.50,39.00,38.25,38.50,23422000,1.21 +1988-10-14,39.50,39.50,38.13,38.75,39312000,1.22 +1988-10-13,38.50,39.75,38.50,39.00,41115200,1.23 +1988-10-12,38.50,39.00,38.00,38.75,33236000,1.22 +1988-10-11,38.25,39.50,38.25,39.00,48638800,1.23 +1988-10-10,39.50,39.75,37.50,38.50,83160000,1.21 +1988-10-07,39.00,39.75,38.38,39.75,114396800,1.25 +1988-10-06,40.50,40.87,39.25,39.75,41941200,1.25 +1988-10-05,41.25,41.75,40.50,40.87,30800000,1.29 +1988-10-04,42.25,42.75,41.12,41.50,12913600,1.31 +1988-10-03,43.00,43.25,42.00,42.50,22694000,1.34 +1988-09-30,44.00,44.00,43.25,43.25,23223200,1.36 +1988-09-29,43.75,44.25,43.50,44.00,26518800,1.39 +1988-09-28,43.50,44.12,43.25,43.50,21173600,1.37 +1988-09-27,42.50,43.50,42.50,43.38,40745600,1.37 +1988-09-26,43.75,44.00,42.50,42.75,21758800,1.35 +1988-09-23,43.50,44.25,43.50,43.75,25370800,1.38 +1988-09-22,43.00,44.00,42.75,44.00,36416800,1.39 +1988-09-21,41.75,43.00,41.50,42.75,22836800,1.35 +1988-09-20,41.75,42.25,41.38,41.50,25670400,1.31 +1988-09-19,42.00,42.25,41.25,41.75,23032800,1.32 +1988-09-16,41.50,42.75,41.38,42.25,30940000,1.33 +1988-09-15,42.00,42.75,41.50,41.63,41440000,1.31 +1988-09-14,41.75,42.37,41.50,42.00,59642800,1.32 +1988-09-13,40.25,41.25,40.00,41.00,29920800,1.29 +1988-09-12,41.00,41.75,40.13,41.00,37007600,1.29 +1988-09-09,38.75,41.00,37.75,40.50,58668400,1.28 +1988-09-08,38.25,39.50,37.75,38.75,51814000,1.22 +1988-09-07,39.00,39.50,37.75,38.25,44777600,1.20 +1988-09-06,40.00,40.00,38.75,38.87,35862400,1.22 +1988-09-02,39.50,40.00,39.00,39.75,46575200,1.25 +1988-09-01,39.75,39.75,38.50,38.87,61684000,1.22 +1988-08-31,41.00,41.12,39.50,39.88,59421600,1.26 +1988-08-30,40.75,41.00,40.00,40.87,12642000,1.29 +1988-08-29,40.75,41.00,40.50,40.87,14308000,1.29 +1988-08-26,40.00,40.75,40.00,40.25,10038000,1.27 +1988-08-25,40.25,40.50,39.25,40.13,31920000,1.26 +1988-08-24,39.75,40.75,39.50,40.75,31368400,1.28 +1988-08-23,39.75,40.25,39.25,39.50,40894000,1.24 +1988-08-22,40.25,40.75,39.50,39.75,42548800,1.25 +1988-08-19,42.50,42.75,40.50,40.75,56840000,1.28 +1988-08-18,42.00,43.00,41.75,42.50,18516400,1.34 +1988-08-17,42.50,42.75,41.75,42.00,29736000,1.32 +1988-08-16,41.00,43.25,40.75,42.50,30688000,1.34 +1988-08-15,42.25,42.25,40.50,41.25,41669600,1.30 +1988-08-12,43.00,43.00,42.25,42.50,19370400,1.34 +1988-08-11,42.25,43.25,42.00,43.25,26513200,1.36 +1988-08-10,43.75,43.75,41.75,41.88,36951600,1.32 +1988-08-09,44.00,44.25,43.00,43.50,42506800,1.37 +1988-08-08,44.50,44.75,44.00,44.00,7484400,1.38 +1988-08-05,44.50,45.00,44.25,44.25,13165600,1.39 +1988-08-04,44.75,45.25,44.50,44.62,17228400,1.40 +1988-08-03,44.75,44.75,44.00,44.75,27711600,1.41 +1988-08-02,45.00,45.50,44.50,44.62,30321200,1.40 +1988-08-01,44.50,45.75,44.25,45.00,21484400,1.41 +1988-07-29,43.25,44.50,43.00,44.37,39737600,1.40 +1988-07-28,42.50,43.00,42.25,42.62,23170000,1.34 +1988-07-27,42.75,43.25,42.50,42.75,29131200,1.34 +1988-07-26,42.75,43.25,42.25,42.75,25382000,1.34 +1988-07-25,42.75,43.25,42.25,42.75,26474000,1.34 +1988-07-22,43.00,43.25,42.50,42.50,25961600,1.34 +1988-07-21,43.75,44.00,42.75,43.00,37256800,1.35 +1988-07-20,44.75,45.00,44.00,44.25,30021600,1.39 +1988-07-19,45.00,45.50,43.87,44.75,30576000,1.41 +1988-07-18,45.38,46.00,45.25,45.50,28375200,1.43 +1988-07-15,45.00,45.50,44.75,45.00,20756400,1.41 +1988-07-14,44.75,45.25,44.50,45.00,15702400,1.41 +1988-07-13,44.75,45.00,44.25,44.75,28792400,1.41 +1988-07-12,45.00,45.25,44.50,44.75,25225200,1.41 +1988-07-11,45.50,45.50,44.88,45.13,18407200,1.42 +1988-07-08,45.50,46.00,45.00,45.25,26348000,1.42 +1988-07-07,46.50,46.50,45.25,45.87,26401200,1.44 +1988-07-06,47.13,47.50,46.12,46.50,39138400,1.46 +1988-07-05,46.50,47.25,46.12,47.25,26112800,1.49 +1988-07-01,46.50,46.88,46.25,46.50,23634800,1.46 +1988-06-30,46.25,46.75,46.00,46.25,28672000,1.45 +1988-06-29,46.00,46.75,45.75,46.38,35862400,1.46 +1988-06-28,44.75,46.25,44.50,46.25,40642000,1.45 +1988-06-27,44.50,45.38,44.50,44.50,20904800,1.40 +1988-06-24,45.00,45.50,44.50,45.00,18678800,1.41 +1988-06-23,45.75,45.75,45.00,45.00,17847200,1.41 +1988-06-22,45.50,45.87,45.00,45.62,48890800,1.43 +1988-06-21,44.00,45.00,43.87,44.88,30898000,1.41 +1988-06-20,44.37,44.75,44.00,44.12,19650400,1.39 +1988-06-17,44.75,44.75,44.25,44.75,23847600,1.41 +1988-06-16,45.00,45.25,44.25,44.50,26843600,1.40 +1988-06-15,45.25,45.75,45.00,45.75,30520000,1.44 +1988-06-14,45.25,46.00,45.00,45.25,73105200,1.42 +1988-06-13,45.00,45.25,44.25,45.00,37240000,1.41 +1988-06-10,43.50,44.75,43.00,44.50,44240000,1.40 +1988-06-09,45.00,45.25,43.25,43.50,67480000,1.37 +1988-06-08,44.25,45.50,44.00,45.00,64680000,1.41 +1988-06-07,43.75,45.25,43.50,44.00,77840000,1.38 +1988-06-06,42.75,44.00,42.75,44.00,41160000,1.38 +1988-06-03,41.75,43.25,41.75,43.00,43960000,1.35 +1988-06-02,42.00,42.50,41.50,41.75,33320000,1.31 +1988-06-01,41.50,42.50,41.25,42.50,57400000,1.34 +1988-05-31,40.00,41.50,39.75,41.50,30800000,1.30 +1988-05-27,39.25,40.00,39.00,39.75,20988800,1.25 +1988-05-26,38.50,39.50,38.50,39.38,21445200,1.24 +1988-05-25,39.00,39.75,38.50,38.50,33880000,1.21 +1988-05-24,38.00,39.00,37.75,38.87,35560000,1.22 +1988-05-23,38.50,38.87,37.37,38.00,45920000,1.19 +1988-05-20,39.25,39.50,38.75,38.75,20434400,1.22 +1988-05-19,39.50,39.75,38.50,39.00,62440000,1.23 +1988-05-18,40.50,40.75,39.50,39.75,43680000,1.25 +1988-05-17,41.50,42.00,40.25,40.50,48440000,1.27 +1988-05-16,40.50,41.38,40.00,41.25,18690000,1.30 +1988-05-13,40.25,40.50,40.00,40.50,17850000,1.27 +1988-05-12,39.50,40.25,39.50,39.75,20745200,1.25 +1988-05-11,40.25,40.75,39.50,39.50,43680000,1.24 +1988-05-10,40.50,41.00,40.25,40.87,23976400,1.28 +1988-05-09,41.25,41.25,40.50,40.75,19093200,1.28 +1988-05-06,41.63,41.75,41.25,41.25,26759600,1.29 +1988-05-05,42.00,42.25,41.50,41.75,17614800,1.31 +1988-05-04,41.88,43.13,41.75,42.00,56000000,1.32 +1988-05-03,41.00,42.25,40.75,41.75,31080000,1.31 +1988-05-02,40.75,41.25,40.50,41.00,20549200,1.29 +1988-04-29,41.25,41.50,40.50,41.00,22498000,1.29 +1988-04-28,41.75,42.00,41.25,41.38,24791200,1.30 +1988-04-27,41.75,42.00,41.50,41.75,31640000,1.31 +1988-04-26,41.00,41.75,40.75,41.50,43960000,1.30 +1988-04-25,40.25,41.00,40.00,40.87,37520000,1.28 +1988-04-22,39.75,40.25,39.50,40.13,26910800,1.26 +1988-04-21,40.37,40.50,39.00,39.50,44520000,1.24 +1988-04-20,40.25,40.50,39.25,39.75,53760000,1.25 +1988-04-19,40.13,41.50,40.13,40.25,53082400,1.26 +1988-04-18,39.75,40.75,39.25,40.00,42560000,1.26 +1988-04-15,39.75,40.00,38.50,39.50,58240000,1.24 +1988-04-14,40.50,41.50,39.00,39.50,47040000,1.24 +1988-04-13,41.75,42.00,41.00,41.25,35840000,1.29 +1988-04-12,41.75,42.25,41.25,41.75,43400000,1.31 +1988-04-11,41.75,42.00,41.00,41.50,37240000,1.30 +1988-04-08,40.75,41.75,39.75,41.00,50680000,1.29 +1988-04-07,41.75,42.37,40.75,40.75,40880000,1.28 +1988-04-06,39.50,41.75,39.00,41.75,47600000,1.31 +1988-04-05,39.25,39.50,38.50,39.25,36960000,1.23 +1988-04-04,39.75,40.50,38.50,38.75,45360000,1.22 +1988-03-31,39.75,40.50,39.25,40.00,54320000,1.26 +1988-03-30,40.75,41.25,38.75,39.50,92960000,1.24 +1988-03-29,41.50,42.00,40.62,41.00,53480000,1.29 +1988-03-28,40.00,41.75,39.50,41.50,43120000,1.30 +1988-03-25,40.75,41.25,40.00,40.13,32760000,1.26 +1988-03-24,41.75,42.50,40.00,40.87,80080000,1.28 +1988-03-23,44.00,44.00,41.88,42.50,52360000,1.33 +1988-03-22,44.00,44.50,43.25,44.00,29794800,1.38 +1988-03-21,44.37,44.62,43.00,43.87,56840000,1.38 +1988-03-18,45.00,45.50,44.25,44.75,68040000,1.40 +1988-03-17,46.25,46.50,44.75,45.00,65240000,1.41 +1988-03-16,44.88,46.38,44.50,46.12,29680000,1.45 +1988-03-15,46.00,46.25,44.75,45.00,45360000,1.41 +1988-03-14,45.75,46.50,45.50,46.25,24530800,1.45 +1988-03-11,45.50,45.75,44.50,45.75,39480000,1.44 +1988-03-10,47.00,47.25,45.25,45.25,44240000,1.42 +1988-03-09,46.25,47.25,46.25,46.75,33600000,1.47 +1988-03-08,46.75,47.00,46.00,46.25,36120000,1.45 +1988-03-07,46.75,47.75,46.50,46.88,51800000,1.47 +1988-03-04,46.00,47.00,45.50,46.88,52360000,1.47 +1988-03-03,44.50,47.00,44.50,46.50,118440000,1.46 +1988-03-02,43.75,45.00,43.50,44.75,73080000,1.40 +1988-03-01,43.25,43.50,42.50,43.25,42840000,1.36 +1988-02-29,41.75,43.25,41.50,43.00,28000000,1.35 +1988-02-26,42.00,42.25,41.25,41.75,20585600,1.31 +1988-02-25,42.00,43.00,41.75,41.75,44800000,1.31 +1988-02-24,42.75,43.00,42.00,42.25,36400000,1.33 +1988-02-23,43.25,43.75,42.25,42.75,55160000,1.34 +1988-02-22,41.50,43.63,41.50,43.25,50120000,1.36 +1988-02-19,41.75,42.00,41.50,41.75,22691200,1.31 +1988-02-18,41.63,42.75,41.50,41.75,35840000,1.31 +1988-02-17,41.25,42.50,41.25,41.88,64120000,1.31 +1988-02-16,41.00,41.25,40.00,41.25,38640000,1.29 +1988-02-12,40.62,41.50,40.50,41.00,34440000,1.29 +1988-02-11,41.00,41.25,40.25,40.62,36960000,1.27 +1988-02-10,39.75,41.50,39.75,41.00,57120000,1.28 +1988-02-09,39.00,39.88,38.75,39.75,29120000,1.24 +1988-02-08,38.50,39.25,37.75,38.75,50960000,1.21 +1988-02-05,40.00,40.37,38.50,38.62,33040000,1.21 +1988-02-04,39.50,40.13,39.00,39.75,49840000,1.24 +1988-02-03,41.00,41.25,39.25,39.50,56560000,1.24 +1988-02-02,41.50,41.88,40.50,41.25,47880000,1.29 +1988-02-01,41.75,42.50,41.38,41.75,49840000,1.31 +1988-01-29,41.50,41.75,40.25,41.50,66360000,1.30 +1988-01-28,40.00,41.50,39.75,41.25,58240000,1.29 +1988-01-27,40.25,40.50,38.75,39.75,64680000,1.24 +1988-01-26,40.75,41.00,39.25,39.75,35840000,1.24 +1988-01-25,39.50,41.50,39.50,40.87,50120000,1.28 +1988-01-22,40.50,40.75,38.25,39.25,111440000,1.23 +1988-01-21,40.50,40.75,39.38,40.13,123480000,1.26 +1988-01-20,43.00,43.00,38.25,39.75,170240000,1.24 +1988-01-19,42.25,43.25,41.38,42.75,68600000,1.34 +1988-01-18,43.00,43.00,42.00,42.75,31360000,1.34 +1988-01-15,43.50,45.00,42.50,42.88,85960000,1.34 +1988-01-14,42.75,42.88,42.00,42.25,33040000,1.32 +1988-01-13,42.00,43.25,41.12,42.25,52920000,1.32 +1988-01-12,43.00,43.50,39.75,42.00,100240000,1.32 +1988-01-11,40.00,42.75,39.75,42.50,101080000,1.33 +1988-01-08,44.50,45.25,39.50,40.00,121520000,1.25 +1988-01-07,43.50,44.75,42.50,44.50,53200000,1.39 +1988-01-06,45.00,45.00,43.75,43.75,67200000,1.37 +1988-01-05,46.00,46.25,44.25,44.62,77280000,1.40 +1988-01-04,42.75,44.75,42.25,44.75,82600000,1.40 +1987-12-31,42.50,43.00,41.88,42.00,29400000,1.32 +1987-12-30,42.50,43.75,42.50,43.38,38920000,1.36 +1987-12-29,40.50,42.25,40.25,42.12,29680000,1.32 +1987-12-28,42.25,42.50,39.50,40.25,57400000,1.26 +1987-12-24,42.00,43.00,41.75,42.62,17486000,1.33 +1987-12-23,41.75,42.75,41.25,42.25,42840000,1.32 +1987-12-22,41.75,41.75,40.50,41.50,32200000,1.30 +1987-12-21,40.50,41.75,40.25,41.75,47040000,1.31 +1987-12-18,39.50,41.25,39.25,40.50,75600000,1.27 +1987-12-17,40.50,40.75,39.25,39.25,81480000,1.23 +1987-12-16,37.75,39.75,37.25,39.25,82600000,1.23 +1987-12-15,37.75,38.25,37.00,37.50,74760000,1.17 +1987-12-14,34.50,37.50,34.25,37.25,85400000,1.17 +1987-12-11,34.75,34.75,33.50,34.00,30520000,1.06 +1987-12-10,33.75,36.00,33.25,34.75,69160000,1.09 +1987-12-09,34.50,36.25,33.87,35.00,44800000,1.10 +1987-12-08,33.50,34.88,33.25,34.50,63560000,1.08 +1987-12-07,31.00,33.25,31.00,33.00,50960000,1.03 +1987-12-04,30.25,31.25,29.75,30.75,61040000,0.96 +1987-12-03,33.00,33.37,29.75,30.50,79800000,0.96 +1987-12-02,33.25,33.50,32.50,32.50,35560000,1.02 +1987-12-01,33.50,34.00,32.75,33.25,45360000,1.04 +1987-11-30,33.75,34.50,30.50,33.00,104160000,1.03 +1987-11-27,36.25,36.50,34.75,35.00,17670800,1.10 +1987-11-25,37.00,37.00,36.00,36.50,23100000,1.14 +1987-11-24,36.75,37.75,36.13,37.00,49280000,1.16 +1987-11-23,35.50,36.25,34.75,36.25,24348800,1.14 +1987-11-20,34.00,36.00,33.25,35.50,62720000,1.11 +1987-11-19,36.50,36.50,34.00,34.50,45640000,1.08 +1987-11-18,35.75,36.50,34.50,36.25,66360000,1.14 +1987-11-17,36.75,37.00,35.00,35.00,67200000,1.10 +1987-11-16,37.75,38.50,36.50,36.75,46200000,1.15 +1987-11-13,39.25,39.50,37.00,37.25,38640000,1.16 +1987-11-12,38.50,40.00,38.38,38.75,61600000,1.21 +1987-11-11,37.25,38.25,36.75,37.25,46480000,1.16 +1987-11-10,36.50,37.50,36.00,36.25,57960000,1.13 +1987-11-09,37.00,37.50,36.25,37.25,52640000,1.16 +1987-11-06,38.25,39.50,37.00,37.75,46760000,1.18 +1987-11-05,36.25,38.75,36.25,38.00,63840000,1.19 +1987-11-04,35.50,37.25,34.75,36.00,58520000,1.12 +1987-11-03,38.00,38.50,34.25,36.25,78400000,1.13 +1987-11-02,38.75,39.50,37.50,38.75,47040000,1.21 +1987-10-30,40.00,43.00,38.50,38.62,105280000,1.21 +1987-10-29,34.25,40.00,32.25,39.50,82880000,1.23 +1987-10-28,30.75,33.75,29.25,33.50,104720000,1.05 +1987-10-27,29.50,32.25,29.00,30.25,113960000,0.95 +1987-10-26,34.50,35.00,27.63,28.00,78400000,0.87 +1987-10-23,35.75,36.50,34.25,35.50,49560000,1.11 +1987-10-22,39.25,40.50,36.00,36.75,96320000,1.15 +1987-10-21,38.50,42.00,38.00,40.50,133560000,1.27 +1987-10-20,38.50,42.00,32.63,34.50,142240000,1.08 +1987-10-19,48.25,48.25,35.50,36.50,119000000,1.14 +1987-10-16,52.25,53.00,47.50,48.25,105000000,1.51 +1987-10-15,53.25,54.50,51.75,52.00,87080000,1.62 +1987-10-14,53.75,54.00,52.00,53.25,64680000,1.66 +1987-10-13,54.50,54.75,53.25,54.50,40600000,1.70 +1987-10-12,54.25,54.37,51.75,53.25,49840000,1.66 +1987-10-09,54.25,55.50,54.00,54.13,36400000,1.69 +1987-10-08,55.50,56.00,53.25,54.25,41160000,1.70 +1987-10-07,55.50,55.75,54.25,55.50,56000000,1.73 +1987-10-06,59.50,59.50,55.50,55.75,50400000,1.74 +1987-10-05,58.50,59.75,57.75,59.25,33600000,1.85 +1987-10-02,58.25,58.75,57.50,58.50,24124800,1.83 +1987-10-01,56.75,58.75,56.50,58.25,29120000,1.82 +1987-09-30,54.25,57.00,54.25,56.50,30520000,1.77 +1987-09-29,56.00,56.00,54.25,54.50,42840000,1.70 +1987-09-28,57.50,58.75,55.50,55.75,50960000,1.74 +1987-09-25,56.75,58.00,56.50,57.50,26630800,1.80 +1987-09-24,55.25,57.87,55.25,56.50,45640000,1.77 +1987-09-23,54.13,56.00,53.75,55.25,63644000,1.73 +1987-09-22,50.50,54.25,50.25,54.13,38360000,1.69 +1987-09-21,51.75,52.75,50.25,50.25,32200000,1.57 +1987-09-18,52.00,52.25,51.37,51.75,17799600,1.62 +1987-09-17,52.00,52.25,51.00,52.00,16699200,1.62 +1987-09-16,51.75,52.62,51.25,51.75,42000000,1.62 +1987-09-15,53.00,53.00,51.50,51.75,26152000,1.62 +1987-09-14,54.75,55.25,52.75,53.00,20476400,1.66 +1987-09-11,54.00,55.50,52.75,54.50,31080000,1.70 +1987-09-10,53.25,54.50,53.12,53.75,35000000,1.68 +1987-09-09,50.25,53.00,49.50,52.75,39480000,1.65 +1987-09-08,50.25,50.50,48.50,49.88,43960000,1.56 +1987-09-04,51.25,51.75,50.00,50.50,27109600,1.58 +1987-09-03,52.50,52.75,50.25,51.25,46200000,1.60 +1987-09-02,52.00,53.25,50.75,52.00,57400000,1.62 +1987-09-01,54.75,55.25,52.50,52.50,34720000,1.64 +1987-08-31,52.25,54.25,51.75,54.00,37520000,1.69 +1987-08-28,52.00,52.50,51.50,52.00,23954000,1.62 +1987-08-27,52.25,52.75,51.50,52.00,31080000,1.62 +1987-08-26,53.00,53.50,52.00,52.00,49000000,1.62 +1987-08-25,52.75,53.25,52.00,52.00,34160000,1.62 +1987-08-24,53.00,53.50,52.25,52.25,30240000,1.63 +1987-08-21,51.75,53.75,51.50,53.00,35000000,1.66 +1987-08-20,50.25,52.50,49.75,51.75,43960000,1.62 +1987-08-19,49.50,50.00,49.00,50.00,16718800,1.56 +1987-08-18,49.25,49.50,48.25,48.75,59360000,1.52 +1987-08-17,49.50,50.00,48.75,49.50,36400000,1.55 +1987-08-14,48.50,50.00,48.00,49.00,26213600,1.53 +1987-08-13,48.75,50.25,48.50,49.00,49000000,1.53 +1987-08-12,49.50,49.75,48.25,48.75,40320000,1.52 +1987-08-11,49.50,50.25,48.75,49.50,67760000,1.55 +1987-08-10,48.25,48.25,45.75,48.25,19499200,1.51 +1987-08-07,46.25,47.25,46.00,46.50,38080000,1.45 +1987-08-06,43.25,46.75,42.75,46.25,63000000,1.44 +1987-08-05,42.25,43.50,42.00,43.25,32480000,1.35 +1987-08-04,40.50,42.25,40.00,42.25,30240000,1.32 +1987-08-03,41.00,41.50,40.25,40.25,15839600,1.26 +1987-07-31,41.25,42.00,41.25,41.25,18261600,1.29 +1987-07-30,41.00,41.50,40.75,41.50,26073600,1.30 +1987-07-29,42.00,42.00,40.50,41.00,24707200,1.28 +1987-07-28,42.50,42.75,41.75,41.88,18572400,1.31 +1987-07-27,42.50,43.00,42.00,42.25,14159600,1.32 +1987-07-24,41.50,42.75,41.50,42.50,29400000,1.33 +1987-07-23,43.00,43.50,40.50,41.75,18684400,1.30 +1987-07-22,41.50,42.75,41.25,42.50,15232000,1.33 +1987-07-21,42.00,42.50,41.25,41.38,27748000,1.29 +1987-07-20,43.00,43.25,41.50,41.75,31080000,1.30 +1987-07-17,44.25,44.75,42.75,43.25,23049600,1.35 +1987-07-16,44.00,44.00,43.25,44.00,23646000,1.37 +1987-07-15,43.00,44.75,42.25,44.00,67760000,1.37 +1987-07-14,41.00,43.00,41.00,43.00,64400000,1.34 +1987-07-13,39.00,40.75,38.75,40.50,63840000,1.26 +1987-07-10,38.00,39.25,37.75,38.00,39200000,1.19 +1987-07-09,37.25,38.75,37.25,37.75,59920000,1.18 +1987-07-08,39.25,39.25,36.50,37.25,85400000,1.16 +1987-07-07,40.50,41.00,38.75,39.25,50960000,1.22 +1987-07-06,40.75,41.75,40.50,40.75,21372400,1.27 +1987-07-02,40.00,41.00,39.75,40.62,20389600,1.27 +1987-07-01,40.75,40.75,39.75,40.00,23707600,1.25 +1987-06-30,40.50,41.00,39.75,40.50,36120000,1.26 +1987-06-29,40.50,40.75,40.00,40.75,25326000,1.27 +1987-06-26,40.75,41.50,40.00,40.50,31920000,1.26 +1987-06-25,42.00,42.50,40.50,40.50,30240000,1.26 +1987-06-24,41.50,43.25,40.50,42.00,29680000,1.31 +1987-06-23,42.00,42.12,40.75,41.25,20213200,1.29 +1987-06-22,41.25,42.25,40.87,42.00,42280000,1.31 +1987-06-19,41.50,41.75,40.37,41.00,31360000,1.28 +1987-06-18,40.25,41.75,39.50,41.50,57400000,1.30 +1987-06-17,41.50,42.50,40.00,40.50,74480000,1.26 +1987-06-16,41.50,41.75,38.00,41.50,85680000,1.30 +1987-06-15,79.00,79.50,77.50,78.50,64960000,1.22 +1987-06-12,79.00,79.75,78.75,79.00,25440800,1.23 +1987-06-11,78.50,80.00,78.00,79.00,31343200,1.23 +1987-06-10,78.75,80.25,78.00,78.50,36556800,1.22 +1987-06-09,77.50,79.50,77.50,78.50,31763200,1.22 +1987-06-08,77.75,78.00,76.75,77.75,50461600,1.21 +1987-06-05,78.75,78.75,77.75,77.75,32732000,1.21 +1987-06-04,78.00,78.75,77.00,78.50,38399200,1.22 +1987-06-03,77.25,79.50,77.25,77.75,42828800,1.21 +1987-06-02,77.50,78.00,77.00,77.25,34372800,1.21 +1987-06-01,79.50,79.50,77.50,77.75,20826400,1.21 +1987-05-29,80.25,80.50,79.00,79.00,23150400,1.23 +1987-05-28,79.50,80.25,78.50,80.00,37805600,1.25 +1987-05-27,78.00,80.25,77.50,79.50,45175200,1.24 +1987-05-26,74.50,78.00,74.00,78.00,38063200,1.22 +1987-05-22,75.00,75.50,73.75,74.12,24276000,1.16 +1987-05-21,74.75,75.75,74.50,74.50,43450400,1.16 +1987-05-20,73.00,75.00,72.50,74.50,72240000,1.16 +1987-05-19,75.75,75.75,72.63,73.25,59920000,1.14 +1987-05-18,78.25,78.50,75.50,75.75,60480000,1.18 +1987-05-15,79.25,79.25,78.00,78.25,36489600,1.22 +1987-05-14,78.25,79.50,78.25,79.25,37122400,1.24 +1987-05-13,75.75,78.63,75.50,78.50,77840000,1.22 +1987-05-12,76.00,76.50,75.00,75.50,64960000,1.18 +1987-05-11,77.00,79.50,76.75,77.00,49319200,1.20 +1987-05-08,80.50,81.00,79.00,79.00,46183200,1.23 +1987-05-07,79.75,81.00,79.75,80.25,45197600,1.25 +1987-05-06,80.50,82.25,79.25,80.00,71680000,1.25 +1987-05-05,80.00,80.75,78.00,80.25,57680000,1.25 +1987-05-04,79.50,80.25,79.00,79.75,35526400,1.24 +1987-05-01,79.50,80.00,78.75,80.00,33180000,1.25 +1987-04-30,78.00,80.00,77.75,79.25,63280000,1.23 +1987-04-29,77.25,79.75,77.00,77.75,72800000,1.21 +1987-04-28,75.75,77.87,75.50,77.00,81200000,1.20 +1987-04-27,74.25,75.25,73.25,75.00,95760000,1.17 +1987-04-24,75.75,76.50,74.50,74.75,63840000,1.16 +1987-04-23,74.25,77.25,74.25,76.00,76160000,1.18 +1987-04-22,76.62,77.00,74.00,74.25,100800000,1.16 +1987-04-21,70.25,75.00,69.50,74.75,108080000,1.16 +1987-04-20,71.50,72.75,70.75,71.13,37290400,1.11 +1987-04-16,71.25,73.25,71.00,71.50,86800000,1.11 +1987-04-15,69.50,71.00,68.75,71.00,87360000,1.11 +1987-04-14,66.75,69.75,66.50,68.00,101920000,1.06 +1987-04-13,70.00,70.25,67.50,67.50,35554400,1.05 +1987-04-10,71.25,71.50,69.75,70.25,54460000,1.09 +1987-04-09,68.75,71.50,67.75,71.00,59360000,1.11 +1987-04-08,67.75,70.25,67.50,69.00,57680000,1.07 +1987-04-07,69.75,70.25,67.75,67.75,64960000,1.06 +1987-04-06,71.50,72.75,69.25,70.00,72240000,1.09 +1987-04-03,71.50,71.87,70.25,71.75,134960000,1.12 +1987-04-02,68.25,71.75,67.00,71.75,194320000,1.12 +1987-04-01,63.00,67.00,62.38,66.75,54465600,1.04 +1987-03-31,62.25,64.75,62.25,64.50,68320000,1.00 +1987-03-30,63.50,64.25,62.25,62.50,64960000,0.97 +1987-03-27,67.25,67.50,64.75,65.00,33476800,1.01 +1987-03-26,66.75,67.75,66.50,67.25,35756000,1.05 +1987-03-25,66.50,67.00,65.25,66.75,68320000,1.04 +1987-03-24,67.75,68.50,66.25,66.25,67200000,1.03 +1987-03-23,68.00,68.25,66.25,67.50,61600000,1.05 +1987-03-20,68.25,69.75,68.25,68.25,86800000,1.06 +1987-03-19,65.75,68.50,65.50,68.37,51682400,1.07 +1987-03-18,67.25,67.50,64.75,66.00,75600000,1.03 +1987-03-17,65.50,68.00,65.00,67.00,61040000,1.04 +1987-03-16,63.50,65.25,62.50,65.25,61600000,1.02 +1987-03-13,65.25,66.00,63.50,63.50,49403200,0.99 +1987-03-12,66.00,66.25,63.62,65.25,75600000,1.02 +1987-03-11,67.25,68.00,66.25,66.25,54616800,1.03 +1987-03-10,64.50,66.88,64.50,66.75,61040000,1.04 +1987-03-09,66.50,66.75,64.50,64.63,63840000,1.01 +1987-03-06,67.25,68.37,66.75,67.25,44094400,1.05 +1987-03-05,67.50,69.00,67.25,68.50,84560000,1.07 +1987-03-04,65.75,68.25,65.37,67.63,112000000,1.05 +1987-03-03,67.50,68.13,64.75,65.00,109200000,1.01 +1987-03-02,70.25,70.50,67.00,67.50,99120000,1.05 +1987-02-27,69.13,71.00,67.75,70.00,101360000,1.09 +1987-02-26,69.50,71.37,68.00,69.13,124880000,1.08 +1987-02-25,65.50,69.50,64.63,69.13,113680000,1.08 +1987-02-24,63.25,66.00,63.12,65.50,89040000,1.02 +1987-02-23,60.87,64.25,59.62,63.12,87920000,0.98 +1987-02-20,62.38,62.50,60.63,61.25,47661600,0.95 +1987-02-19,63.50,63.50,61.75,62.38,78400000,0.97 +1987-02-18,66.62,67.37,63.38,63.50,117600000,0.99 +1987-02-17,62.13,66.50,61.87,66.38,102480000,1.03 +1987-02-13,58.63,62.50,58.00,62.13,127680000,0.97 +1987-02-12,57.00,59.88,57.00,58.63,177520000,0.91 +1987-02-11,53.00,56.75,52.75,56.50,85680000,0.88 +1987-02-10,52.50,52.75,51.63,52.75,41697600,0.82 +1987-02-09,52.88,53.37,52.25,52.62,39250400,0.82 +1987-02-06,54.00,54.00,52.88,54.00,73360000,0.84 +1987-02-05,55.00,55.13,53.12,53.87,85120000,0.84 +1987-02-04,55.50,55.50,54.37,55.00,54460000,0.86 +1987-02-03,56.00,56.12,54.75,55.50,44654400,0.86 +1987-02-02,55.50,56.00,54.25,55.88,61600000,0.87 +1987-01-30,54.00,55.88,52.62,55.50,102480000,0.86 +1987-01-29,55.88,57.25,53.37,54.13,139440000,0.84 +1987-01-28,53.00,55.75,52.12,55.38,103600000,0.86 +1987-01-27,50.00,53.12,49.87,52.75,94640000,0.82 +1987-01-26,50.00,50.50,49.50,49.75,87920000,0.78 +1987-01-23,52.50,53.00,50.25,50.25,114800000,0.78 +1987-01-22,48.88,52.62,48.50,52.50,118160000,0.82 +1987-01-21,50.87,51.13,49.00,49.00,133280000,0.76 +1987-01-20,55.00,55.75,51.50,51.63,193760000,0.80 +1987-01-19,48.75,53.12,47.87,53.12,90720000,0.83 +1987-01-16,50.00,50.00,47.75,48.75,101920000,0.76 +1987-01-15,48.25,51.37,48.00,49.87,136640000,0.78 +1987-01-14,44.63,48.25,44.50,48.13,126000000,0.75 +1987-01-13,45.12,45.38,44.63,44.63,52931200,0.70 +1987-01-12,45.50,45.75,44.75,45.50,58240000,0.71 +1987-01-09,44.75,45.75,44.37,45.38,59920000,0.71 +1987-01-08,44.75,45.12,44.50,44.75,72800000,0.70 +1987-01-07,43.87,44.88,43.63,44.75,108640000,0.70 +1987-01-06,43.13,44.00,42.62,43.75,81200000,0.68 +1987-01-05,41.25,43.25,41.00,43.00,59920000,0.67 +1987-01-02,40.37,41.13,40.13,40.87,30217600,0.64 +1986-12-31,41.00,41.38,40.37,40.50,33140800,0.63 +1986-12-30,40.50,41.50,40.37,41.00,37038400,0.64 +1986-12-29,41.00,41.13,40.25,40.50,29411200,0.63 +1986-12-26,41.88,41.88,41.00,41.00,22467200,0.64 +1986-12-24,42.00,42.12,41.62,41.88,23940000,0.65 +1986-12-23,42.25,42.38,41.88,42.12,61040000,0.66 +1986-12-22,42.00,42.50,41.75,42.12,41092800,0.66 +1986-12-19,41.38,42.50,41.38,42.12,49772800,0.66 +1986-12-18,41.13,41.88,40.75,41.38,43764000,0.64 +1986-12-17,42.38,42.50,40.87,41.25,37777600,0.64 +1986-12-16,41.62,42.50,41.62,42.50,37984800,0.66 +1986-12-15,41.00,41.75,40.37,41.75,52264800,0.65 +1986-12-12,42.87,43.00,41.25,41.25,45029600,0.64 +1986-12-11,43.63,43.87,42.62,42.87,56560000,0.67 +1986-12-10,42.38,43.75,42.00,43.50,61040000,0.68 +1986-12-09,42.38,42.62,41.13,42.38,75600000,0.66 +1986-12-08,43.63,43.87,42.38,42.50,86800000,0.66 +1986-12-05,42.62,43.75,42.50,43.75,65520000,0.68 +1986-12-04,42.62,42.75,42.00,42.50,67200000,0.66 +1986-12-03,41.62,43.00,41.50,42.75,84000000,0.67 +1986-12-02,40.50,41.75,40.00,41.50,92400000,0.65 +1986-12-01,40.00,40.13,39.12,40.13,86800000,0.63 +1986-11-28,40.50,40.63,39.63,40.00,55137600,0.62 +1986-11-26,40.13,41.25,40.00,40.50,126560000,0.63 +1986-11-25,38.00,40.37,38.00,40.25,212240000,0.63 +1986-11-24,36.25,38.12,36.00,38.00,94080000,0.59 +1986-11-21,35.25,36.25,35.12,36.00,71680000,0.56 +1986-11-20,34.88,35.38,34.88,35.25,73920000,0.55 +1986-11-19,35.12,35.25,34.50,35.00,75600000,0.55 +1986-11-18,36.37,36.75,35.12,35.38,42515200,0.55 +1986-11-17,35.25,37.00,35.00,36.37,35420000,0.57 +1986-11-14,35.50,35.50,34.88,35.25,33779200,0.55 +1986-11-13,36.50,36.50,35.50,35.50,34378400,0.55 +1986-11-12,35.75,36.63,35.62,36.63,32748800,0.57 +1986-11-11,35.50,35.75,35.25,35.50,12544000,0.55 +1986-11-10,35.87,35.87,35.12,35.38,26471200,0.55 +1986-11-07,36.00,36.13,34.88,35.75,35789600,0.56 +1986-11-06,36.63,36.87,35.75,36.13,82880000,0.56 +1986-11-05,35.75,37.13,35.50,37.00,156240000,0.58 +1986-11-04,34.88,35.87,33.87,35.75,61600000,0.56 +1986-11-03,34.75,35.12,34.62,35.00,37956800,0.55 +1986-10-31,34.25,34.88,34.25,34.62,30324000,0.54 +1986-10-30,33.50,34.75,33.37,34.25,73360000,0.53 +1986-10-29,33.50,33.50,33.13,33.37,21358400,0.52 +1986-10-28,34.00,34.13,33.00,33.37,35560000,0.52 +1986-10-27,33.50,34.00,33.25,34.00,37800000,0.53 +1986-10-24,33.13,33.25,32.75,33.00,18832800,0.51 +1986-10-23,32.50,33.13,32.50,33.13,30783200,0.52 +1986-10-22,32.75,32.87,32.25,32.50,23620800,0.51 +1986-10-21,33.00,33.00,32.63,32.75,28431200,0.51 +1986-10-20,33.50,33.63,32.87,32.87,37245600,0.51 +1986-10-17,33.75,34.00,33.37,33.63,37968000,0.52 +1986-10-16,33.37,33.87,33.25,33.63,33941600,0.52 +1986-10-15,33.50,33.50,32.75,33.37,51352000,0.52 +1986-10-14,34.62,35.25,33.75,34.00,49834400,0.53 +1986-10-13,33.13,34.62,33.00,34.62,24920000,0.54 +1986-10-10,32.87,33.37,32.37,33.25,14632800,0.52 +1986-10-09,32.75,33.25,32.63,33.00,19488000,0.51 +1986-10-08,32.87,33.00,32.25,32.75,27893600,0.51 +1986-10-07,34.00,34.13,32.87,33.00,31998400,0.51 +1986-10-06,33.75,34.25,33.63,34.13,23626400,0.53 +1986-10-03,34.38,34.75,33.37,33.75,34686400,0.53 +1986-10-02,33.75,34.38,33.50,34.13,23704800,0.53 +1986-10-01,33.37,34.50,33.37,34.13,34647200,0.53 +1986-09-30,32.87,33.87,32.63,33.50,45197600,0.52 +1986-09-29,33.63,33.87,31.62,32.50,52236800,0.51 +1986-09-26,34.13,34.38,33.87,34.25,17505600,0.53 +1986-09-25,35.12,35.25,33.63,34.50,46950400,0.54 +1986-09-24,36.13,36.37,34.00,35.12,44217600,0.55 +1986-09-23,35.25,36.25,35.12,36.13,84560000,0.56 +1986-09-22,33.50,35.38,33.50,35.25,59920000,0.55 +1986-09-19,33.75,33.87,33.25,33.63,31903200,0.52 +1986-09-18,34.25,34.50,33.75,34.00,24757600,0.53 +1986-09-17,34.88,35.00,34.25,34.25,29215200,0.53 +1986-09-16,33.13,35.12,32.50,34.88,61600000,0.54 +1986-09-15,32.25,33.13,32.00,33.13,55680800,0.52 +1986-09-12,32.50,32.75,31.75,31.75,57120000,0.49 +1986-09-11,34.62,34.75,32.50,32.63,33588800,0.51 +1986-09-10,35.62,35.87,34.75,35.00,18916800,0.55 +1986-09-09,34.62,36.00,34.62,35.75,37693600,0.56 +1986-09-08,35.00,35.00,33.63,34.75,31550400,0.54 +1986-09-05,35.62,35.87,35.00,35.12,24623200,0.55 +1986-09-04,35.00,35.50,34.75,35.50,49700000,0.55 +1986-09-03,34.75,34.88,34.13,34.75,29372000,0.54 +1986-09-02,37.13,37.13,34.75,34.75,58240000,0.54 +1986-08-29,37.63,38.00,36.87,37.00,33807200,0.58 +1986-08-28,37.00,38.00,36.87,37.75,54924800,0.59 +1986-08-27,36.63,37.00,36.25,37.00,36758400,0.58 +1986-08-26,36.37,36.87,36.37,36.63,32810400,0.57 +1986-08-25,36.50,36.87,36.37,36.37,31600800,0.57 +1986-08-22,35.87,36.63,35.87,36.25,28929600,0.56 +1986-08-21,36.13,36.37,35.75,35.75,48664000,0.56 +1986-08-20,35.25,36.50,35.25,36.25,42828800,0.56 +1986-08-19,35.12,35.50,34.62,35.38,34445600,0.55 +1986-08-18,35.75,35.87,35.00,35.38,36836800,0.55 +1986-08-15,36.13,36.50,35.62,35.75,34294400,0.56 +1986-08-14,36.00,37.00,36.00,36.00,57680000,0.56 +1986-08-13,34.25,36.25,34.25,36.00,113680000,0.56 +1986-08-12,33.37,34.38,33.37,34.25,61040000,0.53 +1986-08-11,31.88,33.50,31.75,33.50,45858400,0.52 +1986-08-08,31.88,32.37,31.62,31.62,27535200,0.49 +1986-08-07,31.12,32.63,31.12,31.75,43349600,0.49 +1986-08-06,32.12,32.12,31.00,31.12,46300800,0.48 +1986-08-05,31.62,32.37,31.50,32.12,29472800,0.50 +1986-08-04,31.38,31.50,30.63,31.50,32541600,0.49 +1986-08-01,31.12,31.75,31.12,31.38,37520000,0.49 +1986-07-31,30.50,31.50,30.50,31.25,70560000,0.49 +1986-07-30,31.25,31.50,30.00,30.50,63840000,0.48 +1986-07-29,32.25,32.25,30.75,31.25,148960000,0.49 +1986-07-28,33.87,34.00,32.25,32.37,61600000,0.50 +1986-07-25,33.13,34.00,33.00,34.00,54364800,0.53 +1986-07-24,34.25,34.38,33.00,33.13,36142400,0.52 +1986-07-23,34.62,34.62,34.13,34.13,44872800,0.53 +1986-07-22,33.50,34.62,33.25,34.62,59920000,0.54 +1986-07-21,33.00,33.75,32.75,33.50,57120000,0.52 +1986-07-18,32.25,32.50,31.25,31.75,77280000,0.49 +1986-07-17,33.50,33.75,32.12,32.25,62720000,0.50 +1986-07-16,35.50,35.62,32.75,33.50,134960000,0.52 +1986-07-15,35.00,35.00,34.25,34.88,74480000,0.54 +1986-07-14,37.13,37.37,36.25,36.25,59360000,0.56 +1986-07-11,35.38,37.75,35.25,37.13,56000000,0.58 +1986-07-10,34.75,35.38,34.62,35.38,52141600,0.55 +1986-07-09,34.25,34.75,34.00,34.62,91280000,0.54 +1986-07-08,35.25,35.25,34.13,34.25,68420800,0.53 +1986-07-07,37.63,37.75,35.38,35.62,45455200,0.56 +1986-07-03,36.13,37.75,35.62,37.63,45292800,0.59 +1986-07-02,35.38,36.25,35.38,36.13,36209600,0.56 +1986-07-01,35.87,36.13,34.75,35.38,21929600,0.55 +1986-06-30,35.87,36.25,35.75,35.87,17690400,0.56 +1986-06-27,36.25,36.75,35.50,35.87,12549600,0.56 +1986-06-26,35.87,36.37,35.50,36.25,29232000,0.56 +1986-06-25,35.00,36.00,35.00,35.87,32995200,0.56 +1986-06-24,34.75,35.12,34.38,34.88,35498400,0.54 +1986-06-23,36.00,36.25,34.62,34.75,29080800,0.54 +1986-06-20,35.00,36.13,35.00,36.00,40325600,0.56 +1986-06-19,34.25,35.75,33.87,35.00,86161600,0.55 +1986-06-18,34.25,34.75,32.50,34.25,107413600,0.53 +1986-06-17,35.87,36.00,34.00,34.25,55512800,0.53 +1986-06-16,36.37,36.87,35.62,35.87,43400000,0.56 +1986-06-13,36.00,36.37,35.25,36.37,35750400,0.57 +1986-06-12,36.13,36.37,36.00,36.00,32272800,0.56 +1986-06-11,36.00,36.25,35.50,36.13,46715200,0.56 +1986-06-10,36.00,36.00,35.12,36.00,61723200,0.56 +1986-06-09,37.75,37.88,35.87,36.00,61756800,0.56 +1986-06-06,38.88,38.88,37.50,37.75,44340800,0.59 +1986-06-05,38.75,39.12,38.50,38.88,36971200,0.61 +1986-06-04,37.88,38.88,37.75,38.75,75163200,0.60 +1986-06-03,37.13,38.12,37.13,37.88,81474400,0.59 +1986-06-02,37.00,37.37,36.75,37.13,49812000,0.58 +1986-05-30,37.00,37.25,36.50,37.00,31858400,0.58 +1986-05-29,37.25,37.25,36.50,37.00,25356800,0.58 +1986-05-28,36.87,37.50,36.75,37.25,51783200,0.58 +1986-05-27,37.00,37.00,36.37,36.87,21162400,0.57 +1986-05-23,36.75,37.13,36.37,37.00,34960800,0.58 +1986-05-22,37.00,37.50,35.75,36.75,55126400,0.57 +1986-05-21,35.38,37.25,35.00,37.00,86682400,0.58 +1986-05-20,35.62,35.62,34.25,35.38,61448800,0.55 +1986-05-19,36.00,36.50,35.50,35.62,52376800,0.56 +1986-05-16,36.00,36.25,35.12,36.00,79811200,0.56 +1986-05-15,36.87,37.00,35.62,36.00,55636000,0.56 +1986-05-14,36.00,37.37,36.00,36.87,120747200,0.57 +1986-05-13,36.37,36.50,35.25,36.00,117941600,0.56 +1986-05-12,33.37,36.63,33.25,36.37,100105600,0.57 +1986-05-09,33.00,33.63,32.75,33.37,55624800,0.52 +1986-05-08,31.50,33.13,31.50,33.00,58340800,0.51 +1986-05-07,32.63,32.87,31.25,31.50,49700000,0.49 +1986-05-06,32.25,33.25,32.25,32.63,54633600,0.51 +1986-05-05,30.50,32.50,30.50,32.12,37335200,0.50 +1986-05-02,30.25,31.00,30.13,30.50,23396800,0.48 +1986-05-01,30.25,30.25,29.75,30.25,64484000,0.47 +1986-04-30,31.25,31.62,30.25,30.25,34445600,0.47 +1986-04-29,32.00,32.25,26.87,31.25,33174400,0.49 +1986-04-28,32.25,32.75,31.75,32.00,36383200,0.50 +1986-04-25,31.38,32.63,31.38,32.25,65268000,0.50 +1986-04-24,29.63,31.50,29.50,31.38,114592800,0.49 +1986-04-23,29.87,30.37,29.37,29.63,65368800,0.46 +1986-04-22,30.37,31.25,29.63,29.87,81967200,0.47 +1986-04-21,29.87,30.75,29.87,30.37,68387200,0.47 +1986-04-18,29.00,29.87,28.75,29.75,61919200,0.46 +1986-04-17,28.25,29.13,28.00,29.00,67524800,0.45 +1986-04-16,27.38,28.50,27.38,28.25,52707200,0.44 +1986-04-15,26.87,27.50,26.87,27.38,32849600,0.43 +1986-04-14,27.00,27.25,26.75,26.87,21240800,0.42 +1986-04-11,27.25,27.50,27.00,27.00,18916800,0.42 +1986-04-10,27.13,27.38,26.87,27.25,27496000,0.42 +1986-04-09,27.62,27.75,26.87,27.13,33829600,0.42 +1986-04-08,27.25,27.75,27.25,27.62,48305600,0.43 +1986-04-07,26.75,27.50,26.25,27.25,30032800,0.42 +1986-04-04,27.00,27.00,26.63,26.75,31488800,0.42 +1986-04-03,27.25,27.62,26.87,27.00,52768800,0.42 +1986-04-02,27.25,27.38,26.25,27.25,81323200,0.42 +1986-04-01,28.25,28.25,27.00,27.25,55680800,0.42 +1986-03-31,28.25,28.50,28.00,28.25,46950400,0.44 +1986-03-27,28.25,29.00,28.25,28.25,54751200,0.44 +1986-03-26,27.88,28.75,27.88,28.25,55535200,0.44 +1986-03-25,26.75,27.88,26.75,27.88,70268800,0.43 +1986-03-24,27.62,27.62,26.37,26.75,73578400,0.42 +1986-03-21,28.25,28.75,27.50,27.62,65094400,0.43 +1986-03-20,28.00,29.63,28.00,28.25,226032800,0.44 +1986-03-19,26.87,27.25,26.37,26.50,47471200,0.41 +1986-03-18,26.00,27.25,25.87,26.87,62339200,0.42 +1986-03-17,26.00,26.00,25.37,26.00,29680000,0.41 +1986-03-14,24.75,26.25,24.75,26.13,96213600,0.41 +1986-03-13,24.75,25.00,24.38,24.75,28991200,0.39 +1986-03-12,24.88,25.12,24.75,24.75,21420000,0.39 +1986-03-11,24.62,24.88,24.50,24.88,25765600,0.39 +1986-03-10,24.75,24.88,24.62,24.62,18872000,0.38 +1986-03-07,25.37,25.37,24.75,24.75,24046400,0.39 +1986-03-06,25.25,25.75,25.12,25.37,25334400,0.40 +1986-03-05,24.62,25.50,24.25,25.25,44256800,0.39 +1986-03-04,24.62,25.00,24.50,24.62,22276800,0.38 +1986-03-03,25.00,25.12,24.50,24.62,27204800,0.38 +1986-02-28,25.63,25.87,24.88,25.00,31281600,0.39 +1986-02-27,26.00,26.13,25.50,25.63,27031200,0.40 +1986-02-26,26.37,26.75,26.00,26.00,41182400,0.41 +1986-02-25,25.75,26.37,25.12,26.37,56184800,0.41 +1986-02-24,25.25,25.75,25.00,25.75,61779200,0.40 +1986-02-21,25.12,25.75,25.12,25.25,47269600,0.39 +1986-02-20,25.00,25.37,24.88,25.12,34479200,0.39 +1986-02-19,23.88,25.50,23.88,25.00,89919200,0.39 +1986-02-18,23.75,24.00,23.25,23.88,37027200,0.37 +1986-02-14,23.88,24.12,23.75,23.75,34378400,0.37 +1986-02-13,24.00,24.00,23.75,23.88,27344800,0.37 +1986-02-12,23.88,24.00,23.75,24.00,33264000,0.37 +1986-02-11,23.88,24.00,23.50,23.88,38365600,0.37 +1986-02-10,24.00,24.50,23.75,23.88,27960800,0.37 +1986-02-07,24.12,24.12,23.50,24.00,32351200,0.37 +1986-02-06,23.75,24.25,23.63,24.12,33555200,0.38 +1986-02-05,23.75,23.88,23.50,23.75,49291200,0.37 +1986-02-04,23.88,24.38,23.75,23.75,65044000,0.37 +1986-02-03,23.13,24.00,22.87,23.88,87505600,0.37 +1986-01-31,23.00,23.25,22.87,23.13,36926400,0.36 +1986-01-30,23.50,23.50,22.87,23.00,59220000,0.36 +1986-01-29,22.25,24.38,22.00,23.63,147392000,0.37 +1986-01-28,22.13,22.37,22.00,22.25,55574400,0.35 +1986-01-27,22.63,22.75,22.00,22.13,97395200,0.34 +1986-01-24,23.00,23.37,22.63,22.63,27994400,0.35 +1986-01-23,23.37,23.50,22.75,23.00,39104800,0.36 +1986-01-22,24.00,24.12,22.37,23.37,35750400,0.36 +1986-01-21,23.88,24.12,23.75,24.00,37990400,0.37 +1986-01-20,24.00,24.00,23.37,23.88,31852800,0.37 +1986-01-17,24.50,24.75,23.88,24.00,86346400,0.37 +1986-01-16,23.88,24.75,23.88,24.50,133694400,0.38 +1986-01-15,23.25,24.00,23.13,23.88,105868000,0.37 +1986-01-14,23.00,23.75,22.50,23.25,68174400,0.36 +1986-01-13,22.75,23.13,22.50,23.00,53855200,0.36 +1986-01-10,22.63,23.13,22.63,22.75,38309600,0.35 +1986-01-09,22.87,23.00,21.87,22.63,111809600,0.35 +1986-01-08,23.00,23.50,22.75,22.87,151900000,0.36 +1986-01-07,22.25,23.00,22.13,23.00,117633600,0.36 +1986-01-06,22.37,22.37,21.87,22.25,46261600,0.35 +1986-01-03,22.25,22.37,22.13,22.37,60541600,0.35 +1986-01-02,22.00,22.25,21.75,22.25,29355200,0.35 +1985-12-31,22.25,22.37,22.00,22.00,21812000,0.34 +1985-12-30,22.37,22.63,22.13,22.25,26919200,0.35 +1985-12-27,21.75,22.63,21.75,22.37,30721600,0.35 +1985-12-26,21.75,22.00,21.62,21.75,11463200,0.34 +1985-12-24,21.87,22.00,21.62,21.75,16150400,0.34 +1985-12-23,22.37,22.50,21.62,21.87,35806400,0.34 +1985-12-20,22.50,22.75,22.25,22.37,51508800,0.35 +1985-12-19,22.25,22.75,22.13,22.50,67530400,0.35 +1985-12-18,21.38,22.87,21.38,22.25,139949600,0.35 +1985-12-17,20.88,21.00,20.38,20.62,27266400,0.32 +1985-12-16,20.00,21.25,20.00,20.88,72228800,0.33 +1985-12-13,20.00,20.25,19.75,20.00,62787200,0.31 +1985-12-12,19.87,20.25,19.87,20.00,31315200,0.31 +1985-12-11,19.50,20.13,19.50,19.75,59404800,0.31 +1985-12-10,19.37,19.63,19.25,19.50,50226400,0.30 +1985-12-09,19.75,20.00,19.25,19.37,34966400,0.30 +1985-12-06,20.13,20.13,19.63,19.75,16363200,0.31 +1985-12-05,20.50,20.75,20.00,20.13,31287200,0.31 +1985-12-04,20.13,20.62,20.13,20.50,41277600,0.32 +1985-12-03,20.25,20.38,20.00,20.13,38768800,0.31 +1985-12-02,20.13,20.25,20.00,20.25,25048800,0.32 +1985-11-29,20.00,20.13,19.87,20.13,24757600,0.31 +1985-11-27,19.37,20.13,19.25,20.00,47930400,0.31 +1985-11-26,19.13,19.50,19.00,19.37,41115200,0.30 +1985-11-25,19.00,19.25,19.00,19.13,24298400,0.30 +1985-11-22,19.00,19.25,18.87,19.00,32188800,0.30 +1985-11-21,19.00,19.25,19.00,19.00,25737600,0.30 +1985-11-20,19.25,19.37,19.00,19.00,24768800,0.30 +1985-11-19,19.87,20.00,19.25,19.25,23581600,0.30 +1985-11-18,19.87,20.00,19.87,19.87,16139200,0.31 +1985-11-15,20.00,20.25,19.87,19.87,20395200,0.31 +1985-11-14,20.00,20.13,20.00,20.00,34876800,0.31 +1985-11-13,19.87,19.87,19.37,19.37,25390400,0.30 +1985-11-12,20.00,20.25,19.87,19.87,43411200,0.31 +1985-11-11,20.50,20.75,20.00,20.00,44693600,0.31 +1985-11-08,20.50,20.75,20.50,20.50,73528000,0.32 +1985-11-07,19.63,19.87,19.63,19.63,79284800,0.31 +1985-11-06,19.25,19.37,19.25,19.25,50114400,0.30 +1985-11-05,18.75,19.13,18.63,18.63,26885600,0.29 +1985-11-04,18.75,19.13,18.75,18.75,38931200,0.29 +1985-11-01,18.63,19.00,18.63,18.63,23139200,0.29 +1985-10-31,19.00,19.25,18.63,18.63,38768800,0.29 +1985-10-30,19.00,19.00,19.00,19.00,56644000,0.30 +1985-10-29,18.00,18.00,17.88,17.88,32720800,0.28 +1985-10-28,18.00,18.12,18.00,18.00,14868000,0.28 +1985-10-25,18.37,18.37,18.00,18.00,15820000,0.28 +1985-10-24,18.37,18.87,18.37,18.37,68157600,0.29 +1985-10-23,18.00,18.50,18.00,18.00,37094400,0.28 +1985-10-22,18.00,18.25,18.00,18.00,106136800,0.28 +1985-10-21,17.75,17.75,17.25,17.25,29719200,0.27 +1985-10-18,18.25,18.37,17.75,17.75,57607200,0.28 +1985-10-17,18.25,19.13,18.25,18.25,87046400,0.28 +1985-10-16,18.00,18.12,18.00,18.00,72111200,0.28 +1985-10-15,17.00,17.12,17.00,17.00,73472000,0.26 +1985-10-14,16.63,16.63,16.63,16.63,38796800,0.26 +1985-10-11,16.00,16.25,16.00,16.00,29573600,0.25 +1985-10-10,15.87,16.00,15.87,15.87,65436000,0.25 +1985-10-09,15.13,15.25,15.00,15.00,20703200,0.23 +1985-10-08,15.13,15.13,15.13,15.13,21744800,0.24 +1985-10-07,15.00,15.25,15.00,15.00,22982400,0.23 +1985-10-04,15.50,15.50,15.00,15.00,17382400,0.23 +1985-10-03,15.63,15.63,15.50,15.50,12230400,0.24 +1985-10-02,15.75,15.87,15.63,15.63,5376000,0.24 +1985-10-01,15.75,15.87,15.75,15.75,22086400,0.25 +1985-09-30,15.87,16.00,15.75,15.75,9161600,0.25 +1985-09-27,15.88,16.00,15.88,15.88,250400,0.25 +1985-09-26,15.87,16.00,15.87,15.87,13372800,0.25 +1985-09-25,16.50,16.50,15.87,15.87,26124000,0.25 +1985-09-24,16.88,17.25,16.50,16.50,22024800,0.26 +1985-09-23,16.88,17.12,16.88,16.88,29646400,0.26 +1985-09-20,17.00,17.12,16.75,16.75,33807200,0.26 +1985-09-19,17.00,17.00,17.00,17.00,46580800,0.26 +1985-09-18,16.25,16.25,16.25,16.25,30021600,0.25 +1985-09-17,15.25,15.25,15.25,15.25,45936800,0.24 +1985-09-16,15.75,15.75,15.25,15.25,9245600,0.24 +1985-09-13,16.13,16.13,15.75,15.75,17634400,0.25 +1985-09-12,16.13,16.13,16.13,16.13,27792800,0.25 +1985-09-11,15.50,15.63,15.50,15.50,21772800,0.24 +1985-09-10,15.37,15.63,15.37,15.37,30441600,0.24 +1985-09-09,15.25,15.37,15.25,15.25,33079200,0.24 +1985-09-06,15.00,15.00,15.00,15.00,23200800,0.23 +1985-09-05,14.87,15.00,14.87,14.87,8204000,0.23 +1985-09-04,14.87,15.13,14.87,14.87,11888800,0.23 +1985-09-03,15.00,15.00,14.75,14.75,9363200,0.23 +1985-08-30,15.00,15.00,15.00,15.00,10718400,0.23 +1985-08-29,15.25,15.25,14.87,14.87,14028000,0.23 +1985-08-28,15.25,15.37,15.25,15.25,10236800,0.24 +1985-08-27,15.25,15.25,15.25,15.25,10729600,0.24 +1985-08-26,15.13,15.13,15.13,15.13,8915200,0.24 +1985-08-23,14.87,15.00,14.75,14.75,11004000,0.23 +1985-08-22,15.25,15.25,14.87,14.87,30828000,0.23 +1985-08-21,15.25,15.25,15.25,15.25,19252800,0.24 +1985-08-20,15.25,15.25,15.25,15.25,16738400,0.24 +1985-08-19,15.00,15.25,15.00,15.00,11967200,0.23 +1985-08-16,14.62,14.87,14.62,14.62,20938400,0.23 +1985-08-15,14.62,14.75,14.50,14.50,26297600,0.23 +1985-08-14,15.25,15.25,14.62,14.62,72475200,0.23 +1985-08-13,15.25,15.50,15.25,15.25,10595200,0.24 +1985-08-12,15.25,15.25,15.00,15.00,13748000,0.23 +1985-08-09,15.25,15.25,15.25,15.25,15237600,0.24 +1985-08-08,15.13,15.25,15.13,15.13,36943200,0.24 +1985-08-07,15.25,16.00,14.87,14.87,37934400,0.23 +1985-08-06,15.37,15.75,15.25,15.25,15769600,0.24 +1985-08-05,15.75,15.87,15.37,15.37,23083200,0.24 +1985-08-02,15.87,15.87,15.75,15.75,24354400,0.25 +1985-08-01,15.87,16.13,15.87,15.87,12891200,0.25 +1985-07-31,16.25,16.37,15.87,15.87,20126400,0.25 +1985-07-30,16.25,16.37,16.25,16.25,22366400,0.25 +1985-07-29,16.63,16.63,16.00,16.00,19437600,0.25 +1985-07-26,16.63,16.75,16.63,16.63,32631200,0.26 +1985-07-25,16.63,16.75,16.63,16.63,78769600,0.26 +1985-07-24,16.50,16.75,16.25,16.25,42179200,0.25 +1985-07-23,16.88,17.12,16.50,16.50,42173600,0.26 +1985-07-22,17.38,17.38,16.88,16.88,48076000,0.26 +1985-07-19,17.38,17.38,17.38,17.38,28728000,0.27 +1985-07-18,17.62,17.62,17.25,17.25,44766400,0.27 +1985-07-17,17.62,17.88,17.62,17.62,29545600,0.27 +1985-07-16,17.75,17.88,17.50,17.50,35840000,0.27 +1985-07-15,17.88,18.25,17.75,17.75,19420800,0.28 +1985-07-12,18.00,18.00,17.88,17.88,11760000,0.28 +1985-07-11,18.00,18.12,18.00,18.00,16223200,0.28 +1985-07-10,18.00,18.00,18.00,18.00,26510400,0.28 +1985-07-09,17.62,17.75,17.62,17.62,36976800,0.27 +1985-07-08,17.62,17.75,17.62,17.62,23055200,0.27 +1985-07-05,17.62,17.75,17.62,17.62,9144800,0.27 +1985-07-03,17.50,17.50,17.50,17.50,17124800,0.27 +1985-07-02,18.12,18.25,17.25,17.25,19432000,0.27 +1985-07-01,18.12,18.25,18.12,18.12,25860800,0.28 +1985-06-28,18.37,18.50,18.00,18.00,33936000,0.28 +1985-06-27,18.37,18.50,18.37,18.37,48115200,0.29 +1985-06-26,18.12,18.12,18.12,18.12,33051200,0.28 +1985-06-25,17.50,17.88,17.50,17.50,73477600,0.27 +1985-06-24,17.25,17.50,17.25,17.25,51441600,0.27 +1985-06-21,16.13,16.50,16.13,16.13,41535200,0.25 +1985-06-20,15.75,15.75,15.75,15.75,47700800,0.25 +1985-06-19,15.63,15.87,15.63,15.63,42996800,0.24 +1985-06-18,15.25,15.50,15.25,15.25,66304000,0.24 +1985-06-17,14.87,15.00,14.87,14.87,59085600,0.23 +1985-06-14,14.87,15.75,14.75,14.75,141416800,0.23 +1985-06-13,15.75,15.87,14.87,14.87,94880800,0.23 +1985-06-12,16.13,16.25,15.75,15.75,61997600,0.25 +1985-06-11,16.13,16.50,16.13,16.13,75180000,0.25 +1985-06-10,16.37,16.50,16.13,16.13,79032800,0.25 +1985-06-07,17.00,17.00,16.37,16.37,118809600,0.26 +1985-06-06,17.00,17.00,17.00,17.00,67799200,0.26 +1985-06-05,17.25,17.75,16.88,16.88,71601600,0.26 +1985-06-04,17.25,17.38,17.25,17.25,100480800,0.27 +1985-06-03,17.00,17.00,16.00,16.00,144004000,0.25 +1985-05-31,17.62,18.00,17.38,17.38,92355200,0.27 +1985-05-30,17.62,17.88,17.62,17.62,78730400,0.27 +1985-05-29,17.12,17.25,17.12,17.12,61639200,0.27 +1985-05-28,17.88,17.88,16.88,16.88,127741600,0.26 +1985-05-24,19.75,19.75,18.12,18.12,147369600,0.28 +1985-05-23,20.50,20.50,19.75,19.75,59791200,0.31 +1985-05-22,20.75,20.88,20.62,20.62,30139200,0.32 +1985-05-21,21.25,21.25,20.75,20.75,38136000,0.32 +1985-05-20,21.75,22.25,21.38,21.38,49296800,0.33 +1985-05-17,21.38,22.13,21.25,21.75,52964800,0.34 +1985-05-16,21.38,22.00,21.38,21.38,57635200,0.33 +1985-05-15,20.00,20.38,20.00,20.00,32608800,0.31 +1985-05-14,20.00,20.13,19.75,19.75,30436000,0.31 +1985-05-13,20.25,20.38,20.00,20.00,21806400,0.31 +1985-05-10,20.00,20.50,20.00,20.25,34020000,0.32 +1985-05-09,20.00,20.13,20.00,20.00,31768800,0.31 +1985-05-08,19.87,19.87,19.87,19.87,36097600,0.31 +1985-05-07,20.00,20.00,20.00,20.00,26902400,0.31 +1985-05-06,20.00,20.25,19.75,19.75,14033600,0.31 +1985-05-03,19.25,20.13,19.25,20.00,39530400,0.31 +1985-05-02,20.62,20.62,19.25,19.25,82443200,0.30 +1985-05-01,21.25,21.38,20.88,20.88,14336000,0.33 +1985-04-30,21.25,21.38,21.25,21.25,23682400,0.33 +1985-04-29,21.87,22.00,21.12,21.12,15551200,0.33 +1985-04-26,22.00,22.63,21.87,21.87,29926400,0.34 +1985-04-25,22.00,22.13,22.00,22.00,21907200,0.34 +1985-04-24,22.13,22.50,22.00,22.00,19734400,0.34 +1985-04-23,22.13,22.25,22.13,22.13,29573600,0.34 +1985-04-22,22.50,22.50,21.62,21.62,25648000,0.34 +1985-04-19,22.87,22.87,22.37,22.50,24007200,0.35 +1985-04-18,22.87,23.00,22.87,22.87,50607200,0.36 +1985-04-17,22.63,22.87,22.63,22.63,30811200,0.35 +1985-04-16,21.62,21.75,21.62,21.62,16912000,0.34 +1985-04-15,21.38,21.62,21.38,21.38,14957600,0.33 +1985-04-12,21.38,21.38,20.75,20.88,18132800,0.33 +1985-04-11,21.38,22.00,21.38,21.38,36668800,0.33 +1985-04-10,21.00,21.25,21.00,21.00,56728000,0.33 +1985-04-09,19.63,19.75,19.63,19.63,65973600,0.31 +1985-04-08,20.88,21.00,19.63,19.63,49683200,0.31 +1985-04-04,21.00,21.12,20.62,20.88,40465600,0.33 +1985-04-03,21.00,21.12,21.00,21.00,60664800,0.33 +1985-04-02,21.62,21.75,21.00,21.00,56856800,0.33 +1985-04-01,22.13,22.63,21.62,21.62,28515200,0.34 +1985-03-29,21.87,22.25,21.87,22.13,21795200,0.34 +1985-03-28,21.87,22.25,21.87,21.87,32401600,0.34 +1985-03-27,22.50,22.75,21.87,21.87,27837600,0.34 +1985-03-26,22.50,22.50,22.50,22.50,30357600,0.35 +1985-03-25,22.25,22.25,21.62,21.62,27490400,0.34 +1985-03-22,22.63,23.00,22.25,22.25,20092800,0.35 +1985-03-21,22.63,23.00,22.63,22.63,40616800,0.35 +1985-03-20,22.25,22.63,22.25,22.25,101242400,0.35 +1985-03-19,22.87,23.13,22.00,22.00,42862400,0.34 +1985-03-18,22.87,23.13,22.87,22.87,31192000,0.36 +1985-03-15,21.75,23.13,21.62,22.63,45354400,0.35 +1985-03-14,21.75,21.87,21.75,21.75,60401600,0.34 +1985-03-13,23.00,23.00,21.75,21.75,62781600,0.34 +1985-03-12,23.00,23.25,23.00,23.00,54857600,0.36 +1985-03-11,22.25,22.37,22.25,22.25,71500800,0.35 +1985-03-08,22.13,22.13,20.75,21.50,118389600,0.33 +1985-03-07,24.62,24.75,22.13,22.13,183495200,0.34 +1985-03-06,25.87,25.87,24.62,24.62,48400800,0.38 +1985-03-05,25.87,25.87,25.87,25.87,32692800,0.40 +1985-03-04,25.25,26.00,25.25,25.25,38276000,0.39 +1985-03-01,24.75,24.88,24.00,24.88,61857600,0.39 +1985-02-28,25.12,25.12,24.75,24.75,79766400,0.39 +1985-02-27,26.75,26.75,25.12,25.12,100895200,0.39 +1985-02-26,27.25,27.38,26.75,26.75,47241600,0.42 +1985-02-25,27.62,27.75,27.25,27.25,24634400,0.42 +1985-02-22,26.87,27.88,26.87,27.62,56632800,0.43 +1985-02-21,26.87,27.00,26.87,26.87,77056000,0.42 +1985-02-20,27.62,27.75,26.37,26.37,54992000,0.41 +1985-02-19,27.88,27.88,27.62,27.62,37458400,0.43 +1985-02-15,27.62,28.12,27.38,28.00,43405600,0.44 +1985-02-14,28.38,28.62,27.62,27.62,106708000,0.43 +1985-02-13,29.75,29.75,28.38,28.38,131756800,0.44 +1985-02-12,30.50,30.63,29.75,29.75,56627200,0.46 +1985-02-11,30.50,30.75,30.50,30.50,86738400,0.48 +1985-02-08,29.87,30.00,29.50,29.87,33006400,0.47 +1985-02-07,30.00,30.37,29.87,29.87,61370400,0.47 +1985-02-06,30.00,30.00,30.00,30.00,48608000,0.47 +1985-02-05,29.50,30.00,29.50,29.50,47510400,0.46 +1985-02-04,29.25,29.37,29.25,29.25,54504800,0.46 +1985-02-01,29.00,29.13,28.38,28.62,34434400,0.45 +1985-01-31,29.87,30.00,29.00,29.00,69059200,0.45 +1985-01-30,29.87,30.50,29.87,29.87,123110400,0.47 +1985-01-29,30.25,30.50,29.87,29.87,55932800,0.47 +1985-01-28,30.25,30.63,30.25,30.25,103045600,0.47 +1985-01-25,29.00,29.63,28.38,29.63,79615200,0.46 +1985-01-24,29.63,29.63,29.00,29.00,99265600,0.45 +1985-01-23,30.13,30.25,29.63,29.63,107626400,0.46 +1985-01-22,30.13,30.25,30.13,30.13,106209600,0.47 +1985-01-21,29.25,29.50,29.25,29.25,81356800,0.46 +1985-01-18,28.12,29.25,28.00,28.62,88166400,0.45 +1985-01-17,30.25,30.75,28.12,28.12,136880800,0.44 +1985-01-16,30.25,30.75,30.25,30.25,47471200,0.47 +1985-01-15,30.63,31.12,30.00,30.00,66242400,0.47 +1985-01-14,30.63,30.88,30.63,30.63,67608800,0.48 +1985-01-11,30.00,30.25,29.50,29.75,51262400,0.46 +1985-01-10,30.00,30.13,30.00,30.00,69266400,0.47 +1985-01-09,28.75,29.13,28.75,28.75,41680800,0.45 +1985-01-08,28.25,28.50,28.00,28.00,35280000,0.44 +1985-01-07,28.38,28.50,28.25,28.25,42728000,0.44 +1985-01-04,28.38,28.50,28.00,28.38,34316800,0.44 +1985-01-03,28.38,29.13,28.38,28.38,41652800,0.44 +1985-01-02,29.13,29.13,27.88,27.88,43825600,0.43 +1984-12-31,29.13,29.25,29.13,29.13,51940000,0.45 +1984-12-28,27.75,28.87,27.62,28.75,41333600,0.45 +1984-12-27,27.75,27.88,27.75,27.75,24690400,0.43 +1984-12-26,27.62,27.88,27.62,27.62,16794400,0.43 +1984-12-24,27.50,27.62,27.50,27.50,16884000,0.43 +1984-12-21,27.38,27.50,26.75,27.00,30973600,0.42 +1984-12-20,27.50,28.00,27.38,27.38,34960800,0.43 +1984-12-19,28.62,28.75,27.50,27.50,79374400,0.43 +1984-12-18,28.62,28.75,28.62,28.62,85142400,0.45 +1984-12-17,27.00,27.25,27.00,27.00,31309600,0.42 +1984-12-14,25.75,26.63,25.75,26.37,24035200,0.41 +1984-12-13,25.75,26.25,25.75,25.75,16710400,0.40 +1984-12-12,26.37,26.37,25.50,25.50,27518400,0.40 +1984-12-11,26.75,27.13,26.37,26.37,30945600,0.41 +1984-12-10,27.25,27.25,26.75,26.75,27871200,0.42 +1984-12-07,27.38,28.38,27.13,27.25,123631200,0.42 +1984-12-06,27.38,27.50,27.38,27.38,79318400,0.43 +1984-12-05,26.13,26.13,26.13,26.13,65727200,0.41 +1984-12-04,24.88,25.37,24.88,24.88,30094400,0.39 +1984-12-03,24.75,24.88,24.38,24.38,24500000,0.38 +1984-11-30,25.37,25.63,24.62,24.75,27176800,0.39 +1984-11-29,25.87,25.87,25.37,25.37,43719200,0.40 +1984-11-28,25.87,26.50,25.87,25.87,102631200,0.40 +1984-11-27,24.62,24.88,24.62,24.62,31852800,0.38 +1984-11-26,24.00,24.00,24.00,24.00,25160800,0.37 +1984-11-23,23.37,24.12,23.37,23.75,34272000,0.37 +1984-11-21,23.13,23.25,23.13,23.13,44682400,0.36 +1984-11-20,22.63,22.75,22.63,22.63,65811200,0.35 +1984-11-19,23.25,23.37,21.87,21.87,58245600,0.34 +1984-11-16,23.75,24.12,23.13,23.25,41440000,0.36 +1984-11-15,23.75,24.00,23.75,23.75,26650400,0.37 +1984-11-14,23.75,24.00,23.75,23.75,26084800,0.37 +1984-11-13,24.12,24.62,23.50,23.50,31668000,0.37 +1984-11-12,24.12,24.25,24.12,24.12,28313600,0.38 +1984-11-09,24.75,24.88,23.00,23.25,73533600,0.36 +1984-11-08,25.75,25.75,24.75,24.75,22030400,0.39 +1984-11-07,26.25,26.37,25.75,25.75,57887200,0.40 +1984-11-06,26.25,26.37,26.25,26.25,56330400,0.41 +1984-11-05,24.88,25.37,24.75,24.75,26342400,0.39 +1984-11-02,25.00,25.12,24.75,24.88,6921600,0.39 +1984-11-01,25.00,25.25,25.00,25.00,11760000,0.39 +1984-10-31,25.00,25.25,24.88,24.88,15058400,0.39 +1984-10-30,25.00,25.25,25.00,25.00,18648000,0.39 +1984-10-29,24.75,24.88,24.75,24.75,12661600,0.39 +1984-10-26,25.25,25.25,24.50,24.62,28711200,0.38 +1984-10-25,26.25,26.25,25.25,25.25,39541600,0.39 +1984-10-24,26.25,26.50,26.25,26.25,41753600,0.41 +1984-10-23,26.00,26.25,26.00,26.00,46608800,0.41 +1984-10-22,25.63,26.00,25.37,25.37,28688800,0.40 +1984-10-19,25.63,27.38,25.50,25.63,81530400,0.40 +1984-10-18,25.63,25.75,25.63,25.63,61790400,0.40 +1984-10-17,24.88,25.00,24.88,24.88,39160800,0.39 +1984-10-16,24.00,24.12,23.88,23.88,29506400,0.37 +1984-10-15,24.00,24.25,24.00,24.00,60816000,0.37 +1984-10-12,23.75,23.88,22.50,22.75,66449600,0.35 +1984-10-11,23.88,24.50,23.75,23.75,45690400,0.37 +1984-10-10,24.62,24.62,23.88,23.88,91212800,0.37 +1984-10-09,24.88,25.00,24.62,24.62,31315200,0.38 +1984-10-08,24.88,25.00,24.88,24.88,11743200,0.39 +1984-10-05,25.37,25.37,24.75,24.88,24393600,0.39 +1984-10-04,25.37,25.63,25.37,25.37,31371200,0.40 +1984-10-03,25.12,25.50,25.12,25.12,30105600,0.39 +1984-10-02,24.75,25.63,24.75,24.75,29562400,0.39 +1984-10-01,25.00,25.00,24.50,24.50,24444000,0.38 +1984-09-28,25.75,25.75,24.62,25.12,58352000,0.39 +1984-09-27,25.75,25.87,25.75,25.75,26482400,0.40 +1984-09-26,26.13,27.25,25.75,25.75,27742400,0.40 +1984-09-25,26.50,26.50,26.13,26.13,41697600,0.41 +1984-09-24,26.87,27.00,26.63,26.63,19751200,0.41 +1984-09-21,27.13,27.88,26.50,26.87,24959200,0.42 +1984-09-20,27.13,27.38,27.13,27.13,16542400,0.42 +1984-09-19,27.62,27.88,27.00,27.00,26572000,0.42 +1984-09-18,28.62,28.87,27.62,27.62,24326400,0.43 +1984-09-17,28.62,29.00,28.62,28.62,48188000,0.45 +1984-09-14,27.62,28.50,27.62,27.88,61717600,0.43 +1984-09-13,27.50,27.62,27.50,27.50,51833600,0.43 +1984-09-12,26.87,27.00,26.13,26.13,33280800,0.41 +1984-09-11,26.63,27.38,26.63,26.87,38096800,0.42 +1984-09-10,26.50,26.63,25.87,26.37,16156000,0.41 +1984-09-07,26.50,26.87,26.25,26.50,20815200,0.41 +1984-09-06,26.25,26.87,26.25,26.50,32743200,0.41 +1984-09-05,26.25,26.63,26.00,26.25,25939200,0.41 +1984-09-04,26.50,26.75,26.00,26.25,29960000,0.41 +1984-08-31,27.00,27.13,26.13,26.50,34462400,0.41 +1984-08-30,27.50,27.88,27.00,27.00,12740000,0.42 +1984-08-29,28.25,28.38,27.25,27.50,18530400,0.43 +1984-08-28,27.88,28.25,27.62,28.25,14789600,0.44 +1984-08-27,28.12,28.12,27.38,27.88,21918400,0.43 +1984-08-24,28.12,28.50,27.88,28.12,17724000,0.44 +1984-08-23,28.00,28.62,28.00,28.12,20854400,0.44 +1984-08-22,28.50,29.25,27.75,28.00,55104000,0.44 +1984-08-21,27.38,28.75,27.38,28.50,44884000,0.44 +1984-08-20,27.50,27.62,26.63,27.38,34613600,0.43 +1984-08-17,28.12,28.25,27.13,27.50,38483200,0.43 +1984-08-16,27.88,28.38,27.50,28.12,36204000,0.44 +1984-08-15,28.75,28.75,27.62,27.88,44721600,0.43 +1984-08-14,30.00,30.25,28.50,28.87,43517600,0.45 +1984-08-13,28.50,30.25,28.12,30.00,60362400,0.47 +1984-08-10,29.75,30.88,28.38,28.50,99344000,0.44 +1984-08-09,28.50,30.00,27.88,29.75,64405600,0.46 +1984-08-08,29.63,30.25,28.25,28.50,73600800,0.44 +1984-08-07,29.25,30.00,27.88,29.63,83120800,0.46 +1984-08-06,27.38,30.50,27.25,29.25,156699200,0.46 +1984-08-03,24.12,27.50,24.00,27.38,154515200,0.43 +1984-08-02,25.00,25.37,24.12,24.12,75919200,0.38 +1984-08-01,25.50,25.75,24.25,25.00,71433600,0.39 +1984-07-31,25.50,25.87,24.88,25.50,49907200,0.40 +1984-07-30,27.13,27.25,25.25,25.50,31259200,0.40 +1984-07-27,27.25,27.50,27.00,27.13,18485600,0.42 +1984-07-26,26.75,27.62,26.50,27.25,35834400,0.42 +1984-07-25,26.75,27.38,26.75,26.75,50114400,0.42 +1984-07-24,25.12,27.00,25.00,26.63,44811200,0.41 +1984-07-23,25.37,25.37,24.50,25.12,23508800,0.39 +1984-07-20,25.37,25.75,25.25,25.37,8293600,0.40 +1984-07-19,25.37,25.75,25.12,25.37,19476800,0.40 +1984-07-18,25.75,25.87,25.25,25.37,26006400,0.40 +1984-07-17,25.75,26.00,25.37,25.75,21212800,0.40 +1984-07-16,26.37,26.37,25.00,25.75,50747200,0.40 +1984-07-13,26.63,27.13,26.00,26.37,33986400,0.41 +1984-07-12,26.50,27.13,26.37,26.63,42173600,0.41 +1984-07-11,26.87,27.25,26.13,26.50,30273600,0.41 +1984-07-10,26.25,27.13,26.13,26.87,43075200,0.42 +1984-07-09,25.12,26.37,24.75,26.25,47667200,0.41 +1984-07-06,24.75,25.50,24.25,25.12,23912000,0.39 +1984-07-05,25.25,25.50,24.38,24.75,23296000,0.39 +1984-07-03,25.63,25.75,24.88,25.25,44766400,0.39 +1984-07-02,26.50,26.63,25.12,25.63,39916800,0.40 +1984-06-29,26.37,27.75,26.37,26.50,35498400,0.41 +1984-06-28,25.25,26.75,25.25,26.37,29579200,0.41 +1984-06-27,26.00,26.25,24.25,25.25,94320800,0.39 +1984-06-26,27.25,27.38,26.00,26.00,37161600,0.41 +1984-06-25,28.62,28.87,27.00,27.25,41871200,0.42 +1984-06-22,29.00,29.50,28.62,28.62,21151200,0.45 +1984-06-21,30.25,30.63,29.00,29.00,35476000,0.45 +1984-06-20,29.37,30.25,28.75,30.25,29881600,0.47 +1984-06-19,29.63,30.37,29.37,29.37,40236000,0.46 +1984-06-18,29.00,29.75,28.38,29.63,28649600,0.46 +1984-06-15,28.87,29.37,28.87,29.00,22444800,0.45 +1984-06-14,29.75,29.75,28.75,28.87,25239200,0.45 +1984-06-13,29.25,29.87,29.25,29.75,28929600,0.46 +1984-06-12,28.62,29.50,28.50,29.13,29282400,0.45 +1984-06-11,28.62,28.87,28.25,28.62,21061600,0.45 +1984-06-08,28.75,28.87,28.00,28.62,27244000,0.45 +1984-06-07,29.00,29.13,28.12,28.75,25636800,0.45 +1984-06-06,27.88,29.13,27.75,29.00,40364800,0.45 +1984-06-05,29.13,29.13,27.75,27.88,82107200,0.43 +1984-06-04,30.37,30.75,29.37,29.63,37072000,0.46 +1984-06-01,29.37,30.37,29.25,30.37,60575200,0.47 +1984-05-31,29.00,29.75,28.75,29.37,41753600,0.46 +1984-05-30,29.37,29.50,28.00,29.00,79609600,0.45 +1984-05-29,29.50,29.75,28.87,29.37,39065600,0.46 +1984-05-25,29.37,29.87,29.13,29.50,30027200,0.46 +1984-05-24,30.25,30.25,28.87,29.37,48328000,0.46 +1984-05-23,30.88,31.12,30.25,30.25,42240800,0.47 +1984-05-22,31.88,31.88,30.00,30.88,75314400,0.48 +1984-05-21,29.75,32.25,29.63,31.88,108763200,0.50 +1984-05-18,29.13,29.87,28.75,29.75,48367200,0.46 +1984-05-17,30.50,30.50,28.75,29.13,70487200,0.45 +1984-05-16,31.88,32.12,30.37,30.50,54930400,0.48 +1984-05-15,31.62,32.12,31.50,31.88,25676000,0.50 +1984-05-14,32.12,32.12,31.25,31.62,22321600,0.49 +1984-05-11,33.13,33.25,31.00,32.25,49431200,0.50 +1984-05-10,33.13,33.63,32.25,33.13,59656800,0.52 +1984-05-09,32.87,34.38,32.50,33.13,101253600,0.52 +1984-05-08,31.25,33.13,31.25,32.87,63750400,0.51 +1984-05-07,30.13,31.38,29.87,31.12,40017600,0.48 +1984-05-04,31.62,31.62,30.00,30.13,65111200,0.47 +1984-05-03,33.00,33.00,31.00,31.62,81855200,0.49 +1984-05-02,33.25,33.50,32.37,33.00,79329600,0.51 +1984-05-01,31.75,33.25,31.75,33.25,101628800,0.52 +1984-04-30,30.13,31.38,29.87,31.38,73287200,0.49 +1984-04-27,29.75,30.75,29.25,30.13,92999200,0.47 +1984-04-26,27.75,29.87,27.75,29.75,79626400,0.46 +1984-04-25,27.88,28.12,27.38,27.62,48720000,0.43 +1984-04-24,28.38,28.87,27.75,27.88,70392000,0.43 +1984-04-23,28.25,29.13,28.00,28.38,73466400,0.44 +1984-04-19,28.00,28.38,27.75,28.25,30850400,0.44 +1984-04-18,27.50,28.12,27.38,28.00,49918400,0.44 +1984-04-17,26.75,27.88,26.75,27.50,83238400,0.43 +1984-04-16,25.75,26.37,25.12,26.25,17029600,0.41 +1984-04-13,25.75,26.37,25.50,25.75,25849600,0.40 +1984-04-12,24.50,26.00,24.12,25.75,19600000,0.40 +1984-04-11,24.75,25.37,24.25,24.50,17651200,0.38 +1984-04-10,24.00,24.75,24.00,24.75,14274400,0.39 +1984-04-09,23.50,24.25,23.50,23.50,13563200,0.37 +1984-04-06,24.12,24.38,23.00,23.50,21397600,0.37 +1984-04-05,24.50,24.88,24.12,24.12,20703200,0.38 +1984-04-04,25.00,25.12,24.50,24.50,26919200,0.38 +1984-04-03,24.88,25.12,24.62,25.00,11026400,0.39 +1984-04-02,24.75,25.25,24.50,24.88,13664000,0.39 +1984-03-30,25.37,25.50,24.50,24.75,11435200,0.39 +1984-03-29,25.50,25.75,25.25,25.37,9794400,0.40 +1984-03-28,25.12,25.63,25.12,25.50,18872000,0.40 +1984-03-27,25.75,25.87,24.88,25.00,24824800,0.39 +1984-03-26,25.50,26.13,25.25,25.75,14240800,0.40 +1984-03-23,25.50,25.75,25.00,25.50,15282400,0.40 +1984-03-22,26.00,26.00,25.12,25.50,12796000,0.40 +1984-03-21,26.00,26.63,25.87,26.00,11916800,0.41 +1984-03-20,26.25,26.75,25.12,26.00,25132800,0.41 +1984-03-19,26.50,26.50,25.87,26.25,20647200,0.41 +1984-03-16,26.75,27.75,26.37,26.63,31175200,0.41 +1984-03-15,26.63,27.00,26.37,26.75,13820800,0.42 +1984-03-14,27.00,27.13,26.50,26.63,14901600,0.41 +1984-03-13,27.38,27.75,26.75,27.00,38220000,0.42 +1984-03-12,26.50,27.50,26.50,27.38,31259200,0.43 +1984-03-09,26.87,26.87,26.25,26.37,16514400,0.41 +1984-03-08,26.50,27.13,26.50,26.87,32446400,0.42 +1984-03-07,25.75,26.63,25.12,26.50,24141600,0.41 +1984-03-06,26.75,27.25,25.63,25.75,24746400,0.40 +1984-03-05,27.25,27.38,26.37,26.75,18401600,0.42 +1984-03-02,27.00,28.00,26.87,27.25,47812800,0.42 +1984-03-01,26.25,27.13,25.63,27.00,33090400,0.42 +1984-02-29,25.50,26.87,25.25,26.25,33510400,0.41 +1984-02-28,27.00,27.13,25.12,25.50,42481600,0.40 +1984-02-27,27.13,27.50,26.37,27.00,30391200,0.42 +1984-02-24,26.87,27.50,26.87,27.13,19454400,0.42 +1984-02-23,27.38,27.38,26.00,26.87,38763200,0.42 +1984-02-22,26.25,27.62,26.25,27.38,55843200,0.43 +1984-02-21,25.00,26.25,24.88,26.13,30072000,0.41 +1984-02-17,25.37,26.00,25.00,25.00,33661600,0.39 +1984-02-16,25.12,25.50,24.50,25.37,26308800,0.40 +1984-02-15,25.63,26.75,24.88,25.12,50209600,0.39 +1984-02-14,24.25,25.75,24.25,25.63,52264800,0.40 +1984-02-13,24.38,24.62,23.88,24.25,26432000,0.38 +1984-02-10,23.63,25.00,23.63,24.38,35991200,0.38 +1984-02-09,23.25,24.12,22.63,23.63,58699200,0.37 +1984-02-08,24.12,24.50,23.25,23.25,37055200,0.36 +1984-02-07,23.25,24.25,22.37,24.12,54432000,0.38 +1984-02-06,24.50,24.50,23.13,23.25,41389600,0.36 +1984-02-03,24.88,25.50,24.50,24.50,36372000,0.38 +1984-02-02,24.62,25.00,24.12,24.88,33728800,0.39 +1984-02-01,24.75,25.50,24.50,24.62,40779200,0.38 +1984-01-31,24.75,25.25,23.13,24.75,86273600,0.39 +1984-01-30,26.13,26.63,24.12,24.75,69367200,0.39 +1984-01-27,27.62,27.75,25.63,26.13,48524000,0.41 +1984-01-26,27.00,28.00,27.00,27.62,42123200,0.43 +1984-01-25,27.25,28.87,26.87,27.00,65968000,0.42 +1984-01-24,28.87,29.00,26.50,27.25,80057600,0.42 +1984-01-23,28.62,29.13,28.38,28.87,69591200,0.45 +1984-01-20,29.00,29.13,28.25,28.62,35336000,0.45 +1984-01-19,28.75,29.50,28.50,29.00,37430400,0.45 +1984-01-18,28.62,29.25,28.12,28.75,55126400,0.45 +1984-01-17,27.88,28.75,27.88,28.62,37268000,0.45 +1984-01-16,27.25,28.25,27.13,27.88,34395200,0.43 +1984-01-13,27.88,28.25,26.75,27.25,30436000,0.42 +1984-01-12,28.00,28.38,27.62,27.88,27585600,0.43 +1984-01-11,27.62,28.50,27.50,28.00,43988000,0.44 +1984-01-10,26.25,27.62,26.25,27.62,43047200,0.43 +1984-01-09,27.75,27.75,25.37,26.25,53933600,0.41 +1984-01-06,28.25,28.62,27.25,27.75,42123200,0.43 +1984-01-05,27.88,29.00,27.62,28.25,76428800,0.44 +1984-01-04,25.75,28.00,25.75,27.88,73152800,0.43 +1984-01-03,24.38,26.13,24.38,25.63,37548000,0.40 +1983-12-30,24.38,25.00,24.25,24.38,22965600,0.38 +1983-12-29,25.00,25.25,24.38,24.38,25687200,0.38 +1983-12-28,24.75,25.25,24.50,25.00,32138400,0.39 +1983-12-27,24.62,25.00,24.62,24.75,24108000,0.39 +1983-12-23,24.75,24.88,24.25,24.62,12140800,0.38 +1983-12-22,24.25,24.75,24.12,24.75,32636800,0.39 +1983-12-21,23.37,24.25,23.25,24.25,42946400,0.38 +1983-12-20,24.00,24.00,23.00,23.37,44436000,0.36 +1983-12-19,24.75,25.00,23.88,24.00,43400000,0.37 +1983-12-16,24.38,25.00,24.25,24.75,46216800,0.39 +1983-12-15,23.37,24.75,23.37,24.38,79150400,0.38 +1983-12-14,22.50,23.63,21.62,23.37,50472800,0.36 +1983-12-13,21.50,22.75,21.38,22.50,49386400,0.35 +1983-12-12,21.62,21.75,21.00,21.50,16284800,0.33 +1983-12-09,21.50,22.13,21.25,21.62,20692000,0.34 +1983-12-08,21.00,22.13,21.00,21.50,34406400,0.33 +1983-12-07,20.50,21.50,20.25,21.00,22288000,0.33 +1983-12-06,20.38,20.62,20.25,20.50,12997600,0.32 +1983-12-05,19.87,20.50,19.75,20.38,11289600,0.32 +1983-12-02,20.25,20.25,19.75,19.87,21341600,0.31 +1983-12-01,20.38,20.88,20.00,20.25,19168800,0.32 +1983-11-30,20.75,21.00,20.38,20.38,16083200,0.32 +1983-11-29,21.00,21.50,20.50,20.75,23822400,0.32 +1983-11-28,20.50,21.12,20.38,21.00,18099200,0.33 +1983-11-25,20.38,20.62,20.38,20.50,9324000,0.32 +1983-11-23,21.50,21.50,20.00,20.38,28588000,0.32 +1983-11-22,21.50,21.75,21.25,21.50,26297600,0.33 +1983-11-21,20.62,21.62,20.62,21.50,26252800,0.33 +1983-11-18,20.50,20.88,20.25,20.62,19975200,0.32 +1983-11-17,20.00,20.75,20.00,20.50,22596000,0.32 +1983-11-16,19.75,20.50,19.63,20.00,25569600,0.31 +1983-11-15,19.75,19.87,19.00,19.75,29657600,0.31 +1983-11-14,20.00,20.25,19.63,19.75,27070400,0.31 +1983-11-11,19.63,20.38,19.50,20.00,29008000,0.31 +1983-11-10,19.25,20.13,19.25,19.63,55518400,0.31 +1983-11-09,17.88,19.25,17.50,19.25,88368000,0.30 +1983-11-08,19.50,19.50,17.25,17.88,305379200,0.28 +1983-11-07,21.12,21.62,20.75,21.00,38029600,0.33 +1983-11-04,21.87,22.00,21.00,21.12,36685600,0.33 +1983-11-03,23.50,23.63,21.00,21.87,71500800,0.34 +1983-11-02,23.00,24.12,23.00,23.50,50618400,0.37 +1983-11-01,22.63,24.00,21.62,23.00,82096000,0.36 +1983-10-31,21.12,23.00,21.12,22.63,43293600,0.35 +1983-10-28,21.12,21.38,20.38,20.88,20300000,0.33 +1983-10-27,20.13,21.62,20.13,21.12,24460800,0.33 +1983-10-26,21.25,21.50,20.00,20.13,32228000,0.31 +1983-10-25,21.12,21.87,21.00,21.25,42112000,0.33 +1983-10-24,19.87,21.12,17.88,21.12,64848000,0.33 +1983-10-21,20.38,20.88,19.63,19.87,39250400,0.31 +1983-10-20,21.50,22.13,19.87,20.38,32922400,0.32 +1983-10-19,19.37,22.25,19.13,21.50,71848000,0.33 +1983-10-18,20.75,20.75,18.87,19.37,95743200,0.30 +1983-10-17,22.75,22.75,20.88,21.00,54779200,0.33 +1983-10-14,23.00,23.75,22.50,22.75,69815200,0.35 +1983-10-13,21.75,24.00,21.75,23.00,105128800,0.36 +1983-10-12,19.37,21.25,19.25,21.12,118154400,0.33 +1983-10-11,19.75,19.87,19.13,19.37,63190400,0.30 +1983-10-10,20.13,20.13,18.37,19.75,129281600,0.31 +1983-10-07,22.25,23.75,20.13,20.38,61583200,0.32 +1983-10-06,22.50,22.87,21.75,22.25,58234400,0.35 +1983-10-05,22.87,23.25,22.13,22.50,47667200,0.35 +1983-10-04,23.13,23.63,22.75,22.87,42403200,0.36 +1983-10-03,23.13,23.50,22.63,23.13,38225600,0.36 +1983-09-30,22.75,23.63,22.50,23.13,29467200,0.36 +1983-09-29,22.87,23.75,22.63,22.75,70694400,0.35 +1983-09-28,23.50,23.50,22.13,22.87,93374400,0.36 +1983-09-27,24.88,25.00,23.00,23.50,104277600,0.37 +1983-09-26,25.87,25.87,24.38,24.88,192192000,0.39 +1983-09-22,31.50,32.63,31.12,32.50,36030400,0.51 +1983-09-21,32.12,32.63,31.38,31.50,26588800,0.49 +1983-09-20,32.00,33.50,32.00,32.12,56604800,0.50 +1983-09-19,29.37,32.25,29.25,32.00,50495200,0.50 +1983-09-16,30.13,30.13,29.13,29.37,56436800,0.46 +1983-09-15,31.62,31.75,29.75,30.13,39709600,0.47 +1983-09-14,32.00,32.75,31.00,31.62,45382400,0.49 +1983-09-13,30.63,32.50,30.37,32.00,51044000,0.50 +1983-09-12,30.63,32.50,30.25,30.63,66578400,0.48 +1983-09-09,31.75,31.88,30.50,30.63,53172000,0.48 +1983-09-08,34.62,35.00,31.25,31.75,76764800,0.49 +1983-09-07,39.25,39.25,33.87,34.62,96213600,0.54 +1983-09-06,38.75,39.75,38.75,39.37,45421600,0.61 +1983-09-02,36.37,38.00,36.25,38.00,32334400,0.59 +1983-09-01,37.25,38.50,35.50,36.37,54532800,0.57 +1983-08-31,33.13,37.25,33.13,37.25,50058400,0.58 +1983-08-30,31.25,33.50,31.25,32.87,58486400,0.51 +1983-08-29,30.88,31.62,30.00,31.25,34574400,0.49 +1983-08-26,30.50,31.00,30.25,30.88,23296000,0.48 +1983-08-25,30.25,30.75,30.00,30.50,47443200,0.48 +1983-08-24,31.75,31.75,30.13,30.25,28324800,0.47 +1983-08-23,33.63,33.63,31.62,31.88,23396800,0.50 +1983-08-22,33.75,34.13,33.25,33.63,21341600,0.52 +1983-08-19,33.50,34.00,33.25,33.75,14649600,0.53 +1983-08-18,33.13,33.87,33.00,33.50,20434400,0.52 +1983-08-17,33.87,34.25,32.75,33.13,23609600,0.52 +1983-08-16,34.38,34.75,33.50,33.87,22842400,0.53 +1983-08-15,33.50,34.38,33.37,34.38,38068800,0.54 +1983-08-12,33.75,34.50,33.13,33.50,18659200,0.52 +1983-08-11,34.25,34.75,33.25,33.75,22545600,0.53 +1983-08-10,34.38,34.62,33.50,34.25,40493600,0.53 +1983-08-09,34.00,34.88,33.75,34.38,37592800,0.54 +1983-08-08,33.87,34.75,33.13,34.00,19202400,0.53 +1983-08-05,33.25,34.50,33.00,33.87,32855200,0.53 +1983-08-04,34.88,35.25,31.75,33.25,73029600,0.52 +1983-08-03,34.38,35.62,33.87,34.88,30956800,0.54 +1983-08-02,34.50,35.00,34.25,34.38,25412800,0.54 +1983-08-01,34.88,36.37,34.25,34.50,58111200,0.54 +1983-07-29,34.00,35.25,33.87,34.88,55081600,0.54 +1983-07-28,36.25,36.75,34.00,34.00,67620000,0.53 +1983-07-27,39.12,40.37,35.75,36.25,75079200,0.56 +1983-07-26,43.13,43.37,37.50,39.12,67244800,0.61 +1983-07-25,43.75,43.75,42.50,43.13,19107200,0.67 +1983-07-22,43.37,43.87,43.25,43.75,29108800,0.68 +1983-07-21,41.25,44.37,41.00,43.37,79346400,0.68 +1983-07-20,43.75,44.13,40.75,41.25,76221600,0.64 +1983-07-19,44.25,46.37,43.37,43.75,42784000,0.68 +1983-07-18,44.37,44.50,43.25,44.25,20406400,0.69 +1983-07-15,46.00,46.00,44.13,44.37,16990400,0.69 +1983-07-14,46.12,46.87,45.75,46.00,18726400,0.72 +1983-07-13,46.37,46.50,45.38,46.12,32250400,0.72 +1983-07-12,47.50,48.00,46.12,46.37,18799200,0.72 +1983-07-11,46.25,48.25,46.25,47.50,28229600,0.74 +1983-07-08,46.75,46.75,46.00,46.25,17544800,0.72 +1983-07-07,47.37,47.50,46.50,46.75,22360800,0.73 +1983-07-06,47.25,47.50,46.37,47.37,23979200,0.74 +1983-07-05,49.25,49.38,47.13,47.25,20512800,0.74 +1983-07-01,48.88,49.75,48.62,49.25,43064000,0.77 +1983-06-30,49.12,50.00,48.62,48.88,27641600,0.76 +1983-06-29,46.87,49.62,45.75,49.12,73595200,0.77 +1983-06-28,50.37,50.63,46.50,46.87,87292800,0.73 +1983-06-27,53.25,53.25,50.37,50.37,30760800,0.78 +1983-06-24,53.63,54.37,53.12,53.25,11911200,0.83 +1983-06-23,55.13,55.13,53.50,53.63,33499200,0.84 +1983-06-22,53.87,55.62,53.87,55.38,35240800,0.86 +1983-06-21,53.37,54.00,52.38,53.75,31365600,0.84 +1983-06-20,56.12,56.50,52.88,53.37,34893600,0.83 +1983-06-17,57.25,57.50,56.12,56.12,14011200,0.87 +1983-06-16,54.63,57.25,54.63,57.25,30721600,0.89 +1983-06-15,55.88,55.88,53.25,54.37,48339200,0.85 +1983-06-14,57.25,57.75,55.75,56.00,42632800,0.87 +1983-06-13,59.25,59.38,55.00,57.25,44816800,0.89 +1983-06-10,59.50,59.88,59.12,59.25,9357600,0.92 +1983-06-09,59.88,60.50,58.37,59.50,13697600,0.93 +1983-06-08,60.63,60.87,59.38,59.88,21011200,0.93 +1983-06-07,62.75,63.25,60.63,60.63,24544800,0.94 +1983-06-06,61.37,62.75,61.37,62.75,26023200,0.98 +1983-06-03,58.50,61.63,58.50,61.37,16133600,0.96 +1983-06-02,58.13,58.50,57.75,58.50,19857600,0.91 +1983-06-01,57.75,58.25,57.25,58.13,24522400,0.91 +1983-05-31,59.25,59.25,56.62,57.75,11384800,0.90 +1983-05-27,59.38,60.00,59.12,59.38,14156800,0.93 +1983-05-26,60.00,60.37,58.88,59.38,26392800,0.93 +1983-05-25,60.50,61.00,59.12,60.00,38432800,0.93 +1983-05-24,57.50,60.50,57.50,60.50,26924800,0.94 +1983-05-23,56.87,57.50,55.75,57.50,30436000,0.90 +1983-05-20,54.13,57.00,53.37,56.87,36523200,0.89 +1983-05-19,52.50,54.25,52.50,54.13,17572800,0.84 +1983-05-18,51.88,53.00,51.88,52.50,39250400,0.82 +1983-05-17,51.75,52.00,51.13,51.88,38589600,0.81 +1983-05-16,53.12,53.12,51.50,51.75,17298400,0.81 +1983-05-13,52.88,53.63,52.88,53.12,12241600,0.83 +1983-05-12,53.37,53.37,52.38,52.88,24606400,0.82 +1983-05-11,54.75,55.00,53.00,53.37,13815200,0.83 +1983-05-10,54.37,55.38,54.13,54.75,12975200,0.85 +1983-05-09,55.13,55.25,53.87,54.37,17292800,0.85 +1983-05-06,54.87,55.75,53.75,55.13,25037600,0.86 +1983-05-05,51.50,55.00,51.50,54.87,35123200,0.85 +1983-05-04,48.50,51.50,48.50,51.50,32278400,0.80 +1983-05-03,49.00,49.12,47.63,48.50,26499200,0.76 +1983-05-02,50.50,50.75,48.38,49.00,24270400,0.76 +1983-04-29,50.00,50.75,49.38,50.50,77078400,0.79 +1983-04-28,49.50,50.25,48.88,50.00,19852000,0.78 +1983-04-27,50.00,51.13,49.00,49.50,21509600,0.77 +1983-04-26,48.62,50.63,48.50,50.00,24858400,0.78 +1983-04-25,51.00,51.37,48.38,48.62,31427200,0.76 +1983-04-22,52.00,52.50,50.75,51.00,31796800,0.79 +1983-04-21,51.25,52.75,51.25,52.00,57512000,0.81 +1983-04-20,46.50,51.00,46.50,50.63,72083200,0.79 +1983-04-19,47.00,47.37,46.25,46.50,58469600,0.72 +1983-04-18,46.00,47.87,46.00,47.00,38892000,0.73 +1983-04-15,45.00,46.12,45.00,45.75,28750400,0.71 +1983-04-14,44.00,45.12,43.63,45.00,34092800,0.70 +1983-04-13,42.50,44.13,42.50,44.00,47443200,0.69 +1983-04-12,41.62,42.62,41.62,42.50,43512000,0.66 +1983-04-11,39.37,41.88,38.75,41.62,57618400,0.65 +1983-04-08,39.63,39.87,38.62,39.37,37564800,0.61 +1983-04-07,40.00,40.25,39.37,39.63,36377600,0.62 +1983-04-06,40.37,40.50,39.50,40.00,53496800,0.62 +1983-04-05,41.13,42.00,40.37,40.37,30525600,0.63 +1983-04-04,42.25,42.25,40.13,41.13,31847200,0.64 +1983-03-31,44.25,44.50,42.25,42.25,21285600,0.66 +1983-03-30,43.75,44.37,43.75,44.25,21952000,0.69 +1983-03-29,42.62,44.13,42.62,43.75,25933600,0.68 +1983-03-28,43.00,43.00,41.75,42.50,18642400,0.66 +1983-03-25,43.13,43.87,43.00,43.13,14515200,0.67 +1983-03-24,42.38,43.63,42.25,43.13,25614400,0.67 +1983-03-23,44.50,44.63,42.25,42.38,35190400,0.66 +1983-03-22,44.00,45.12,44.00,44.50,25250400,0.69 +1983-03-21,43.00,44.13,42.75,44.00,26006400,0.69 +1983-03-18,42.38,43.50,42.25,43.00,21532000,0.67 +1983-03-17,42.00,42.38,41.88,42.38,11037600,0.66 +1983-03-16,42.00,43.50,41.75,42.00,27742400,0.65 +1983-03-15,41.38,42.00,40.13,42.00,18765600,0.65 +1983-03-14,42.25,42.25,40.37,41.38,42968800,0.64 +1983-03-11,43.00,43.75,41.38,42.38,21940800,0.66 +1983-03-10,43.63,44.13,42.62,43.00,28151200,0.67 +1983-03-09,42.38,43.63,41.62,43.63,49834400,0.68 +1983-03-08,43.50,43.50,41.75,42.38,55160000,0.66 +1983-03-07,44.63,44.75,42.50,43.75,38169600,0.68 +1983-03-04,45.25,45.38,43.25,44.63,37951200,0.70 +1983-03-03,46.75,47.25,45.12,45.25,32883200,0.70 +1983-03-02,46.37,47.00,46.25,46.75,26488000,0.73 +1983-03-01,45.62,46.63,45.50,46.37,35067200,0.72 +1983-02-28,46.75,46.87,45.50,45.62,33073600,0.71 +1983-02-25,48.13,48.62,46.50,46.75,28672000,0.73 +1983-02-24,47.25,48.38,47.25,48.13,28873600,0.75 +1983-02-23,46.50,47.13,46.12,46.87,27008800,0.73 +1983-02-22,45.62,47.75,45.62,46.50,49196000,0.72 +1983-02-18,44.00,45.88,43.50,45.38,28722400,0.71 +1983-02-17,44.50,44.50,42.62,44.00,34042400,0.69 +1983-02-16,45.38,45.38,44.25,44.50,29142400,0.69 +1983-02-15,46.25,46.63,44.88,45.38,28795200,0.71 +1983-02-14,46.50,46.50,45.12,46.25,31544800,0.72 +1983-02-11,45.38,47.25,45.38,46.50,50887200,0.72 +1983-02-10,42.25,45.25,42.25,45.00,59180800,0.70 +1983-02-09,41.88,42.50,40.75,42.25,45203200,0.66 +1983-02-08,42.25,42.87,41.38,41.88,42028000,0.65 +1983-02-07,44.00,44.63,41.50,42.25,35728000,0.66 +1983-02-04,44.63,45.38,43.87,44.00,53586400,0.69 +1983-02-03,42.87,44.75,42.50,44.63,63134400,0.70 +1983-02-02,41.75,43.75,41.13,42.87,66763200,0.67 +1983-02-01,40.87,41.75,40.25,41.75,52740800,0.65 +1983-01-31,41.00,41.62,40.13,40.87,47000800,0.64 +1983-01-28,40.75,42.00,40.50,41.00,99433600,0.64 +1983-01-27,38.12,41.00,38.00,40.75,26079200,0.63 +1983-01-26,37.00,38.50,37.00,38.12,50803200,0.59 +1983-01-25,35.25,37.50,35.00,36.63,41759200,0.57 +1983-01-24,37.37,37.37,34.62,35.25,78853600,0.55 +1983-01-21,37.37,39.00,37.00,37.37,100648800,0.58 +1983-01-20,33.63,37.37,33.63,37.37,176960000,0.58 +1983-01-19,33.37,34.00,33.25,33.63,42414400,0.52 +1983-01-18,34.13,34.88,32.50,33.37,54947200,0.52 +1983-01-17,33.00,34.62,32.75,34.13,58716000,0.53 +1983-01-14,30.88,33.00,30.88,33.00,46160800,0.51 +1983-01-13,30.75,31.00,30.25,30.75,20568800,0.48 +1983-01-12,29.50,31.50,29.50,30.75,44245600,0.48 +1983-01-11,28.75,29.50,28.75,29.13,347200,0.45 +1983-01-10,27.50,29.00,27.25,28.75,68835200,0.45 +1983-01-07,29.13,29.50,27.50,27.50,43013600,0.43 +1983-01-06,30.25,30.37,29.00,29.13,24449600,0.45 +1983-01-05,30.13,30.50,29.63,30.25,35386400,0.47 +1983-01-04,28.50,30.25,28.00,30.13,55927200,0.47 +1983-01-03,29.87,30.25,28.25,28.50,28207200,0.44 +1982-12-31,30.00,30.37,29.87,29.87,12415200,0.47 +1982-12-30,31.38,31.75,29.63,30.00,39216800,0.47 +1982-12-29,32.50,32.63,31.00,31.38,20176800,0.49 +1982-12-28,32.75,33.75,32.12,32.50,28341600,0.51 +1982-12-27,32.00,32.87,31.75,32.75,15467200,0.51 +1982-12-23,31.12,32.00,30.88,32.00,21744800,0.50 +1982-12-22,30.37,31.12,30.37,31.12,25306400,0.48 +1982-12-21,30.00,30.25,29.50,30.25,19986400,0.47 +1982-12-20,30.13,30.25,29.75,30.00,17444000,0.47 +1982-12-17,28.75,30.37,28.62,30.13,20182400,0.47 +1982-12-16,28.25,29.25,28.00,28.75,35291200,0.45 +1982-12-15,28.38,28.50,27.62,28.25,32698400,0.44 +1982-12-14,28.62,30.37,28.00,28.38,67513600,0.44 +1982-12-13,29.00,29.00,28.62,28.62,23844800,0.45 +1982-12-10,31.00,31.00,28.87,29.25,41871200,0.46 +1982-12-09,32.63,32.63,31.00,31.50,48664000,0.49 +1982-12-08,33.87,34.88,33.00,33.13,28078400,0.52 +1982-12-07,33.50,34.62,32.75,33.87,41820800,0.53 +1982-12-06,31.75,33.75,31.50,33.50,36646400,0.52 +1982-12-03,32.12,32.12,31.38,31.75,11894400,0.49 +1982-12-02,32.50,33.00,32.00,32.50,41182400,0.51 +1982-12-01,31.88,33.75,31.88,32.50,51710400,0.51 +1982-11-30,28.87,32.00,28.75,31.88,39799200,0.50 +1982-11-29,29.00,29.37,28.00,28.87,12488000,0.45 +1982-11-26,29.50,29.87,28.38,29.00,25496800,0.45 +1982-11-24,28.87,30.50,28.75,29.50,18435200,0.46 +1982-11-23,28.50,29.75,28.50,28.87,22125600,0.45 +1982-11-22,30.88,30.88,28.12,28.12,25312000,0.44 +1982-11-19,31.38,31.62,30.75,30.88,24326400,0.48 +1982-11-18,31.38,31.88,31.25,31.38,38169600,0.49 +1982-11-17,30.00,31.50,30.00,31.38,36036000,0.49 +1982-11-16,31.62,31.75,29.87,30.00,45505600,0.47 +1982-11-15,32.37,32.75,31.25,31.62,31147200,0.49 +1982-11-12,33.00,34.00,32.37,32.37,32776800,0.50 +1982-11-11,31.00,33.00,30.50,33.00,30788800,0.51 +1982-11-10,30.00,31.50,30.00,31.00,50696800,0.48 +1982-11-09,28.87,30.13,28.75,29.87,44945600,0.47 +1982-11-08,30.13,30.37,28.75,28.87,29797600,0.45 +1982-11-05,30.75,30.75,29.63,30.13,35375200,0.47 +1982-11-04,30.75,31.88,30.50,31.00,82269600,0.48 +1982-11-03,28.62,30.75,28.62,30.75,58783200,0.48 +1982-11-02,27.00,29.50,27.00,28.62,77711200,0.45 +1982-11-01,25.37,27.00,25.12,26.75,26090400,0.42 +1982-10-29,25.12,25.37,24.75,25.37,29528800,0.40 +1982-10-28,25.12,25.37,24.75,25.12,54420800,0.39 +1982-10-27,24.50,25.25,24.50,25.12,47790400,0.39 +1982-10-26,24.38,24.62,23.25,24.50,41938400,0.38 +1982-10-25,25.87,26.00,24.25,24.38,46233600,0.38 +1982-10-22,26.00,26.75,25.87,25.87,40420800,0.40 +1982-10-21,25.37,26.75,25.00,26.00,56879200,0.41 +1982-10-20,24.00,25.63,23.88,25.37,60524800,0.40 +1982-10-19,23.50,24.25,23.50,24.00,30710400,0.37 +1982-10-18,23.00,23.63,23.00,23.50,23587200,0.37 +1982-10-15,23.50,23.50,22.63,23.00,36153600,0.36 +1982-10-14,23.50,23.88,23.13,23.63,44665600,0.37 +1982-10-13,23.25,24.25,23.00,23.50,49711200,0.37 +1982-10-12,24.00,24.38,23.00,23.25,64736000,0.36 +1982-10-11,23.50,24.75,23.50,24.00,78433600,0.37 +1982-10-08,21.87,23.63,21.75,23.50,68885600,0.37 +1982-10-07,20.38,22.00,20.38,21.87,77918400,0.34 +1982-10-06,18.87,20.25,18.87,20.25,43383200,0.32 +1982-10-05,18.75,19.25,18.75,18.87,20059200,0.29 +1982-10-04,18.50,18.87,18.00,18.75,17332000,0.29 +1982-10-01,18.50,18.75,18.50,18.50,11564000,0.29 +1982-09-30,18.37,18.37,18.25,18.25,18670400,0.28 +1982-09-29,18.37,18.50,18.37,18.37,16391200,0.29 +1982-09-28,18.37,18.63,18.37,18.37,21380800,0.29 +1982-09-27,18.12,18.37,18.12,18.12,9536800,0.28 +1982-09-24,18.25,18.25,18.12,18.12,44548000,0.28 +1982-09-23,18.75,18.87,18.75,18.75,34955200,0.29 +1982-09-22,18.75,18.87,18.75,18.75,25844000,0.29 +1982-09-21,18.25,18.37,18.25,18.25,9167200,0.28 +1982-09-20,17.88,18.00,17.88,17.88,9783200,0.28 +1982-09-17,17.88,17.88,17.75,17.75,13512800,0.28 +1982-09-16,18.37,18.37,18.12,18.12,20092800,0.28 +1982-09-15,18.87,18.87,18.75,18.75,17936800,0.29 +1982-09-14,18.87,19.00,18.87,18.87,25373600,0.29 +1982-09-13,18.25,18.37,18.25,18.25,14722400,0.28 +1982-09-10,18.12,18.25,18.12,18.12,14016800,0.28 +1982-09-09,17.75,17.75,17.62,17.62,15898400,0.27 +1982-09-08,18.00,18.12,18.00,18.00,18082400,0.28 +1982-09-07,17.50,17.50,17.38,17.38,20344800,0.27 +1982-09-03,18.37,18.50,18.37,18.37,26135200,0.29 +1982-09-02,18.25,18.37,18.25,18.25,18855200,0.28 +1982-09-01,17.62,17.62,17.50,17.50,20641600,0.27 +1982-08-31,18.00,18.12,18.00,18.00,35140000,0.28 +1982-08-30,17.12,17.25,17.12,17.12,20109600,0.27 +1982-08-27,17.00,17.00,16.88,16.88,24662400,0.26 +1982-08-26,17.75,17.88,17.75,17.75,52645600,0.28 +1982-08-25,17.25,17.38,17.25,17.25,89269600,0.27 +1982-08-24,16.13,16.25,16.13,16.13,38942400,0.25 +1982-08-23,15.37,15.50,15.37,15.37,17421600,0.24 +1982-08-20,14.75,14.87,14.75,14.75,13714400,0.23 +1982-08-19,14.38,14.50,14.38,14.38,11905600,0.22 +1982-08-18,14.25,14.38,14.25,14.25,31264800,0.22 +1982-08-17,14.25,14.50,14.25,14.25,11933600,0.22 +1982-08-16,13.38,13.50,13.38,13.38,9604000,0.21 +1982-08-13,13.13,13.25,13.13,13.13,6490400,0.20 +1982-08-12,13.25,13.25,13.13,13.13,7655200,0.20 +1982-08-11,13.25,13.38,13.25,13.25,17472000,0.21 +1982-08-10,13.13,13.25,13.13,13.13,28061600,0.20 +1982-08-09,12.37,12.50,12.37,12.37,14028000,0.19 +1982-08-06,12.37,12.37,12.25,12.25,24208800,0.19 +1982-08-05,12.50,12.50,12.37,12.37,17438400,0.19 +1982-08-04,13.00,13.00,12.87,12.87,20966400,0.20 +1982-08-03,13.13,13.13,13.00,13.00,22467200,0.20 +1982-08-02,13.88,14.00,13.88,13.88,23598400,0.22 +1982-07-30,13.50,13.62,13.50,13.50,9654400,0.21 +1982-07-29,13.38,13.50,13.38,13.38,15467200,0.21 +1982-07-28,13.00,13.00,12.87,12.87,13378400,0.20 +1982-07-27,13.50,13.62,13.50,13.50,8080800,0.21 +1982-07-26,13.62,13.62,13.50,13.50,14212800,0.21 +1982-07-23,14.25,14.25,14.12,14.12,4575200,0.22 +1982-07-22,14.38,14.50,14.38,14.38,8803200,0.22 +1982-07-21,14.25,14.38,14.25,14.25,17925600,0.22 +1982-07-20,14.25,14.38,14.25,14.25,12426400,0.22 +1982-07-19,13.38,13.50,13.38,13.38,20944000,0.21 +1982-07-16,13.25,13.38,13.25,13.25,19252800,0.21 +1982-07-15,12.75,12.87,12.75,12.75,16447200,0.20 +1982-07-14,12.50,12.75,12.50,12.50,17780000,0.19 +1982-07-13,12.37,12.50,12.37,12.37,28593600,0.19 +1982-07-12,11.63,11.75,11.63,11.63,15848000,0.18 +1982-07-09,11.37,11.50,11.37,11.37,32104800,0.18 +1982-07-08,11.12,11.12,11.00,11.00,41081600,0.17 +1982-07-07,11.50,11.63,11.50,11.50,7593600,0.18 +1982-07-06,11.63,11.63,11.50,11.50,21924000,0.18 +1982-07-02,12.13,12.13,12.00,12.00,14526400,0.19 +1982-07-01,12.75,12.75,12.63,12.63,13932800,0.20 +1982-06-30,12.75,12.87,12.75,12.75,16906400,0.20 +1982-06-29,12.87,12.87,12.75,12.75,8954400,0.20 +1982-06-28,13.25,13.25,13.13,13.13,6288800,0.20 +1982-06-25,13.38,13.38,13.25,13.25,6669600,0.21 +1982-06-24,13.75,13.88,13.75,13.75,11037600,0.21 +1982-06-23,13.75,14.00,13.75,13.75,13188000,0.21 +1982-06-22,13.38,13.62,13.38,13.38,4390400,0.21 +1982-06-21,12.87,13.00,12.87,12.87,7134400,0.20 +1982-06-18,13.13,13.13,12.87,12.87,4967200,0.20 +1982-06-17,13.25,13.25,13.13,13.13,7291200,0.20 +1982-06-16,13.38,13.50,13.38,13.38,10432800,0.21 +1982-06-15,13.38,13.50,13.38,13.38,8803200,0.21 +1982-06-14,13.38,13.50,13.38,13.38,7498400,0.21 +1982-06-11,13.38,13.50,13.38,13.38,13658400,0.21 +1982-06-10,12.87,13.00,12.87,12.87,8601600,0.20 +1982-06-09,12.87,12.87,12.75,12.75,8461600,0.20 +1982-06-08,13.13,13.13,13.00,13.00,7851200,0.20 +1982-06-07,13.13,13.25,13.13,13.13,9290400,0.20 +1982-06-04,13.25,13.25,13.13,13.13,9419200,0.20 +1982-06-03,13.75,13.75,13.50,13.50,9940000,0.21 +1982-06-02,14.00,14.12,14.00,14.00,8226400,0.22 +1982-06-01,13.88,13.88,13.75,13.75,11900000,0.21 +1982-05-28,14.00,14.12,14.00,14.00,4799200,0.22 +1982-05-27,14.12,14.12,14.00,14.00,7812000,0.22 +1982-05-26,14.38,14.38,14.25,14.25,10819200,0.22 +1982-05-25,14.38,14.50,14.38,14.38,12891200,0.22 +1982-05-24,14.38,14.50,14.38,14.38,7996800,0.22 +1982-05-21,14.25,14.38,14.25,14.25,9710400,0.22 +1982-05-20,14.12,14.25,14.12,14.12,6904800,0.22 +1982-05-19,14.12,14.12,14.00,14.00,18821600,0.22 +1982-05-18,14.25,14.25,14.12,14.12,30508800,0.22 +1982-05-17,14.50,14.50,14.38,14.38,19051200,0.22 +1982-05-14,14.87,14.87,14.62,14.62,23934400,0.23 +1982-05-13,15.25,15.37,15.25,15.25,13613600,0.24 +1982-05-12,15.25,15.25,15.13,15.13,17752000,0.24 +1982-05-11,15.63,15.63,15.50,15.50,25754400,0.24 +1982-05-10,16.13,16.13,16.00,16.00,7901600,0.25 +1982-05-07,16.25,16.37,16.25,16.25,21179200,0.25 +1982-05-06,16.00,16.13,16.00,16.00,18866400,0.25 +1982-05-05,15.75,15.75,15.50,15.50,13484800,0.24 +1982-05-04,15.75,15.87,15.75,15.75,18496800,0.25 +1982-05-03,15.25,15.37,15.25,15.25,20675200,0.24 +1982-04-30,14.75,14.87,14.75,14.75,69350400,0.23 +1982-04-29,14.62,14.75,14.62,14.62,20557600,0.23 +1982-04-28,14.75,14.75,14.62,14.62,24808000,0.23 +1982-04-27,15.37,15.37,15.25,15.25,17567200,0.24 +1982-04-26,15.75,15.87,15.75,15.75,14481600,0.25 +1982-04-23,15.37,15.50,15.37,15.37,12073600,0.24 +1982-04-22,15.50,15.50,15.37,15.37,13148800,0.24 +1982-04-21,15.75,15.75,15.63,15.63,18256000,0.24 +1982-04-20,15.87,15.87,15.75,15.75,20137600,0.25 +1982-04-19,16.75,16.75,16.50,16.50,10320800,0.26 +1982-04-16,16.88,17.00,16.88,16.88,26012000,0.26 +1982-04-15,16.37,16.50,16.37,16.37,41070400,0.26 +1982-04-14,16.13,16.25,16.13,16.13,28397600,0.25 +1982-04-13,16.13,16.13,16.00,16.00,21324800,0.25 +1982-04-12,17.50,17.62,17.38,17.38,11076800,0.27 +1982-04-08,17.50,17.62,17.50,17.50,5997600,0.27 +1982-04-07,17.50,17.50,17.38,17.38,7274400,0.27 +1982-04-06,17.75,17.75,17.62,17.62,17897600,0.27 +1982-04-05,17.75,17.88,17.75,17.75,21660800,0.28 +1982-04-02,17.75,17.88,17.75,17.75,21201600,0.28 +1982-04-01,17.75,17.88,17.75,17.75,14784000,0.28 +1982-03-31,16.88,17.00,16.88,16.88,12538400,0.26 +1982-03-30,16.88,17.00,16.88,16.88,19488000,0.26 +1982-03-29,16.63,16.75,16.63,16.63,16900800,0.26 +1982-03-26,16.37,16.37,16.25,16.25,12695200,0.25 +1982-03-25,16.63,16.63,16.50,16.50,21028000,0.26 +1982-03-24,16.75,16.75,16.63,16.63,12902400,0.26 +1982-03-23,17.75,17.75,17.62,17.62,13988800,0.27 +1982-03-22,17.88,18.00,17.88,17.88,17298400,0.28 +1982-03-19,16.63,16.75,16.63,16.63,16452800,0.26 +1982-03-18,15.25,15.37,15.25,15.25,14084000,0.24 +1982-03-17,14.25,14.25,14.12,14.12,12622400,0.22 +1982-03-16,15.00,15.00,14.87,14.87,11788000,0.23 +1982-03-15,15.25,15.25,15.13,15.13,12840800,0.24 +1982-03-12,15.37,15.37,15.25,15.25,11636800,0.24 +1982-03-11,16.25,16.50,16.25,16.25,5644800,0.25 +1982-03-10,16.37,16.37,16.25,16.25,21733600,0.25 +1982-03-09,16.50,16.63,16.50,16.50,13126400,0.26 +1982-03-08,16.50,16.50,16.37,16.37,8786400,0.26 +1982-03-05,16.75,16.75,16.63,16.63,11328800,0.26 +1982-03-04,18.12,18.12,18.00,18.00,9592800,0.28 +1982-03-03,18.37,18.50,18.37,18.37,5913600,0.29 +1982-03-02,18.37,18.50,18.37,18.37,8702400,0.29 +1982-03-01,18.37,18.50,18.37,18.37,8825600,0.29 +1982-02-26,18.25,18.37,18.25,18.25,4356800,0.28 +1982-02-25,18.37,18.37,18.25,18.25,7700000,0.28 +1982-02-24,18.37,18.50,18.37,18.37,9486400,0.29 +1982-02-23,18.37,18.37,18.25,18.25,8635200,0.28 +1982-02-22,18.63,18.63,18.50,18.50,6658400,0.29 +1982-02-19,18.87,18.87,18.75,18.75,3399200,0.29 +1982-02-18,18.87,19.00,18.87,18.87,7095200,0.29 +1982-02-17,18.63,18.75,18.63,18.63,6395200,0.29 +1982-02-16,18.50,18.50,18.37,18.37,8579200,0.29 +1982-02-12,18.75,18.87,18.75,18.75,4911200,0.29 +1982-02-11,18.63,18.63,18.50,18.50,6132000,0.29 +1982-02-10,18.75,18.87,18.75,18.75,9699200,0.29 +1982-02-09,18.50,18.63,18.50,18.50,14476000,0.29 +1982-02-08,18.63,18.63,18.50,18.50,7924000,0.29 +1982-02-05,19.75,19.87,19.75,19.75,10074400,0.31 +1982-02-04,19.87,19.87,19.75,19.75,5510400,0.31 +1982-02-03,20.25,20.38,20.25,20.25,7868000,0.32 +1982-02-02,20.25,20.50,20.25,20.25,13568800,0.32 +1982-02-01,20.38,20.38,20.13,20.13,9632000,0.31 +1982-01-29,20.38,20.50,20.38,20.38,13288800,0.32 +1982-01-28,20.13,20.25,20.13,20.13,9900800,0.31 +1982-01-27,19.50,19.75,19.50,19.50,7840000,0.30 +1982-01-26,19.63,19.63,19.37,19.37,5303200,0.30 +1982-01-25,20.25,20.25,20.13,20.13,11177600,0.31 +1982-01-22,20.75,20.88,20.75,20.75,6064800,0.32 +1982-01-21,20.62,20.75,20.62,20.62,8332800,0.32 +1982-01-20,20.25,20.38,20.25,20.25,6456800,0.32 +1982-01-19,20.13,20.13,19.87,19.87,13876800,0.31 +1982-01-18,20.38,20.62,20.38,20.38,7000000,0.32 +1982-01-15,20.00,20.25,20.00,20.00,11676000,0.31 +1982-01-14,18.75,18.87,18.75,18.75,6428800,0.29 +1982-01-13,18.00,18.00,17.88,17.88,10438400,0.28 +1982-01-12,18.12,18.12,18.00,18.00,14980000,0.28 +1982-01-11,18.75,18.75,18.63,18.63,8332800,0.29 +1982-01-08,19.87,20.00,19.87,19.87,14151200,0.31 +1982-01-07,19.25,19.25,19.00,19.00,17511200,0.30 +1982-01-06,20.75,20.75,20.62,20.62,16520000,0.32 +1982-01-05,21.12,21.12,20.88,20.88,8960000,0.33 +1982-01-04,22.13,22.13,22.00,22.00,17813600,0.34 +1981-12-31,22.13,22.25,22.13,22.13,13664000,0.34 +1981-12-30,22.13,22.25,22.13,22.13,8047200,0.34 +1981-12-29,21.25,21.50,21.25,21.25,6059200,0.33 +1981-12-28,21.12,21.12,20.88,20.88,9144800,0.33 +1981-12-24,21.87,22.00,21.87,21.87,7229600,0.34 +1981-12-23,21.87,21.87,21.75,21.75,7224000,0.34 +1981-12-22,22.25,22.37,22.25,22.25,13456800,0.35 +1981-12-21,22.00,22.00,21.87,21.87,14100800,0.34 +1981-12-18,22.87,23.00,22.87,22.87,17931200,0.36 +1981-12-17,21.12,21.25,21.12,21.12,12863200,0.33 +1981-12-16,19.50,19.63,19.50,19.50,16363200,0.30 +1981-12-15,18.63,18.75,18.63,18.63,7828800,0.29 +1981-12-14,18.37,18.37,18.12,18.12,6311200,0.28 +1981-12-11,18.87,19.00,18.75,18.75,19023200,0.29 +1981-12-10,18.87,19.00,18.87,18.87,9352000,0.29 +1981-12-09,18.87,19.00,18.87,18.87,8568000,0.29 +1981-12-08,19.00,19.00,18.75,18.75,12656000,0.29 +1981-12-07,19.13,19.25,19.13,19.13,14823200,0.30 +1981-12-04,19.00,19.13,19.00,19.00,34288800,0.30 +1981-12-03,18.63,18.63,18.50,18.50,5107200,0.29 +1981-12-02,18.75,18.87,18.75,18.75,9391200,0.29 +1981-12-01,18.63,18.75,18.63,18.63,5846400,0.29 +1981-11-30,18.75,18.75,18.63,18.63,5992000,0.29 +1981-11-27,18.87,19.00,18.87,18.87,9312800,0.29 +1981-11-25,18.37,18.50,18.37,18.37,13137600,0.29 +1981-11-24,18.12,18.12,18.00,18.00,5538400,0.28 +1981-11-23,18.37,18.37,18.12,18.12,5740000,0.28 +1981-11-20,19.00,19.13,19.00,19.00,9525600,0.30 +1981-11-19,18.87,19.00,18.87,18.87,10001600,0.29 +1981-11-18,18.87,19.00,18.87,18.87,7285600,0.29 +1981-11-17,18.25,18.37,18.25,18.25,8853600,0.28 +1981-11-16,18.00,18.00,17.88,17.88,5639200,0.28 +1981-11-13,18.25,18.25,18.12,18.12,5252800,0.28 +1981-11-12,19.50,19.63,19.50,19.50,9979200,0.30 +1981-11-11,18.87,19.00,18.87,18.87,6860000,0.29 +1981-11-10,18.37,18.50,18.37,18.37,4188800,0.29 +1981-11-09,18.25,18.37,18.25,18.25,5096000,0.28 +1981-11-06,18.00,18.12,18.00,18.00,6148800,0.28 +1981-11-05,18.00,18.00,17.88,17.88,5840800,0.28 +1981-11-04,19.37,19.37,19.25,19.25,5952800,0.30 +1981-11-03,19.87,19.87,19.75,19.75,7095200,0.31 +1981-11-02,20.00,20.13,20.00,20.00,9228800,0.31 +1981-10-30,20.00,20.13,20.00,20.00,13182400,0.31 +1981-10-29,19.87,19.87,19.75,19.75,7621600,0.31 +1981-10-28,20.00,20.13,20.00,20.00,11043200,0.31 +1981-10-27,19.37,19.63,19.37,19.37,21397600,0.30 +1981-10-26,19.00,19.13,19.00,19.00,6820800,0.30 +1981-10-23,19.13,19.13,19.00,19.00,6977600,0.30 +1981-10-22,19.63,19.63,19.50,19.50,8069600,0.30 +1981-10-21,19.63,19.75,19.63,19.63,19224800,0.31 +1981-10-20,19.63,19.75,19.63,19.63,8932000,0.31 +1981-10-19,18.63,18.75,18.63,18.63,5146400,0.29 +1981-10-16,18.37,18.37,18.25,18.25,9116800,0.28 +1981-10-15,18.50,18.63,18.50,18.50,7358400,0.29 +1981-10-14,18.25,18.25,18.12,18.12,7744800,0.28 +1981-10-13,19.25,19.50,19.25,19.25,11048800,0.30 +1981-10-12,19.25,19.37,19.25,19.25,6837600,0.30 +1981-10-09,18.63,18.87,18.63,18.63,13630400,0.29 +1981-10-08,18.50,18.63,18.50,18.50,7772800,0.29 +1981-10-07,17.88,18.12,17.88,17.88,9710400,0.28 +1981-10-06,17.00,17.00,16.88,16.88,7089600,0.26 +1981-10-05,17.00,17.25,17.00,17.00,10774400,0.26 +1981-10-02,16.50,16.63,16.50,16.50,11261600,0.26 +1981-10-01,15.25,15.37,15.25,15.25,15282400,0.24 +1981-09-30,15.25,15.37,15.25,15.25,12499200,0.24 +1981-09-29,15.13,15.25,15.13,15.13,23671200,0.24 +1981-09-28,14.38,14.50,14.38,14.38,22932000,0.22 +1981-09-25,14.50,14.50,14.25,14.25,8652000,0.22 +1981-09-24,16.50,16.50,16.37,16.37,4575200,0.26 +1981-09-23,16.75,16.75,16.50,16.50,7050400,0.26 +1981-09-22,17.00,17.00,16.88,16.88,11855200,0.26 +1981-09-21,17.88,18.00,17.88,17.88,12258400,0.28 +1981-09-18,17.75,17.88,17.75,17.75,6580000,0.28 +1981-09-17,17.75,17.75,17.62,17.62,4844000,0.27 +1981-09-16,18.25,18.25,18.12,18.12,4838400,0.28 +1981-09-15,18.63,18.63,18.50,18.50,4877600,0.29 +1981-09-14,19.13,19.13,19.00,19.00,6921600,0.30 +1981-09-11,19.75,19.75,19.63,19.63,4384800,0.31 +1981-09-10,19.87,20.00,19.87,19.87,8702400,0.31 +1981-09-09,19.75,19.87,19.75,19.75,7632800,0.31 +1981-09-08,19.87,19.87,19.75,19.75,6361600,0.31 +1981-09-04,20.50,20.50,20.38,20.38,3813600,0.32 +1981-09-03,20.88,20.88,20.62,20.62,9368800,0.32 +1981-09-02,21.75,21.87,21.75,21.75,4844000,0.34 +1981-09-01,21.38,21.50,21.38,21.38,9256800,0.33 +1981-08-31,20.13,20.25,20.13,20.13,10236800,0.31 +1981-08-28,20.13,20.25,20.13,20.13,9508800,0.31 +1981-08-27,19.13,19.25,19.13,19.13,6479200,0.30 +1981-08-26,19.13,19.13,19.00,19.00,8400000,0.30 +1981-08-25,19.37,19.50,19.37,19.37,10175200,0.30 +1981-08-24,19.00,19.00,18.87,18.87,5768000,0.29 +1981-08-21,20.38,20.38,20.13,20.13,10477600,0.31 +1981-08-20,21.62,21.75,21.62,21.62,4278400,0.34 +1981-08-19,21.62,21.62,21.38,21.38,5168800,0.33 +1981-08-18,21.87,21.87,21.62,21.62,4250400,0.34 +1981-08-17,22.37,22.37,22.13,22.13,4726400,0.34 +1981-08-14,23.13,23.13,22.87,22.87,6048000,0.36 +1981-08-13,23.37,23.37,23.25,23.25,6871200,0.36 +1981-08-12,24.12,24.12,24.00,24.00,6568800,0.37 +1981-08-11,24.75,24.75,24.50,24.50,17864000,0.38 +1981-08-07,25.25,25.37,25.25,25.25,2301600,0.39 +1981-08-06,25.37,25.37,25.25,25.25,2632000,0.39 +1981-08-05,25.87,26.00,25.87,25.87,4373600,0.40 +1981-08-04,25.12,25.25,25.12,25.12,7918400,0.39 +1981-08-03,25.00,25.00,24.75,24.75,3108000,0.39 +1981-07-31,25.00,25.12,25.00,25.00,2738400,0.39 +1981-07-30,24.62,24.88,24.62,24.62,2475200,0.38 +1981-07-29,23.88,23.88,23.75,23.75,3875200,0.37 +1981-07-28,24.25,24.25,24.12,24.12,5712000,0.38 +1981-07-27,25.00,25.12,25.00,25.00,4334400,0.39 +1981-07-24,24.00,24.12,24.00,24.00,7212800,0.37 +1981-07-23,23.25,23.37,23.25,23.25,8612800,0.36 +1981-07-22,22.87,22.87,22.63,22.63,5667200,0.35 +1981-07-21,24.12,24.12,24.00,24.00,7985600,0.37 +1981-07-20,24.25,24.25,24.12,24.12,5913600,0.38 +1981-07-17,25.87,26.00,25.87,25.87,4956000,0.40 +1981-07-16,25.00,25.25,25.00,25.00,3808000,0.39 +1981-07-15,24.38,24.50,24.38,24.38,2738400,0.38 +1981-07-14,23.75,24.00,23.75,23.75,4944800,0.37 +1981-07-13,22.75,22.87,22.75,22.75,11435200,0.35 +1981-07-10,22.37,22.37,22.25,22.25,13792800,0.35 +1981-07-09,24.25,24.25,24.12,24.12,8220800,0.38 +1981-07-08,26.13,26.25,26.13,26.13,4155200,0.41 +1981-07-07,25.12,25.37,25.12,25.12,3959200,0.39 +1981-07-06,25.12,25.12,24.88,24.88,4132800,0.39 +1981-07-02,25.75,25.87,25.75,25.75,7571200,0.40 +1981-07-01,25.87,25.87,25.75,25.75,42616000,0.40 +1981-06-30,26.13,26.13,26.00,26.00,8976800,0.41 +1981-06-29,28.38,28.38,28.12,28.12,2648800,0.44 +1981-06-26,29.37,29.37,29.13,29.13,5947200,0.45 +1981-06-25,29.50,29.63,29.50,29.50,6064800,0.46 +1981-06-24,29.13,29.13,28.87,28.87,5756800,0.45 +1981-06-23,29.63,29.87,29.63,29.63,3757600,0.46 +1981-06-22,29.25,29.25,29.13,29.13,2710400,0.45 +1981-06-19,30.37,30.37,30.25,30.25,6876800,0.47 +1981-06-18,31.25,31.38,31.12,31.12,5762400,0.48 +1981-06-17,31.38,31.38,31.25,31.25,6893600,0.49 +1981-06-16,31.88,31.88,31.75,31.75,9312800,0.49 +1981-06-15,32.50,32.50,32.37,32.37,35940800,0.50 +1981-06-12,32.63,32.63,32.50,32.50,6451200,0.51 +1981-06-11,32.87,33.00,32.87,32.87,9744000,0.51 +1981-06-10,31.50,31.88,31.50,31.50,6305600,0.49 +1981-06-09,31.12,31.25,31.12,31.12,29898400,0.48 +1981-06-08,30.63,30.63,30.50,30.50,23374400,0.48 +1981-06-05,31.75,31.75,31.62,31.62,14420000,0.49 +1981-06-04,32.12,32.25,32.12,32.12,14016800,0.50 +1981-06-03,31.50,31.75,31.50,31.50,9861600,0.49 +1981-06-02,31.62,31.62,31.50,31.50,10108000,0.49 +1981-06-01,33.13,33.25,33.13,33.13,12812800,0.52 +1981-05-29,33.13,33.25,33.13,33.13,14845600,0.52 +1981-05-28,33.00,33.13,33.00,33.00,18496800,0.51 +1981-05-27,33.00,33.13,33.00,33.00,37374400,0.51 +1981-05-26,31.38,31.38,31.25,31.25,21336000,0.49 +1981-05-22,31.38,31.62,31.38,31.38,7856800,0.49 +1981-05-21,30.00,30.13,30.00,30.00,8052800,0.47 +1981-05-20,28.38,28.62,28.38,28.38,3320800,0.44 +1981-05-19,27.62,27.62,27.50,27.50,6356000,0.43 +1981-05-18,28.00,28.25,28.00,28.00,1041600,0.44 +1981-05-15,27.50,27.88,27.50,27.50,1226400,0.43 +1981-05-14,27.13,27.13,26.87,26.87,1232000,0.42 +1981-05-13,27.38,27.62,27.25,27.25,1226400,0.42 +1981-05-12,27.38,27.75,27.38,27.38,1064000,0.43 +1981-05-11,27.50,27.50,27.38,27.38,2984800,0.43 +1981-05-08,28.00,28.12,28.00,28.00,1976800,0.44 +1981-05-07,27.75,27.88,27.75,27.75,2340800,0.43 +1981-05-06,27.50,27.50,27.38,27.38,4737600,0.43 +1981-05-05,28.25,28.25,28.12,28.12,4384800,0.44 +1981-05-04,28.38,28.38,28.25,28.25,3612000,0.44 +1981-05-01,28.38,28.62,28.38,28.38,4138400,0.44 +1981-04-30,28.38,28.62,28.38,28.38,3152800,0.44 +1981-04-29,28.00,28.00,27.88,27.88,3410400,0.43 +1981-04-28,28.38,28.38,28.25,28.25,8047200,0.44 +1981-04-27,28.87,28.87,28.75,28.75,9632000,0.45 +1981-04-24,29.25,29.25,29.00,29.00,8764000,0.45 +1981-04-23,29.25,29.37,29.25,29.25,14504000,0.46 +1981-04-22,28.50,28.62,28.50,28.50,4748800,0.44 +1981-04-21,27.50,27.62,27.50,27.50,7134400,0.43 +1981-04-20,25.75,25.87,25.75,25.75,8836800,0.40 +1981-04-16,25.12,25.12,25.00,25.00,5969600,0.39 +1981-04-15,26.63,26.63,26.50,26.50,8512000,0.41 +1981-04-14,27.88,28.00,27.88,27.88,1663200,0.43 +1981-04-13,27.88,28.00,27.88,27.88,4015200,0.43 +1981-04-10,27.88,28.00,27.88,27.88,8366400,0.43 +1981-04-09,27.50,27.62,27.50,27.50,3124800,0.43 +1981-04-08,27.00,27.25,27.00,27.00,5488000,0.42 +1981-04-07,25.87,25.87,25.75,25.75,2671200,0.40 +1981-04-06,26.13,26.13,26.00,26.00,5700800,0.41 +1981-04-03,26.50,26.63,26.50,26.50,4121600,0.41 +1981-04-02,26.37,26.50,26.37,26.37,7851200,0.41 +1981-04-01,24.38,24.38,24.25,24.25,8517600,0.38 +1981-03-31,24.75,24.75,24.50,24.50,3998400,0.38 +1981-03-30,24.75,25.00,24.75,24.75,2475200,0.39 +1981-03-27,24.88,24.88,24.75,24.75,3063200,0.39 +1981-03-26,25.75,25.75,25.63,25.63,3068800,0.40 +1981-03-25,26.37,26.37,26.13,26.13,1764000,0.41 +1981-03-24,26.75,26.75,26.63,26.63,7039200,0.41 +1981-03-23,26.75,27.00,26.75,26.75,5504800,0.42 +1981-03-20,25.75,26.00,25.75,25.75,3651200,0.40 +1981-03-19,25.63,25.63,25.50,25.50,9452800,0.40 +1981-03-18,25.75,26.00,25.75,25.75,9234400,0.40 +1981-03-17,24.25,24.50,24.25,24.25,10936800,0.38 +1981-03-16,23.13,23.37,23.13,23.13,9307200,0.36 +1981-03-13,22.37,22.37,22.25,22.25,57825600,0.35 +1981-03-12,22.50,22.63,22.50,22.50,14812000,0.35 +1981-03-11,21.87,21.87,21.62,21.62,7464800,0.34 +1981-03-10,22.63,22.63,22.50,22.50,7095200,0.35 +1981-03-09,23.75,23.75,23.63,23.63,3830400,0.37 +1981-03-06,25.87,25.87,25.63,25.63,2900800,0.40 +1981-03-05,26.00,26.00,25.87,25.87,1344000,0.40 +1981-03-04,26.13,26.13,26.00,26.00,3427200,0.41 +1981-03-03,26.37,26.37,26.25,26.25,4043200,0.41 +1981-03-02,26.63,26.75,26.63,26.63,2940000,0.41 +1981-02-27,26.50,26.75,26.50,26.50,3690400,0.41 +1981-02-26,25.63,25.75,25.63,25.63,2710400,0.40 +1981-02-25,25.25,25.37,25.25,25.25,4872000,0.39 +1981-02-24,24.00,24.00,23.75,23.75,4244800,0.37 +1981-02-23,24.62,24.75,24.62,24.62,3528000,0.38 +1981-02-20,24.38,24.38,24.25,24.25,6092800,0.38 +1981-02-19,25.75,25.75,25.63,25.63,5577600,0.40 +1981-02-18,27.25,27.50,27.25,27.25,4810400,0.42 +1981-02-17,26.13,26.25,26.13,26.13,3068800,0.41 +1981-02-13,25.75,25.75,25.50,25.50,2788800,0.40 +1981-02-12,26.25,26.25,26.13,26.13,3640000,0.41 +1981-02-11,26.50,26.50,26.37,26.37,3460800,0.41 +1981-02-10,27.25,27.38,27.25,27.25,4586400,0.42 +1981-02-09,27.50,27.50,27.25,27.25,4188800,0.42 +1981-02-06,28.75,28.87,28.75,28.75,3466400,0.45 +1981-02-05,28.62,28.87,28.62,28.62,1982400,0.45 +1981-02-04,28.62,28.75,28.62,28.62,6966400,0.45 +1981-02-03,27.62,27.75,27.62,27.62,4788000,0.43 +1981-02-02,26.75,26.75,26.63,26.63,5941600,0.41 +1981-01-30,28.50,28.50,28.25,28.25,11547200,0.44 +1981-01-29,30.00,30.00,29.87,29.87,10976000,0.47 +1981-01-28,31.12,31.12,31.00,31.00,7039200,0.48 +1981-01-27,32.25,32.25,32.00,32.00,5924800,0.50 +1981-01-26,32.37,32.37,32.25,32.25,6160000,0.50 +1981-01-23,32.87,33.00,32.75,32.75,2805600,0.51 +1981-01-22,32.87,33.13,32.87,32.87,8887200,0.51 +1981-01-21,32.50,32.75,32.50,32.50,3976000,0.51 +1981-01-20,32.00,32.00,31.88,31.88,7520800,0.50 +1981-01-19,32.87,33.00,32.87,32.87,10393600,0.51 +1981-01-16,31.12,31.12,31.00,31.00,3348800,0.48 +1981-01-15,31.25,31.50,31.25,31.25,3516800,0.49 +1981-01-14,30.63,30.75,30.63,30.63,3572800,0.48 +1981-01-13,30.63,30.63,30.50,30.50,5762400,0.48 +1981-01-12,31.88,31.88,31.62,31.62,5924800,0.49 +1981-01-09,31.88,32.00,31.88,31.88,5376000,0.50 +1981-01-08,30.37,30.37,30.25,30.25,9956800,0.47 +1981-01-07,31.00,31.00,30.88,30.88,13921600,0.48 +1981-01-06,32.37,32.37,32.25,32.25,11289600,0.50 +1981-01-05,33.87,33.87,33.75,33.75,8932000,0.53 +1981-01-02,34.50,34.75,34.50,34.50,5415200,0.54 +1980-12-31,34.25,34.25,34.13,34.13,8937600,0.53 +1980-12-30,35.25,35.25,35.12,35.12,17220000,0.55 +1980-12-29,36.00,36.13,36.00,36.00,23290400,0.56 +1980-12-26,35.50,35.62,35.50,35.50,13893600,0.55 +1980-12-24,32.50,32.63,32.50,32.50,12000800,0.51 +1980-12-23,30.88,31.00,30.88,30.88,11737600,0.48 +1980-12-22,29.63,29.75,29.63,29.63,9340800,0.46 +1980-12-19,28.25,28.38,28.25,28.25,12157600,0.44 +1980-12-18,26.63,26.75,26.63,26.63,18362400,0.41 +1980-12-17,25.87,26.00,25.87,25.87,21610400,0.40 +1980-12-16,25.37,25.37,25.25,25.25,26432000,0.39 +1980-12-15,27.38,27.38,27.25,27.25,43971200,0.42 +1980-12-12,28.75,28.87,28.75,28.75,117258400,0.45 diff --git a/实验 探索Chipotle快餐数据/data/chipotle.tsv b/实验 探索Chipotle快餐数据/data/chipotle.tsv new file mode 100644 index 0000000..1ba6958 --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/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/实验 探索Chipotle快餐数据/data/drinks.csv b/实验 探索Chipotle快餐数据/data/drinks.csv new file mode 100644 index 0000000..e625b9e --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/drinks.csv @@ -0,0 +1,194 @@ +country,beer_servings,spirit_servings,wine_servings,total_litres_of_pure_alcohol,continent +Afghanistan,0,0,0,0.0,AS +Albania,89,132,54,4.9,EU +Algeria,25,0,14,0.7,AF +Andorra,245,138,312,12.4,EU +Angola,217,57,45,5.9,AF +Antigua & Barbuda,102,128,45,4.9,NA +Argentina,193,25,221,8.3,SA +Armenia,21,179,11,3.8,EU +Australia,261,72,212,10.4,OC +Austria,279,75,191,9.7,EU +Azerbaijan,21,46,5,1.3,EU +Bahamas,122,176,51,6.3,NA +Bahrain,42,63,7,2.0,AS +Bangladesh,0,0,0,0.0,AS +Barbados,143,173,36,6.3,NA +Belarus,142,373,42,14.4,EU +Belgium,295,84,212,10.5,EU +Belize,263,114,8,6.8,NA +Benin,34,4,13,1.1,AF +Bhutan,23,0,0,0.4,AS +Bolivia,167,41,8,3.8,SA +Bosnia-Herzegovina,76,173,8,4.6,EU +Botswana,173,35,35,5.4,AF +Brazil,245,145,16,7.2,SA +Brunei,31,2,1,0.6,AS +Bulgaria,231,252,94,10.3,EU +Burkina Faso,25,7,7,4.3,AF +Burundi,88,0,0,6.3,AF +Cote d'Ivoire,37,1,7,4.0,AF +Cabo Verde,144,56,16,4.0,AF +Cambodia,57,65,1,2.2,AS +Cameroon,147,1,4,5.8,AF +Canada,240,122,100,8.2,NA +Central African Republic,17,2,1,1.8,AF +Chad,15,1,1,0.4,AF +Chile,130,124,172,7.6,SA +China,79,192,8,5.0,AS +Colombia,159,76,3,4.2,SA +Comoros,1,3,1,0.1,AF +Congo,76,1,9,1.7,AF +Cook Islands,0,254,74,5.9,OC +Costa Rica,149,87,11,4.4,NA +Croatia,230,87,254,10.2,EU +Cuba,93,137,5,4.2,NA +Cyprus,192,154,113,8.2,EU +Czech Republic,361,170,134,11.8,EU +North Korea,0,0,0,0.0,AS +DR Congo,32,3,1,2.3,AF +Denmark,224,81,278,10.4,EU +Djibouti,15,44,3,1.1,AF +Dominica,52,286,26,6.6,NA +Dominican Republic,193,147,9,6.2,NA +Ecuador,162,74,3,4.2,SA +Egypt,6,4,1,0.2,AF +El Salvador,52,69,2,2.2,NA +Equatorial Guinea,92,0,233,5.8,AF +Eritrea,18,0,0,0.5,AF +Estonia,224,194,59,9.5,EU +Ethiopia,20,3,0,0.7,AF +Fiji,77,35,1,2.0,OC +Finland,263,133,97,10.0,EU +France,127,151,370,11.8,EU +Gabon,347,98,59,8.9,AF +Gambia,8,0,1,2.4,AF +Georgia,52,100,149,5.4,EU +Germany,346,117,175,11.3,EU +Ghana,31,3,10,1.8,AF +Greece,133,112,218,8.3,EU +Grenada,199,438,28,11.9,NA +Guatemala,53,69,2,2.2,NA +Guinea,9,0,2,0.2,AF +Guinea-Bissau,28,31,21,2.5,AF +Guyana,93,302,1,7.1,SA +Haiti,1,326,1,5.9,NA +Honduras,69,98,2,3.0,NA +Hungary,234,215,185,11.3,EU +Iceland,233,61,78,6.6,EU +India,9,114,0,2.2,AS +Indonesia,5,1,0,0.1,AS +Iran,0,0,0,0.0,AS +Iraq,9,3,0,0.2,AS +Ireland,313,118,165,11.4,EU +Israel,63,69,9,2.5,AS +Italy,85,42,237,6.5,EU +Jamaica,82,97,9,3.4,NA +Japan,77,202,16,7.0,AS +Jordan,6,21,1,0.5,AS +Kazakhstan,124,246,12,6.8,AS +Kenya,58,22,2,1.8,AF +Kiribati,21,34,1,1.0,OC +Kuwait,0,0,0,0.0,AS +Kyrgyzstan,31,97,6,2.4,AS +Laos,62,0,123,6.2,AS +Latvia,281,216,62,10.5,EU +Lebanon,20,55,31,1.9,AS +Lesotho,82,29,0,2.8,AF +Liberia,19,152,2,3.1,AF +Libya,0,0,0,0.0,AF +Lithuania,343,244,56,12.9,EU +Luxembourg,236,133,271,11.4,EU +Madagascar,26,15,4,0.8,AF +Malawi,8,11,1,1.5,AF +Malaysia,13,4,0,0.3,AS +Maldives,0,0,0,0.0,AS +Mali,5,1,1,0.6,AF +Malta,149,100,120,6.6,EU +Marshall Islands,0,0,0,0.0,OC +Mauritania,0,0,0,0.0,AF +Mauritius,98,31,18,2.6,AF +Mexico,238,68,5,5.5,NA +Micronesia,62,50,18,2.3,OC +Monaco,0,0,0,0.0,EU +Mongolia,77,189,8,4.9,AS +Montenegro,31,114,128,4.9,EU +Morocco,12,6,10,0.5,AF +Mozambique,47,18,5,1.3,AF +Myanmar,5,1,0,0.1,AS +Namibia,376,3,1,6.8,AF +Nauru,49,0,8,1.0,OC +Nepal,5,6,0,0.2,AS +Netherlands,251,88,190,9.4,EU +New Zealand,203,79,175,9.3,OC +Nicaragua,78,118,1,3.5,NA +Niger,3,2,1,0.1,AF +Nigeria,42,5,2,9.1,AF +Niue,188,200,7,7.0,OC +Norway,169,71,129,6.7,EU +Oman,22,16,1,0.7,AS +Pakistan,0,0,0,0.0,AS +Palau,306,63,23,6.9,OC +Panama,285,104,18,7.2,NA +Papua New Guinea,44,39,1,1.5,OC +Paraguay,213,117,74,7.3,SA +Peru,163,160,21,6.1,SA +Philippines,71,186,1,4.6,AS +Poland,343,215,56,10.9,EU +Portugal,194,67,339,11.0,EU +Qatar,1,42,7,0.9,AS +South Korea,140,16,9,9.8,AS +Moldova,109,226,18,6.3,EU +Romania,297,122,167,10.4,EU +Russian Federation,247,326,73,11.5,AS +Rwanda,43,2,0,6.8,AF +St. Kitts & Nevis,194,205,32,7.7,NA +St. Lucia,171,315,71,10.1,NA +St. Vincent & the Grenadines,120,221,11,6.3,NA +Samoa,105,18,24,2.6,OC +San Marino,0,0,0,0.0,EU +Sao Tome & Principe,56,38,140,4.2,AF +Saudi Arabia,0,5,0,0.1,AS +Senegal,9,1,7,0.3,AF +Serbia,283,131,127,9.6,EU +Seychelles,157,25,51,4.1,AF +Sierra Leone,25,3,2,6.7,AF +Singapore,60,12,11,1.5,AS +Slovakia,196,293,116,11.4,EU +Slovenia,270,51,276,10.6,EU +Solomon Islands,56,11,1,1.2,OC +Somalia,0,0,0,0.0,AF +South Africa,225,76,81,8.2,AF +Spain,284,157,112,10.0,EU +Sri Lanka,16,104,0,2.2,AS +Sudan,8,13,0,1.7,AF +Suriname,128,178,7,5.6,SA +Swaziland,90,2,2,4.7,AF +Sweden,152,60,186,7.2,EU +Switzerland,185,100,280,10.2,EU +Syria,5,35,16,1.0,AS +Tajikistan,2,15,0,0.3,AS +Thailand,99,258,1,6.4,AS +Macedonia,106,27,86,3.9,EU +Timor-Leste,1,1,4,0.1,AS +Togo,36,2,19,1.3,AF +Tonga,36,21,5,1.1,OC +Trinidad & Tobago,197,156,7,6.4,NA +Tunisia,51,3,20,1.3,AF +Turkey,51,22,7,1.4,AS +Turkmenistan,19,71,32,2.2,AS +Tuvalu,6,41,9,1.0,OC +Uganda,45,9,0,8.3,AF +Ukraine,206,237,45,8.9,EU +United Arab Emirates,16,135,5,2.8,AS +United Kingdom,219,126,195,10.4,EU +Tanzania,36,6,1,5.7,AF +USA,249,158,84,8.7,NA +Uruguay,115,35,220,6.6,SA +Uzbekistan,25,101,8,2.4,AS +Vanuatu,21,18,11,0.9,OC +Venezuela,333,100,3,7.7,SA +Vietnam,111,2,1,2.0,AS +Yemen,6,0,0,0.1,AS +Zambia,32,19,4,2.5,AF +Zimbabwe,64,18,4,4.7,AF diff --git a/实验 探索Chipotle快餐数据/data/iris.data b/实验 探索Chipotle快餐数据/data/iris.data new file mode 100644 index 0000000..5c4316c --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/iris.data @@ -0,0 +1,151 @@ +5.1,3.5,1.4,0.2,Iris-setosa +4.9,3.0,1.4,0.2,Iris-setosa +4.7,3.2,1.3,0.2,Iris-setosa +4.6,3.1,1.5,0.2,Iris-setosa +5.0,3.6,1.4,0.2,Iris-setosa +5.4,3.9,1.7,0.4,Iris-setosa +4.6,3.4,1.4,0.3,Iris-setosa +5.0,3.4,1.5,0.2,Iris-setosa +4.4,2.9,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5.4,3.7,1.5,0.2,Iris-setosa +4.8,3.4,1.6,0.2,Iris-setosa +4.8,3.0,1.4,0.1,Iris-setosa +4.3,3.0,1.1,0.1,Iris-setosa +5.8,4.0,1.2,0.2,Iris-setosa +5.7,4.4,1.5,0.4,Iris-setosa +5.4,3.9,1.3,0.4,Iris-setosa +5.1,3.5,1.4,0.3,Iris-setosa +5.7,3.8,1.7,0.3,Iris-setosa +5.1,3.8,1.5,0.3,Iris-setosa +5.4,3.4,1.7,0.2,Iris-setosa +5.1,3.7,1.5,0.4,Iris-setosa +4.6,3.6,1.0,0.2,Iris-setosa +5.1,3.3,1.7,0.5,Iris-setosa +4.8,3.4,1.9,0.2,Iris-setosa +5.0,3.0,1.6,0.2,Iris-setosa +5.0,3.4,1.6,0.4,Iris-setosa +5.2,3.5,1.5,0.2,Iris-setosa +5.2,3.4,1.4,0.2,Iris-setosa +4.7,3.2,1.6,0.2,Iris-setosa +4.8,3.1,1.6,0.2,Iris-setosa +5.4,3.4,1.5,0.4,Iris-setosa +5.2,4.1,1.5,0.1,Iris-setosa +5.5,4.2,1.4,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +5.0,3.2,1.2,0.2,Iris-setosa +5.5,3.5,1.3,0.2,Iris-setosa +4.9,3.1,1.5,0.1,Iris-setosa +4.4,3.0,1.3,0.2,Iris-setosa +5.1,3.4,1.5,0.2,Iris-setosa +5.0,3.5,1.3,0.3,Iris-setosa +4.5,2.3,1.3,0.3,Iris-setosa +4.4,3.2,1.3,0.2,Iris-setosa +5.0,3.5,1.6,0.6,Iris-setosa +5.1,3.8,1.9,0.4,Iris-setosa +4.8,3.0,1.4,0.3,Iris-setosa +5.1,3.8,1.6,0.2,Iris-setosa +4.6,3.2,1.4,0.2,Iris-setosa +5.3,3.7,1.5,0.2,Iris-setosa +5.0,3.3,1.4,0.2,Iris-setosa +7.0,3.2,4.7,1.4,Iris-versicolor +6.4,3.2,4.5,1.5,Iris-versicolor +6.9,3.1,4.9,1.5,Iris-versicolor +5.5,2.3,4.0,1.3,Iris-versicolor +6.5,2.8,4.6,1.5,Iris-versicolor +5.7,2.8,4.5,1.3,Iris-versicolor +6.3,3.3,4.7,1.6,Iris-versicolor +4.9,2.4,3.3,1.0,Iris-versicolor +6.6,2.9,4.6,1.3,Iris-versicolor +5.2,2.7,3.9,1.4,Iris-versicolor +5.0,2.0,3.5,1.0,Iris-versicolor +5.9,3.0,4.2,1.5,Iris-versicolor +6.0,2.2,4.0,1.0,Iris-versicolor +6.1,2.9,4.7,1.4,Iris-versicolor +5.6,2.9,3.6,1.3,Iris-versicolor +6.7,3.1,4.4,1.4,Iris-versicolor +5.6,3.0,4.5,1.5,Iris-versicolor +5.8,2.7,4.1,1.0,Iris-versicolor +6.2,2.2,4.5,1.5,Iris-versicolor +5.6,2.5,3.9,1.1,Iris-versicolor +5.9,3.2,4.8,1.8,Iris-versicolor +6.1,2.8,4.0,1.3,Iris-versicolor +6.3,2.5,4.9,1.5,Iris-versicolor +6.1,2.8,4.7,1.2,Iris-versicolor +6.4,2.9,4.3,1.3,Iris-versicolor +6.6,3.0,4.4,1.4,Iris-versicolor +6.8,2.8,4.8,1.4,Iris-versicolor +6.7,3.0,5.0,1.7,Iris-versicolor +6.0,2.9,4.5,1.5,Iris-versicolor +5.7,2.6,3.5,1.0,Iris-versicolor +5.5,2.4,3.8,1.1,Iris-versicolor +5.5,2.4,3.7,1.0,Iris-versicolor +5.8,2.7,3.9,1.2,Iris-versicolor +6.0,2.7,5.1,1.6,Iris-versicolor +5.4,3.0,4.5,1.5,Iris-versicolor +6.0,3.4,4.5,1.6,Iris-versicolor +6.7,3.1,4.7,1.5,Iris-versicolor +6.3,2.3,4.4,1.3,Iris-versicolor +5.6,3.0,4.1,1.3,Iris-versicolor +5.5,2.5,4.0,1.3,Iris-versicolor +5.5,2.6,4.4,1.2,Iris-versicolor +6.1,3.0,4.6,1.4,Iris-versicolor +5.8,2.6,4.0,1.2,Iris-versicolor +5.0,2.3,3.3,1.0,Iris-versicolor +5.6,2.7,4.2,1.3,Iris-versicolor +5.7,3.0,4.2,1.2,Iris-versicolor +5.7,2.9,4.2,1.3,Iris-versicolor +6.2,2.9,4.3,1.3,Iris-versicolor +5.1,2.5,3.0,1.1,Iris-versicolor +5.7,2.8,4.1,1.3,Iris-versicolor +6.3,3.3,6.0,2.5,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +7.1,3.0,5.9,2.1,Iris-virginica +6.3,2.9,5.6,1.8,Iris-virginica +6.5,3.0,5.8,2.2,Iris-virginica +7.6,3.0,6.6,2.1,Iris-virginica +4.9,2.5,4.5,1.7,Iris-virginica +7.3,2.9,6.3,1.8,Iris-virginica +6.7,2.5,5.8,1.8,Iris-virginica +7.2,3.6,6.1,2.5,Iris-virginica +6.5,3.2,5.1,2.0,Iris-virginica +6.4,2.7,5.3,1.9,Iris-virginica +6.8,3.0,5.5,2.1,Iris-virginica +5.7,2.5,5.0,2.0,Iris-virginica +5.8,2.8,5.1,2.4,Iris-virginica +6.4,3.2,5.3,2.3,Iris-virginica +6.5,3.0,5.5,1.8,Iris-virginica +7.7,3.8,6.7,2.2,Iris-virginica +7.7,2.6,6.9,2.3,Iris-virginica +6.0,2.2,5.0,1.5,Iris-virginica +6.9,3.2,5.7,2.3,Iris-virginica +5.6,2.8,4.9,2.0,Iris-virginica +7.7,2.8,6.7,2.0,Iris-virginica +6.3,2.7,4.9,1.8,Iris-virginica +6.7,3.3,5.7,2.1,Iris-virginica +7.2,3.2,6.0,1.8,Iris-virginica +6.2,2.8,4.8,1.8,Iris-virginica +6.1,3.0,4.9,1.8,Iris-virginica +6.4,2.8,5.6,2.1,Iris-virginica +7.2,3.0,5.8,1.6,Iris-virginica +7.4,2.8,6.1,1.9,Iris-virginica +7.9,3.8,6.4,2.0,Iris-virginica +6.4,2.8,5.6,2.2,Iris-virginica +6.3,2.8,5.1,1.5,Iris-virginica +6.1,2.6,5.6,1.4,Iris-virginica +7.7,3.0,6.1,2.3,Iris-virginica +6.3,3.4,5.6,2.4,Iris-virginica +6.4,3.1,5.5,1.8,Iris-virginica +6.0,3.0,4.8,1.8,Iris-virginica +6.9,3.1,5.4,2.1,Iris-virginica +6.7,3.1,5.6,2.4,Iris-virginica +6.9,3.1,5.1,2.3,Iris-virginica +5.8,2.7,5.1,1.9,Iris-virginica +6.8,3.2,5.9,2.3,Iris-virginica +6.7,3.3,5.7,2.5,Iris-virginica +6.7,3.0,5.2,2.3,Iris-virginica +6.3,2.5,5.0,1.9,Iris-virginica +6.5,3.0,5.2,2.0,Iris-virginica +6.2,3.4,5.4,2.3,Iris-virginica +5.9,3.0,5.1,1.8,Iris-virginica + diff --git a/实验 探索Chipotle快餐数据/data/train.csv b/实验 探索Chipotle快餐数据/data/train.csv new file mode 100644 index 0000000..5cc466e --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/train.csv @@ -0,0 +1,892 @@ +PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked +1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S +2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C +3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S +4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S +5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S +6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q +7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S +8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S +9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S +10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C +11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S +12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S +13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S +14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S +15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S +16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S +17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q +18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S +19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S +20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C +21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S +22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S +23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q +24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S +25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S +26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S +27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C +28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S +29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q +30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S +31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C +32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C +33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q +34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S +35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C +36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S +37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C +38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S +39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S +40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C +41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S +42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S +43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C +44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C +45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q +46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S +47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q +48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q +49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C +50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S +51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S +52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S +53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C +54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S +55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C +56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S +57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S +58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C +59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S +60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S +61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C +62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28, +63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S +64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S +65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C +66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C +67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S +68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S +69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S +70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S +71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S +72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S +73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S +74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C +75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S +76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S +77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S +78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S +79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S +80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S +81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S +82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S +83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q +84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S +85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S +86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S +87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S +88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S +89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S +90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S +91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S +92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S +93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S +94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S +95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S +96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S +97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C +98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C +99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S +100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S +101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S +102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S +103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S +104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S +105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S +106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S +107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S +108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S +109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S +110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q +111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S +112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C +113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S +114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S +115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C +116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S +117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q +118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S +119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C +120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S +121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S +122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S +123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C +124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S +125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S +126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C +127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q +128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S +129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C +130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S +131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C +132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S +133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S +134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S +135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S +136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C +137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S +138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S +139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S +140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C +141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C +142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S +143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S +144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q +145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S +146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S +147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S +148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S +149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S +150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S +151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S +152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S +153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S +154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S +155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S +156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C +157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q +158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S +159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S +160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S +161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S +162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S +163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S +164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S +165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S +166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S +167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S +168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S +169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S +170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S +171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S +172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q +173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S +174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S +175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C +176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S +177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S +178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C +179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S +180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S +181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S +182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C +183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S +184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S +185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S +186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S +187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q +188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S +189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q +190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S +191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S +192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S +193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S +194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S +195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C +196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C +197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q +198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S +199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q +200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S +201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S +202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S +203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S +204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C +205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S +206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S +207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S +208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C +209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q +210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C +211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S +212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S +213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S +214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S +215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q +216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C +217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S +218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S +219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C +220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S +221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S +222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S +223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S +224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S +225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S +226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S +227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S +228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S +229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S +230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S +231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S +232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S +233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S +234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S +235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S +236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S +237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S +238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S +239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S +240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S +241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C +242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q +243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S +244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S +245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C +246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q +247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S +248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S +249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S +250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S +251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S +252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S +253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S +254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S +255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S +256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C +257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C +258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S +259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C +260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S +261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q +262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S +263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S +264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S +265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q +266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S +267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S +268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S +269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S +270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S +271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S +272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S +273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S +274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C +275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q +276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S +277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S +278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S +279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q +280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S +281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q +282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S +283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S +284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S +285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S +286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C +287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S +288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S +289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S +290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q +291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S +292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C +293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C +294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S +295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S +296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C +297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C +298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S +299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S +300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C +301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q +302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q +303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S +304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q +305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S +306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S +307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C +308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C +309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C +310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C +311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C +312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C +313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S +314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S +315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S +316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S +317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S +318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S +319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S +320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C +321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S +322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S +323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q +324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S +325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S +326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C +327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S +328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S +329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S +330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C +331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q +332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S +333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S +334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S +335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S +336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S +337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S +338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C +339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S +340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S +341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S +342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S +343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S +344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S +345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S +346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S +347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S +348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S +349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S +350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S +351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S +352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S +353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C +354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S +355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C +356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S +357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S +358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S +359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q +360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q +361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S +362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C +363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C +364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S +365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q +366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S +367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C +368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C +369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q +370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C +371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C +372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S +373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S +374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C +375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S +376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C +377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S +378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C +379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C +380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S +381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C +382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C +383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S +384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S +385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S +386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S +387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S +388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S +389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q +390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C +391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S +392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S +393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S +394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C +395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S +396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S +397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S +398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S +399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S +400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S +401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S +402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S +403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S +404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S +405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S +406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S +407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S +408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S +409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S +410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S +411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S +412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q +413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q +414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S +415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S +416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S +417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S +418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S +419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S +420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S +421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C +422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q +423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S +424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S +425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S +426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S +427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S +428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S +429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q +430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S +431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S +432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S +433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S +434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S +435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S +436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S +437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S +438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S +439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S +440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S +441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S +442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S +443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S +444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S +445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S +446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S +447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S +448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S +449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C +450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S +451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S +452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S +453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C +454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C +455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S +456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C +457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S +458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S +459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S +460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q +461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S +462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S +463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S +464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S +465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S +466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S +467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S +468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S +469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q +470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C +471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S +472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S +473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S +474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C +475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S +476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S +477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S +478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S +479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S +480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S +481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S +482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S +483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S +484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S +485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C +486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S +487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S +488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C +489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S +490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S +491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S +492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S +493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S +494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C +495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S +496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C +497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C +498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S +499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S +500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S +501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S +502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q +503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q +504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S +505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S +506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C +507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S +508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S +509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S +510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S +511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q +512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S +513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S +514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C +515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S +516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S +517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S +518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q +519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S +520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S +521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S +522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S +523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C +524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C +525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C +526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q +527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S +528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S +529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S +530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S +531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S +532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C +533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C +534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C +535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S +536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S +537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S +538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C +539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S +540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C +541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S +542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S +543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S +544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S +545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C +546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S +547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S +548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C +549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S +550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S +551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C +552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S +553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q +554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C +555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S +556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S +557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C +558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C +559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S +560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S +561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q +562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S +563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S +564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S +565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S +566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S +567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S +568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S +569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C +570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S +571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S +572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S +573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S +574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q +575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S +576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S +577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S +578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S +579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C +580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S +581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S +582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C +583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S +584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C +585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C +586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S +587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S +588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C +589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S +590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S +591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S +592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C +593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S +594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q +595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S +596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S +597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S +598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S +599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C +600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C +601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S +602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S +603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S +604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S +605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C +606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S +607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S +608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S +609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C +610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S +611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S +612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S +613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q +614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q +615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S +616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S +617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S +618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S +619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S +620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S +621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C +622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S +623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C +624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S +625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S +626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S +627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q +628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S +629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S +630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q +631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S +632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S +633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C +634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S +635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S +636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S +637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S +638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S +639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S +640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S +641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S +642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C +643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S +644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S +645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C +646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C +647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S +648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C +649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S +650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S +651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S +652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S +653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S +654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q +655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q +656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S +657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S +658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q +659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S +660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C +661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S +662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C +663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S +664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S +665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S +666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S +667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S +668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S +669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S +670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S +671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S +672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S +673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S +674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S +675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S +676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S +677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S +678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S +679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S +680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C +681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q +682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C +683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S +684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S +685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S +686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C +687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S +688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S +689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S +690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S +691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S +692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C +693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S +694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C +695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S +696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S +697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S +698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q +699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C +700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S +701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C +702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S +703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C +704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q +705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S +706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S +707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S +708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S +709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S +710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C +711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C +712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S +713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S +714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S +715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S +716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S +717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C +718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S +719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q +720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S +721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S +722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S +723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S +724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S +725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S +726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S +727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S +728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q +729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S +730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S +731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S +732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C +733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S +734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S +735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S +736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S +737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S +738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C +739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S +740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S +741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S +742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S +743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C +744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S +745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S +746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S +747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S +748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S +749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S +750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q +751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S +752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S +753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S +754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S +755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S +756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S +757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S +758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S +759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S +760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S +761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S +762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S +763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C +764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S +765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S +766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S +767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C +768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q +769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q +770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S +771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S +772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S +773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S +774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C +775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S +776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S +777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q +778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S +779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q +780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S +781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C +782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S +783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S +784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S +785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S +786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S +787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S +788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q +789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S +790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C +791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q +792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S +793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S +794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C +795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S +796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S +797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S +798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S +799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C +800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S +801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S +802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S +803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S +804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C +805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S +806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S +807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S +808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S +809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S +810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S +811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S +812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S +813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S +814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S +815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S +816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S +817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S +818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C +819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S +820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S +821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S +822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S +823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S +824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S +825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S +826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q +827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S +828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C +829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q +830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28, +831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C +832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S +833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C +834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S +835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S +836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C +837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S +838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S +839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S +840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C +841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S +842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S +843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C +844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C +845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S +846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S +847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S +848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C +849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S +850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C +851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S +852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S +853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C +854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S +855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S +856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S +857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S +858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S +859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C +860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C +861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S +862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S +863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S +864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S +865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S +866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S +867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C +868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S +869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S +870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S +871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S +872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S +873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S +874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S +875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C +876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C +877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S +878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S +879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S +880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C +881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S +882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S +883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S +884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S +885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S +886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q +887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S +888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S +889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S +890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C +891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q diff --git a/实验 探索Chipotle快餐数据/data/wind.csv b/实验 探索Chipotle快餐数据/data/wind.csv new file mode 100644 index 0000000..877258d --- /dev/null +++ b/实验 探索Chipotle快餐数据/data/wind.csv @@ -0,0 +1,6575 @@ +Yr Mo Dy RPT VAL ROS KIL SHA BIR DUB CLA MUL CLO BEL MAL +61 1 1 15.04 14.96 13.17 9.29 NaN 9.87 13.67 10.25 10.83 12.58 18.50 15.04 +61 1 2 14.71 NaN 10.83 6.50 12.62 7.67 11.50 10.04 9.79 9.67 17.54 13.83 +61 1 3 18.50 16.88 12.33 10.13 11.17 6.17 11.25 NaN 8.50 7.67 12.75 12.71 +61 1 4 10.58 6.63 11.75 4.58 4.54 2.88 8.63 1.79 5.83 5.88 5.46 10.88 +61 1 5 13.33 13.25 11.42 6.17 10.71 8.21 11.92 6.54 10.92 10.34 12.92 11.83 +61 1 6 13.21 8.12 9.96 6.67 5.37 4.50 10.67 4.42 7.17 7.50 8.12 13.17 +61 1 7 13.50 14.29 9.50 4.96 12.29 8.33 9.17 9.29 7.58 7.96 13.96 13.79 +61 1 8 10.96 9.75 7.62 5.91 9.62 7.29 14.29 7.62 9.25 10.46 16.62 16.46 +61 1 9 12.58 10.83 10.00 4.75 10.37 6.79 8.04 10.13 7.79 9.08 13.04 15.37 +61 1 10 13.37 11.12 19.50 8.33 9.71 6.54 11.42 7.79 8.54 9.00 8.58 11.83 +61 1 11 10.58 9.87 8.42 2.79 8.71 7.25 7.54 8.33 5.71 8.67 20.71 16.92 +61 1 12 19.75 12.08 18.50 10.54 10.29 9.46 15.54 11.50 10.37 14.58 15.59 14.09 +61 1 13 9.92 3.54 8.46 2.96 2.29 0.96 4.63 0.58 2.33 3.37 5.25 7.04 +61 1 14 9.04 5.66 7.08 0.67 2.71 1.38 3.08 2.58 0.50 2.67 7.17 5.17 +61 1 15 12.04 9.67 11.75 2.37 7.38 3.13 2.50 6.83 4.75 5.63 7.54 6.75 +61 1 16 16.42 11.25 15.67 4.71 11.34 6.92 9.25 8.79 8.21 7.33 13.04 9.04 +61 1 17 17.75 14.37 17.33 10.13 13.96 13.37 13.42 11.04 8.71 11.38 15.92 16.08 +61 1 18 19.83 12.04 20.79 18.54 NaN 10.29 17.83 11.38 14.67 16.71 8.79 17.96 +61 1 19 4.92 3.42 7.29 1.04 3.67 3.17 3.71 2.79 1.92 2.71 6.87 7.83 +61 1 20 9.59 11.83 7.96 1.58 7.92 5.00 3.17 4.92 3.13 3.37 6.50 6.79 +61 1 21 14.33 10.25 11.92 6.13 10.04 7.67 8.04 9.17 7.04 7.87 6.75 12.42 +61 1 22 9.59 5.88 9.92 2.17 6.87 5.50 9.38 7.04 6.34 7.50 10.88 9.92 +61 1 23 16.54 9.96 18.54 10.46 13.50 12.67 13.70 13.75 10.75 13.17 14.79 20.58 +61 1 24 25.04 14.83 25.84 15.67 21.46 18.58 20.38 19.38 15.37 15.12 23.09 25.25 +61 1 25 13.62 11.17 12.67 6.04 10.00 9.42 9.25 8.71 7.12 12.04 14.04 17.50 +61 1 26 24.37 18.79 17.50 14.25 18.91 15.67 14.33 15.16 16.08 19.08 20.50 25.25 +61 1 27 22.04 20.79 17.41 16.21 19.04 16.13 16.79 18.29 18.66 19.08 26.08 27.63 +61 1 28 17.67 13.54 13.33 8.87 15.04 11.63 12.25 10.58 11.92 11.04 20.30 18.12 +61 1 29 NaN 23.91 22.29 17.54 24.08 19.70 22.00 20.25 21.46 19.95 27.71 23.38 +61 1 30 12.21 11.42 10.92 7.92 13.08 9.62 14.50 10.21 9.92 11.96 18.88 19.25 +61 1 31 24.21 19.55 16.71 11.96 14.42 10.46 14.88 8.21 10.50 9.96 12.42 13.92 +61 2 1 14.25 15.12 9.04 5.88 12.08 7.17 10.17 3.63 6.50 5.50 9.17 8.00 +61 2 2 20.17 24.21 10.00 6.54 17.37 7.17 10.88 6.08 9.08 7.12 12.08 7.17 +61 2 3 14.37 11.71 11.04 5.09 9.87 5.83 8.50 5.13 6.34 7.38 9.71 8.83 +61 2 4 10.58 9.46 10.92 8.71 12.46 11.46 12.54 11.04 13.04 11.17 16.50 11.71 +61 2 5 22.00 16.75 19.70 11.63 14.25 12.04 13.96 15.54 13.37 13.13 19.33 14.67 +61 2 6 24.50 20.75 20.62 15.37 25.33 17.62 19.17 18.79 18.96 14.46 26.38 21.84 +61 2 7 18.05 14.37 14.88 9.75 10.96 11.17 14.21 9.71 13.04 12.25 15.21 17.58 +61 2 8 24.54 21.42 21.34 11.63 17.04 14.21 16.50 17.33 14.67 17.79 23.79 19.58 +61 2 9 17.41 15.92 13.67 10.71 14.00 12.92 14.37 15.71 14.46 14.67 23.04 19.21 +61 2 10 20.50 11.54 19.67 10.04 8.12 8.08 11.08 12.54 11.12 12.96 17.83 17.75 +61 2 11 16.79 14.00 13.70 9.54 15.83 13.29 17.50 15.50 15.83 14.33 21.17 21.09 +61 2 12 16.00 16.92 17.25 8.38 11.75 10.37 11.71 14.37 10.37 14.62 25.41 17.04 +61 2 13 22.50 19.70 19.41 15.34 16.13 14.62 16.08 14.12 13.96 16.58 28.62 19.67 +61 2 14 17.08 11.63 17.25 12.12 13.75 13.46 15.46 12.29 14.88 15.67 14.09 11.42 +61 2 15 6.04 12.08 6.13 4.21 9.87 6.92 5.17 7.41 8.17 9.21 17.12 10.96 +61 2 16 16.79 20.17 12.67 13.25 15.29 15.12 3.42 14.29 14.79 13.79 21.92 22.58 +61 2 17 15.25 14.09 14.75 9.54 14.62 12.92 6.17 12.58 13.25 14.54 18.21 17.67 +61 2 18 12.08 12.38 12.67 6.04 10.71 9.08 10.88 12.38 10.00 11.34 18.58 13.25 +61 2 19 16.17 15.59 13.70 NaN 13.50 10.96 9.62 11.83 11.58 13.67 29.63 20.54 +61 2 20 11.04 11.08 10.63 8.33 10.92 8.29 7.25 7.75 8.83 11.08 15.09 12.17 +61 2 21 7.79 8.63 6.08 2.21 7.41 4.33 3.75 7.04 4.50 7.41 12.12 6.67 +61 2 22 12.29 13.21 13.54 6.46 11.58 9.21 8.25 10.29 9.21 13.08 15.25 13.21 +61 2 23 22.08 17.46 18.88 12.42 20.50 16.13 16.38 16.92 13.21 18.00 23.21 21.21 +61 2 24 8.71 7.08 11.38 4.83 5.96 4.58 8.17 4.67 6.21 7.00 9.59 9.21 +61 2 25 18.84 16.42 17.41 10.21 16.13 11.38 13.08 12.21 12.33 12.50 16.04 13.92 +61 2 26 25.80 21.50 22.42 15.21 23.09 16.88 21.17 17.25 18.46 20.04 22.83 23.87 +61 2 27 11.00 13.37 11.17 6.87 13.21 8.75 12.75 10.83 10.88 12.67 20.00 17.54 +61 2 28 12.92 12.75 NaN 8.92 16.13 12.29 14.75 14.46 13.96 14.04 18.41 13.17 +61 3 1 12.67 13.13 11.79 6.42 9.79 8.54 10.25 13.29 NaN 12.21 20.62 NaN +61 3 2 12.58 10.04 11.17 7.12 10.29 9.21 10.88 10.50 10.58 12.96 18.38 13.79 +61 3 3 13.33 15.54 13.67 9.59 11.58 8.71 11.29 12.83 8.92 14.09 23.45 16.38 +61 3 4 10.96 8.83 8.17 5.88 8.25 6.00 6.21 5.66 6.25 9.79 12.46 8.83 +61 3 5 11.25 17.00 10.41 10.04 15.46 11.17 5.50 10.34 11.71 10.83 11.58 14.00 +61 3 6 4.88 8.08 7.54 3.13 5.41 4.08 2.83 5.29 5.21 5.09 10.21 5.54 +61 3 7 6.46 10.50 8.00 5.41 10.58 6.58 3.63 6.67 7.08 7.04 16.08 8.75 +61 3 8 7.54 8.33 9.29 8.12 11.00 10.58 1.71 8.50 8.71 9.71 17.58 15.37 +61 3 9 11.96 13.13 10.17 9.46 14.17 12.67 3.75 9.71 12.46 11.54 17.54 18.16 +61 3 10 10.63 10.17 9.04 5.13 10.50 7.92 8.79 7.92 8.87 10.50 12.29 13.50 +61 3 11 14.79 16.96 15.50 8.46 10.00 10.92 10.34 15.67 10.58 13.54 22.71 17.08 +61 3 12 NaN 13.88 16.38 10.25 14.92 13.67 17.12 13.70 16.29 15.79 20.50 22.54 +61 3 13 11.21 11.34 12.33 5.63 11.17 10.58 13.96 10.50 13.88 11.50 19.70 18.88 +61 3 14 12.12 15.29 12.75 5.17 9.38 7.04 8.12 11.12 8.75 9.29 20.04 15.71 +61 3 15 11.12 15.54 13.96 8.42 10.88 8.83 11.54 13.54 8.46 13.92 22.13 14.12 +61 3 16 4.92 12.92 5.25 4.29 8.96 7.04 2.75 5.13 6.00 7.29 20.12 11.42 +61 3 17 15.71 14.71 11.21 8.87 14.37 10.75 13.00 14.29 13.08 15.34 22.79 19.17 +61 3 18 16.88 15.25 12.29 11.04 13.67 10.54 13.17 10.46 13.50 14.67 19.38 22.95 +61 3 19 11.42 9.46 13.46 6.17 6.83 5.79 7.75 6.50 7.04 9.38 11.29 11.34 +61 3 20 13.75 10.41 12.00 10.75 11.46 10.29 15.41 10.04 13.67 13.83 14.29 21.09 +61 3 21 9.54 10.58 15.63 7.29 7.54 7.71 8.17 6.58 8.58 10.50 9.38 14.88 +61 3 22 6.34 4.42 5.71 4.42 5.13 4.29 8.00 4.92 8.00 9.04 8.25 13.13 +61 3 23 6.38 2.58 4.79 5.13 6.46 7.21 10.88 7.38 9.79 8.33 15.21 18.34 +61 3 24 6.29 7.46 6.75 4.54 8.25 6.25 8.46 10.34 10.00 10.29 14.42 15.46 +61 3 25 9.67 11.63 10.41 5.58 10.58 9.92 10.75 13.04 11.92 14.50 21.34 21.54 +61 3 26 15.00 11.63 12.58 8.83 13.33 10.21 13.75 10.54 14.37 13.88 15.37 22.50 +61 3 27 5.88 3.50 5.17 2.75 2.83 3.50 6.75 1.46 6.50 7.12 7.21 15.34 +61 3 28 8.46 10.63 12.04 NaN 7.83 6.79 10.88 10.92 9.54 10.63 18.16 19.58 +61 3 29 18.25 16.29 14.96 12.00 18.34 14.33 16.62 13.37 17.54 14.21 18.63 16.83 +61 3 30 17.75 12.92 11.79 10.13 16.08 14.21 14.79 14.92 NaN 13.46 15.67 13.17 +61 3 31 8.96 8.04 9.13 8.50 10.75 9.54 11.92 9.59 11.25 8.54 11.96 12.21 +61 4 1 8.38 6.34 8.33 6.75 9.33 9.54 11.67 8.21 11.21 6.46 11.96 7.17 +61 4 2 7.62 4.25 5.09 3.67 4.67 6.25 5.25 4.96 6.83 7.00 10.71 13.00 +61 4 3 15.29 8.63 15.67 4.12 10.25 9.04 5.50 8.54 7.58 4.96 11.08 9.38 +61 4 4 13.92 13.67 13.88 6.75 9.79 6.38 6.00 8.54 7.67 8.08 14.50 11.92 +61 4 5 18.12 14.62 18.29 10.63 13.33 10.83 9.25 8.21 10.34 8.50 17.16 13.13 +61 4 6 4.50 8.21 9.29 3.21 5.96 4.33 5.00 7.33 6.13 6.54 10.25 11.50 +61 4 7 8.21 7.04 13.75 3.75 6.00 5.00 5.33 4.00 5.66 3.67 7.62 7.21 +61 4 8 10.34 11.29 11.29 4.42 9.38 7.67 8.71 10.08 9.21 8.42 11.25 11.12 +61 4 9 13.37 11.12 13.08 8.83 11.75 10.21 9.96 9.59 10.54 10.50 10.13 15.34 +61 4 10 5.75 4.83 8.25 3.00 5.88 4.25 5.21 3.58 6.00 4.58 7.62 11.25 +61 4 11 10.50 12.25 12.58 6.96 8.71 8.58 5.66 9.92 9.00 9.67 16.17 12.87 +61 4 12 10.63 10.04 11.38 5.13 5.71 5.13 6.54 4.75 4.50 5.17 8.50 6.38 +61 4 13 15.50 9.29 15.79 9.71 7.29 7.17 8.00 4.75 7.87 7.58 7.17 5.66 +61 4 14 10.50 6.17 4.50 5.00 8.67 5.00 4.29 4.50 5.71 7.79 8.50 7.71 +61 4 15 5.17 6.42 3.92 2.67 3.37 1.54 2.46 2.29 3.58 4.00 5.75 6.79 +61 4 16 4.71 7.00 5.09 2.33 5.21 2.96 2.88 5.17 3.37 4.46 12.67 10.17 +61 4 17 4.00 3.71 3.33 1.58 2.21 0.83 4.46 2.54 3.58 3.83 10.04 7.25 +61 4 18 10.83 12.42 6.04 5.50 11.92 7.08 5.66 9.96 7.46 9.46 12.92 11.58 +61 4 19 16.71 13.96 14.67 11.42 14.37 11.63 12.96 13.25 13.29 14.37 19.21 20.46 +61 4 20 21.09 15.41 17.00 11.63 13.25 11.17 12.25 10.54 11.29 11.58 18.05 20.08 +61 4 21 15.34 14.04 15.87 9.79 11.71 8.79 9.50 12.25 9.00 9.87 17.54 12.29 +61 4 22 8.17 5.66 6.92 4.79 7.87 5.09 7.46 4.83 4.88 7.12 6.75 4.96 +61 4 23 12.21 7.87 7.96 9.67 11.17 10.00 10.71 10.41 11.87 10.63 10.83 10.67 +61 4 24 9.54 8.04 9.13 4.79 7.54 5.75 5.25 7.08 6.00 7.62 9.87 8.46 +61 4 25 14.04 11.96 14.96 7.87 10.75 8.83 13.75 11.96 11.08 11.46 12.17 17.50 +61 4 26 16.29 14.46 6.92 5.88 12.62 7.46 6.00 6.34 7.54 6.00 8.33 12.12 +61 4 27 4.08 7.04 7.92 3.83 3.88 3.13 6.25 3.17 5.41 4.71 7.29 7.75 +61 4 28 5.58 6.50 2.54 1.87 4.21 1.54 2.67 1.38 2.54 2.71 5.13 3.21 +61 4 29 9.62 9.59 6.96 3.83 6.83 3.88 4.04 6.46 4.17 4.12 13.04 2.67 +61 4 30 11.67 11.00 9.54 5.54 9.42 5.79 5.09 8.25 6.96 6.25 12.21 8.75 +61 5 1 15.87 13.88 15.37 9.79 13.46 10.17 9.96 14.04 9.75 9.92 18.63 11.12 +61 5 2 19.04 14.83 14.92 8.67 15.63 11.63 10.46 9.75 11.21 10.71 12.96 12.67 +61 5 3 11.00 10.92 12.87 8.67 10.58 8.42 9.50 10.04 9.62 9.42 15.46 12.25 +61 5 4 9.87 10.29 8.42 7.50 9.42 7.33 5.96 6.25 7.79 8.92 4.79 3.83 +61 5 5 10.63 10.37 9.17 6.46 9.83 8.00 9.13 9.87 10.04 8.63 16.29 12.42 +61 5 6 23.00 19.79 21.21 14.12 22.34 15.04 16.83 17.71 16.29 17.54 28.08 23.13 +61 5 7 18.16 17.71 14.88 14.46 23.16 15.46 18.21 18.05 17.04 15.96 26.63 26.58 +61 5 8 12.79 10.08 12.33 10.75 15.71 14.04 18.58 15.79 17.33 17.92 18.66 26.30 +61 5 9 6.04 3.96 7.00 3.83 4.17 4.00 7.25 3.37 7.08 9.21 6.54 11.38 +61 5 10 4.79 6.21 4.63 1.04 3.42 1.17 3.33 3.79 2.46 1.83 7.58 3.88 +61 5 11 3.54 7.54 5.33 2.08 5.25 1.58 3.67 3.71 2.62 3.04 9.25 5.96 +61 5 12 7.00 15.12 9.17 4.54 11.21 5.91 NaN 4.04 5.25 4.38 10.63 9.50 +61 5 13 11.00 11.54 11.71 8.83 12.83 9.92 5.21 8.71 7.92 8.63 9.17 12.33 +61 5 14 9.25 6.54 7.04 6.00 11.46 8.12 10.04 9.96 10.04 9.75 11.12 3.33 +61 5 15 9.62 3.92 9.75 3.88 5.63 3.46 5.91 5.88 6.38 6.25 6.63 8.42 +61 5 16 15.04 10.17 15.25 5.17 12.92 6.79 8.38 11.12 9.46 9.17 12.00 13.70 +61 5 17 10.00 6.54 15.63 4.88 8.21 6.75 5.83 7.38 8.00 7.96 9.46 8.21 +61 5 18 4.88 3.58 15.96 3.71 6.34 3.83 5.04 3.79 5.00 4.17 7.29 5.91 +61 5 19 5.00 5.29 5.91 3.63 7.25 4.17 6.83 6.79 7.17 9.29 10.83 14.96 +61 5 20 6.21 NaN 10.13 4.83 7.33 5.66 4.71 7.58 7.00 8.67 10.41 12.75 +61 5 21 6.83 4.29 11.67 3.71 5.50 4.50 3.17 6.25 4.92 4.29 10.75 10.34 +61 5 22 6.25 3.67 5.33 2.50 4.17 3.79 2.42 4.21 4.63 5.37 8.21 10.92 +61 5 23 4.96 3.96 3.58 2.42 3.75 2.25 3.13 2.83 4.50 5.54 6.13 8.67 +61 5 24 5.54 5.96 3.71 3.37 3.92 1.63 4.00 3.37 4.92 6.50 8.83 12.29 +61 5 25 7.67 11.17 13.13 5.50 9.13 6.04 6.79 7.96 7.33 10.46 13.88 17.04 +61 5 26 11.79 12.50 20.96 NaN 10.21 6.50 9.33 12.08 9.59 11.46 14.33 16.58 +61 5 27 10.92 6.79 6.46 5.41 10.00 5.25 4.92 7.04 7.29 8.25 10.46 8.00 +61 5 28 9.96 7.67 6.42 3.29 7.41 3.33 5.41 6.42 4.50 5.17 11.79 8.38 +61 5 29 12.04 6.67 15.96 9.87 8.04 8.46 11.71 9.21 11.17 12.04 11.54 17.96 +61 5 30 10.00 4.75 9.21 3.42 7.67 5.25 5.83 7.21 6.34 5.91 8.71 12.92 +61 5 31 7.00 9.79 12.25 4.83 8.25 5.37 6.58 9.29 6.58 7.12 11.87 10.63 +61 6 1 15.92 9.59 12.04 8.79 11.54 6.04 9.75 8.29 9.33 10.34 10.67 12.12 +61 6 2 11.29 6.34 6.92 6.71 12.12 7.79 7.92 8.71 9.83 9.17 12.42 15.71 +61 6 3 7.50 8.29 6.83 5.88 12.87 7.08 10.41 7.87 10.46 10.34 13.88 14.42 +61 6 4 8.50 6.42 7.25 4.67 7.79 5.17 6.21 9.87 7.29 8.33 17.00 11.42 +61 6 5 11.58 11.54 7.50 5.66 9.96 6.04 3.42 9.17 8.08 10.92 16.17 12.29 +61 6 6 8.33 8.54 6.13 3.21 8.58 5.17 4.21 7.96 6.92 6.71 11.42 8.75 +61 6 7 11.92 9.42 8.96 6.34 13.13 8.63 8.17 9.71 9.59 9.87 13.25 16.38 +61 6 8 12.17 8.87 8.17 6.92 11.92 7.46 9.54 9.59 10.58 10.37 11.21 19.83 +61 6 9 9.71 7.79 8.29 4.29 7.75 4.38 8.29 4.38 8.08 8.83 7.79 14.21 +61 6 10 14.42 9.96 11.58 6.79 11.54 4.67 9.71 4.25 7.58 6.87 5.83 8.33 +61 6 11 8.29 6.83 6.04 3.29 7.33 1.87 6.25 3.13 5.41 5.21 5.37 5.96 +61 6 12 9.25 7.08 13.46 5.17 5.66 3.63 9.17 2.88 6.50 6.83 7.29 11.34 +61 6 13 6.13 4.12 6.50 2.92 3.50 1.58 4.67 3.63 4.21 3.08 7.71 6.13 +61 6 14 8.33 12.42 8.71 6.79 11.87 7.12 5.66 8.63 8.08 10.25 20.21 11.83 +61 6 15 9.96 8.17 10.54 5.88 10.25 6.92 8.25 9.29 9.50 9.25 14.58 13.96 +61 6 16 13.88 14.54 13.75 8.29 13.29 10.00 10.54 16.54 11.54 14.71 25.25 20.88 +61 6 17 14.33 11.34 15.50 9.42 12.33 9.04 12.96 9.50 11.00 10.50 14.67 16.33 +61 6 18 12.12 9.29 7.67 7.17 14.92 10.34 13.70 13.25 12.12 12.54 17.75 24.71 +61 6 19 8.92 6.38 7.67 6.42 11.34 7.75 10.37 9.38 10.29 10.17 12.92 16.88 +61 6 20 4.00 3.25 5.13 2.88 8.58 4.46 7.92 6.34 6.50 7.83 11.00 14.25 +61 6 21 8.54 9.50 10.37 6.63 11.50 7.33 10.54 9.83 9.54 10.17 14.71 13.75 +61 6 22 8.83 6.25 6.38 6.42 11.96 8.58 13.29 9.29 11.54 11.00 13.25 18.91 +61 6 23 5.71 4.21 7.79 5.29 11.58 7.33 14.21 7.38 11.46 11.63 14.96 21.50 +61 6 24 6.42 4.92 9.33 4.75 12.17 8.33 14.88 11.87 12.92 15.00 19.08 20.75 +61 6 25 9.00 8.25 9.92 5.96 13.21 8.67 11.87 12.04 10.96 13.00 14.67 15.83 +61 6 26 13.13 11.42 7.62 7.08 12.42 5.96 8.38 7.75 9.67 10.04 10.83 11.63 +61 6 27 9.00 6.34 8.00 5.71 8.04 6.96 10.54 8.96 10.41 10.37 13.29 16.79 +61 6 28 7.75 9.71 9.21 5.83 11.12 6.25 8.79 12.83 7.38 11.58 19.92 16.38 +61 6 29 NaN 10.46 7.96 6.79 12.62 7.08 8.33 9.46 7.08 10.92 20.88 10.79 +61 6 30 12.29 14.37 10.79 10.54 13.83 9.59 4.92 13.70 8.75 12.38 21.87 NaN +61 7 1 7.21 6.83 7.71 4.42 8.46 4.79 6.71 6.00 5.79 7.96 6.96 8.71 +61 7 2 12.04 7.25 9.25 7.04 10.34 4.92 5.83 5.96 6.25 8.63 8.00 8.50 +61 7 3 15.34 10.58 12.17 10.08 18.58 11.38 15.75 14.33 15.46 16.79 20.41 21.29 +61 7 4 17.50 10.75 14.92 12.00 12.62 9.62 14.92 11.08 13.13 13.50 12.46 19.67 +61 7 5 11.50 4.96 7.62 5.83 8.92 6.17 10.08 5.58 8.08 8.75 7.08 12.42 +61 7 6 8.00 3.75 7.62 3.54 8.00 4.58 7.08 6.87 6.25 6.21 10.21 12.08 +61 7 7 11.17 7.21 7.41 8.12 14.29 9.75 NaN 9.96 13.04 11.54 15.34 17.41 +61 7 8 11.21 7.58 7.83 7.87 14.42 8.38 14.04 10.96 11.63 9.33 11.83 16.04 +61 7 9 7.29 5.71 7.67 5.37 10.63 6.00 9.46 6.38 7.54 7.71 8.21 13.00 +61 7 10 8.63 7.87 9.33 5.58 9.46 3.46 2.67 2.96 2.92 4.25 5.04 5.96 +61 7 11 11.08 11.42 10.37 6.87 9.46 5.63 7.41 8.17 6.50 8.38 10.21 13.29 +61 7 12 19.46 16.88 12.29 10.08 15.04 8.83 9.08 11.75 10.50 10.71 17.21 9.92 +61 7 13 16.75 13.79 12.92 12.33 19.95 13.17 16.83 16.17 15.37 14.92 20.25 21.96 +61 7 14 22.50 19.29 14.29 12.42 20.88 10.17 11.83 12.33 10.63 10.88 15.63 14.00 +61 7 15 16.92 14.50 8.00 7.62 12.21 7.92 10.25 10.96 8.92 10.17 14.09 9.92 +61 7 16 21.42 10.88 11.00 10.04 14.67 9.71 13.13 11.21 11.87 11.79 12.21 12.62 +61 7 17 4.25 3.08 5.46 1.46 5.04 1.96 7.08 5.21 5.66 7.62 6.17 9.13 +61 7 18 4.38 6.79 5.29 4.63 7.33 3.88 4.96 7.79 6.50 7.75 9.79 10.83 +61 7 19 5.17 3.42 6.63 2.96 6.75 2.92 3.50 7.29 5.58 7.00 10.13 10.92 +61 7 20 5.88 2.92 4.08 2.42 6.21 2.71 3.04 5.46 5.63 5.37 7.29 8.33 +61 7 21 3.33 4.58 6.96 4.67 5.75 2.79 2.21 5.13 4.25 5.09 7.08 8.25 +61 7 22 3.37 5.29 6.08 3.67 5.54 2.58 4.75 5.25 5.46 5.54 8.00 6.04 +61 7 23 3.04 3.71 12.67 3.29 6.17 2.17 2.21 3.37 4.00 3.92 4.21 5.41 +61 7 24 7.00 4.63 6.42 2.83 4.96 2.92 3.58 4.17 2.21 4.92 9.25 6.13 +61 7 25 15.92 13.79 15.67 8.63 14.33 9.33 12.29 14.09 11.63 15.37 22.17 19.50 +61 7 26 11.46 7.50 10.46 9.92 17.50 13.50 18.79 15.16 15.59 15.75 19.38 25.37 +61 7 27 10.13 8.83 6.79 3.75 9.50 4.54 7.87 6.46 6.83 6.63 7.87 13.00 +61 7 28 16.08 9.13 10.29 7.33 10.54 7.33 9.67 8.67 9.33 8.87 9.38 13.75 +61 7 29 7.21 4.83 6.67 3.42 5.96 3.67 5.79 6.67 5.09 6.54 11.17 9.25 +61 7 30 6.13 10.41 9.17 4.21 7.75 4.58 6.04 9.17 5.58 8.21 10.67 9.33 +61 7 31 7.67 6.71 9.38 4.17 5.25 2.79 3.75 2.25 3.17 5.54 6.17 9.67 +61 8 1 9.59 5.09 5.54 4.63 8.29 5.25 4.21 5.25 5.37 5.41 8.38 9.08 +61 8 2 10.00 5.58 6.71 6.00 8.96 6.67 8.87 7.12 7.79 8.75 8.71 11.87 +61 8 3 16.08 15.79 15.59 8.96 16.92 10.21 11.92 13.04 11.12 12.83 18.54 17.54 +61 8 4 11.00 9.21 10.58 7.54 13.17 9.62 13.54 11.79 11.67 10.21 16.04 20.25 +61 8 5 13.37 12.46 12.79 6.54 15.50 9.00 10.54 11.29 10.50 11.92 15.41 17.12 +61 8 6 8.38 6.71 8.42 5.83 10.04 6.75 7.87 7.12 6.46 8.00 7.92 10.79 +61 8 7 2.88 4.42 6.34 3.04 6.58 3.96 3.88 5.04 3.17 5.71 9.83 5.88 +61 8 8 14.21 9.87 11.63 6.42 12.38 6.96 10.63 7.12 7.38 7.79 10.08 6.83 +61 8 9 12.96 10.00 11.29 6.46 14.58 8.96 11.25 10.37 8.87 9.33 12.50 10.46 +61 8 10 6.63 6.71 6.00 2.50 7.58 3.58 4.67 8.33 2.83 5.41 9.96 10.96 +61 8 11 NaN 6.75 8.29 5.00 8.58 4.83 6.83 6.25 5.79 5.25 5.88 8.38 +61 8 12 10.71 8.71 8.92 4.38 8.29 5.83 6.83 8.25 5.88 NaN 14.29 13.21 +61 8 13 12.96 9.13 8.63 7.75 12.75 8.00 10.92 10.79 10.08 9.92 14.00 15.16 +61 8 14 16.42 10.88 9.87 8.79 16.21 11.46 15.09 13.37 12.87 12.92 15.37 NaN +61 8 15 15.34 8.75 10.54 6.83 12.96 7.54 9.42 8.92 8.79 9.13 9.59 13.04 +61 8 16 13.13 7.25 9.17 8.21 13.29 9.04 12.96 10.54 10.54 12.00 11.00 16.08 +61 8 17 13.62 8.17 9.71 7.00 14.25 8.83 10.21 10.50 10.79 11.25 15.50 14.62 +61 8 18 18.91 12.87 11.46 11.79 20.38 14.25 19.04 17.71 16.13 17.83 21.92 24.30 +61 8 19 18.08 12.42 12.67 10.58 15.87 11.54 13.21 11.04 12.46 11.79 13.79 15.59 +61 8 20 13.75 13.62 14.04 7.00 13.88 10.25 12.58 9.92 10.88 10.79 17.29 16.13 +61 8 21 18.16 14.58 14.62 11.67 21.04 15.34 19.00 17.79 17.50 15.46 20.21 22.29 +61 8 22 13.33 8.58 9.50 7.67 13.83 9.50 12.08 9.83 10.75 9.96 12.87 15.37 +61 8 23 9.62 8.92 10.46 3.96 9.46 6.79 8.17 7.96 7.08 8.00 10.04 12.62 +61 8 24 7.67 6.87 9.67 5.46 7.46 4.25 5.66 4.50 3.96 7.46 5.75 8.29 +61 8 25 14.33 13.59 17.83 8.21 12.17 9.67 10.92 14.00 9.59 15.21 19.55 16.17 +61 8 26 12.38 13.88 14.09 6.71 15.50 10.29 9.79 14.50 10.13 15.50 21.96 20.04 +61 8 27 11.25 13.59 13.21 6.08 13.29 10.13 12.12 16.83 9.71 15.96 23.38 20.62 +61 8 28 13.37 22.00 12.75 12.42 17.62 13.08 9.08 14.58 13.50 12.92 20.75 16.79 +61 8 29 14.46 16.04 12.75 9.17 19.21 12.12 14.12 16.54 12.00 16.13 24.71 22.54 +61 8 30 3.63 4.67 4.88 2.37 5.63 3.17 4.58 7.58 4.58 6.96 14.33 10.34 +61 8 31 4.83 7.04 2.46 3.25 8.50 4.83 2.92 6.42 4.29 6.54 17.16 8.00 +61 9 1 5.58 1.13 4.96 3.04 4.25 2.25 4.63 2.71 3.67 6.00 4.79 5.41 +61 9 2 7.25 3.58 2.42 3.50 6.96 3.13 3.83 6.58 3.92 5.96 7.12 6.96 +61 9 3 11.63 7.29 7.00 5.75 5.58 5.37 5.88 5.88 5.25 7.96 6.79 7.12 +61 9 4 6.79 3.04 4.79 3.17 4.75 2.17 1.25 2.21 2.96 1.75 5.41 3.37 +61 9 5 12.67 10.00 6.38 5.83 10.41 5.83 9.38 8.54 9.04 9.96 13.62 15.04 +61 9 6 17.62 12.54 11.58 10.17 14.54 9.13 14.09 10.79 12.71 11.71 15.83 20.25 +61 9 7 9.21 3.92 7.58 5.83 7.54 5.96 7.87 4.88 7.04 7.41 5.66 10.83 +61 9 8 5.75 9.71 3.63 2.75 7.67 2.67 3.17 4.42 2.50 4.21 8.25 5.79 +61 9 9 16.75 13.59 14.88 10.50 11.42 9.83 6.92 9.50 9.71 10.96 13.92 15.00 +61 9 10 5.00 8.79 8.46 4.17 8.29 4.21 4.83 6.38 4.88 6.96 12.21 6.96 +61 9 11 9.87 8.42 7.29 5.46 12.12 7.92 8.63 8.75 8.75 9.67 13.92 14.67 +61 9 12 20.75 18.66 16.66 10.75 15.75 10.96 11.08 14.50 10.34 12.92 23.91 16.71 +61 9 13 16.71 13.96 15.21 9.67 14.62 10.25 11.75 13.42 9.71 13.00 21.37 15.71 +61 9 14 18.00 16.88 15.54 9.71 15.21 11.12 12.75 13.79 12.21 13.54 23.91 18.25 +61 9 15 20.71 13.96 20.00 12.46 13.70 11.08 13.00 12.92 11.58 14.83 18.63 17.71 +61 9 16 28.75 22.08 26.50 21.09 28.50 20.67 20.79 21.37 21.34 25.21 23.45 33.09 +61 9 17 5.33 7.12 8.12 3.96 8.29 5.58 7.87 7.17 5.88 10.71 13.96 16.75 +61 9 18 9.75 4.21 NaN NaN 5.79 4.46 4.17 NaN 4.33 6.21 7.21 9.21 +61 9 19 8.50 8.25 12.17 7.17 11.54 7.54 8.17 7.96 7.33 10.71 9.08 11.04 +61 9 20 7.08 2.92 5.33 2.62 3.88 1.63 4.79 1.46 2.83 2.83 4.54 5.25 +61 9 21 6.92 7.75 7.79 4.12 7.75 4.25 6.46 7.50 4.38 6.63 13.17 7.12 +61 9 22 9.00 13.62 6.46 5.41 12.92 7.75 4.12 11.63 6.08 7.67 20.96 14.62 +61 9 23 10.25 7.29 8.17 5.83 8.12 6.46 6.08 7.33 6.08 7.50 10.46 12.04 +61 9 24 8.00 6.04 8.04 3.96 7.50 3.21 5.91 5.41 4.21 6.04 11.71 9.42 +61 9 25 10.34 12.92 8.87 5.79 11.58 8.00 8.92 12.50 8.04 13.00 20.17 16.21 +61 9 26 18.46 13.13 15.87 10.17 13.46 10.37 12.46 11.38 10.04 13.50 17.75 15.83 +61 9 27 11.34 6.96 9.38 6.00 11.25 6.34 8.08 6.25 7.00 10.13 14.29 14.29 +61 9 28 15.59 8.67 14.71 7.87 11.29 7.75 9.13 6.21 8.71 9.50 7.79 10.13 +61 9 29 19.12 13.62 17.16 9.59 14.67 9.13 9.21 12.38 9.25 14.00 20.30 15.71 +61 9 30 23.21 NaN 17.58 11.17 20.75 12.00 10.96 15.34 12.08 17.46 21.37 17.16 +61 10 1 14.25 12.87 7.87 8.00 13.00 7.75 5.83 9.00 7.08 5.29 11.79 4.04 +61 10 2 14.09 8.67 13.54 8.54 9.62 9.42 8.71 9.00 10.58 12.12 7.58 19.62 +61 10 3 4.29 4.00 4.96 2.13 3.75 1.79 4.04 2.75 2.42 3.88 4.96 4.83 +61 10 4 3.13 4.42 6.13 1.46 3.79 1.04 3.50 1.87 1.42 2.42 4.92 6.50 +61 10 5 9.75 3.63 8.71 2.83 5.91 3.04 5.63 3.96 4.00 6.17 4.79 8.33 +61 10 6 16.04 16.96 17.83 9.79 9.75 9.71 12.96 9.50 8.67 11.96 9.96 14.42 +61 10 7 16.08 11.75 9.71 5.46 11.38 5.41 6.87 6.96 3.25 4.88 11.63 9.92 +61 10 8 15.37 11.87 10.29 6.63 13.59 8.46 10.17 9.50 9.21 12.21 17.83 16.25 +61 10 9 17.12 12.71 20.96 9.38 10.58 8.25 9.04 9.17 7.46 10.21 8.54 12.83 +61 10 10 14.46 13.25 11.46 9.42 13.17 11.04 11.75 12.38 11.12 15.21 20.46 19.41 +61 10 11 11.96 10.13 10.13 7.79 13.54 9.13 12.71 8.79 10.00 12.00 18.91 21.04 +61 10 12 NaN 8.71 4.67 3.67 9.08 6.54 5.58 6.38 4.00 5.37 12.46 10.75 +61 10 13 10.25 10.34 7.92 6.58 11.29 8.67 9.92 5.96 6.46 7.38 12.50 11.96 +61 10 14 3.71 6.13 4.38 4.63 7.29 4.92 2.96 4.88 3.13 5.71 13.00 12.87 +61 10 15 7.79 6.87 4.21 4.58 9.46 7.21 9.00 7.75 8.42 10.58 15.29 17.96 +61 10 16 12.58 12.67 9.92 9.21 15.63 9.42 14.58 12.42 12.58 12.92 19.58 24.62 +61 10 17 28.62 19.46 19.67 19.38 22.46 16.42 22.17 20.17 18.00 23.13 24.71 32.63 +61 10 18 28.33 18.29 22.63 17.83 18.08 11.96 21.84 17.33 16.17 26.38 24.21 33.45 +61 10 19 17.12 12.67 16.50 9.59 10.25 8.29 13.21 10.63 12.00 13.13 13.96 23.00 +61 10 20 12.67 3.75 10.37 9.42 7.75 7.21 12.08 6.87 9.83 13.00 11.71 21.67 +61 10 21 10.46 7.83 10.71 6.83 9.54 6.83 7.50 6.08 7.38 11.08 10.88 13.46 +61 10 22 25.04 18.88 21.00 16.08 22.25 14.92 17.58 14.42 15.87 15.59 17.29 16.66 +61 10 23 19.25 15.41 15.59 10.79 17.67 12.17 16.21 13.25 14.12 17.75 22.29 25.00 +61 10 24 26.42 21.25 23.09 16.54 24.41 15.46 17.96 18.46 NaN 22.13 27.29 30.88 +61 10 25 21.34 17.00 22.88 13.62 18.21 13.21 18.34 12.12 15.37 17.46 17.12 25.12 +61 10 26 16.29 11.29 17.41 6.58 12.21 8.92 9.79 10.13 8.54 12.12 13.08 12.75 +61 10 27 18.41 12.08 13.00 7.41 12.00 7.79 7.79 8.83 8.54 8.71 12.00 11.96 +61 10 28 6.50 3.29 4.79 2.21 4.58 2.62 9.75 3.71 5.79 6.67 8.50 13.29 +61 10 29 4.33 2.75 5.50 1.71 4.46 2.33 9.42 2.62 4.25 5.83 8.87 9.83 +61 10 30 9.42 8.71 10.50 6.38 11.63 8.71 14.88 10.58 11.08 11.92 17.25 20.62 +61 10 31 13.62 10.75 13.00 8.33 11.50 9.71 15.25 11.96 11.54 11.92 17.75 14.92 +61 11 1 13.21 13.13 14.33 8.54 12.17 10.21 13.08 12.17 10.92 13.54 20.17 20.04 +61 11 2 15.79 13.46 10.13 11.79 17.25 12.21 15.83 14.00 15.09 15.79 19.79 23.58 +61 11 3 9.75 4.83 10.25 6.63 7.29 6.92 11.21 5.75 7.83 8.92 10.96 23.13 +61 11 4 5.88 3.96 6.54 3.79 6.00 4.33 8.50 4.21 5.71 7.67 10.29 13.37 +61 11 5 13.33 12.29 11.04 7.33 10.04 8.58 10.79 11.12 9.04 13.29 18.05 18.71 +61 11 6 7.96 5.83 4.83 3.04 7.92 4.71 8.21 6.63 6.08 8.12 12.58 13.50 +61 11 7 11.83 9.04 12.58 5.13 10.00 6.42 9.29 6.58 7.38 10.88 11.12 13.46 +61 11 8 5.46 5.50 5.29 2.71 7.33 4.33 6.58 2.71 5.33 5.50 7.67 9.71 +61 11 9 7.71 6.21 3.83 1.87 6.21 3.33 8.21 1.42 3.37 3.71 6.34 6.63 +61 11 10 9.13 6.63 6.92 2.50 3.37 2.04 7.71 2.00 1.33 2.62 6.13 5.71 +61 11 11 16.08 10.75 20.41 8.79 8.42 5.17 12.12 5.00 5.71 5.96 9.62 11.46 +61 11 12 14.83 9.87 18.05 8.58 8.12 3.54 13.04 5.46 7.12 8.12 11.00 15.54 +61 11 13 15.00 13.00 32.71 13.33 9.59 10.13 21.87 10.04 10.37 14.04 9.25 13.25 +61 11 14 10.67 10.67 26.63 9.71 8.08 8.42 15.71 4.92 7.50 9.13 5.50 2.75 +61 11 15 8.58 5.50 15.71 5.17 8.17 3.29 6.00 2.83 4.38 4.21 3.83 3.58 +61 11 16 7.50 4.21 9.00 2.42 5.04 1.83 2.29 1.04 0.75 2.00 0.71 7.08 +61 11 17 8.71 5.33 6.46 1.50 5.66 1.25 3.13 0.63 0.92 1.25 2.71 2.00 +61 11 18 13.67 9.33 14.29 5.41 10.25 7.62 9.29 7.75 4.71 5.71 9.59 5.37 +61 11 19 11.46 7.62 14.12 4.25 10.13 5.91 9.33 5.17 2.88 5.88 9.54 6.13 +61 11 20 10.83 3.29 14.46 4.50 7.96 4.71 13.04 7.67 6.50 7.87 7.71 8.71 +61 11 21 14.29 4.96 10.46 4.21 6.00 4.54 7.00 4.96 4.88 8.33 6.50 8.71 +61 11 22 6.46 4.33 8.96 4.83 7.62 5.50 9.17 3.42 4.67 7.38 7.08 10.34 +61 11 23 9.00 9.83 6.34 6.25 10.13 7.41 15.41 9.08 9.33 12.42 20.46 22.58 +61 11 24 11.50 11.79 10.96 7.96 12.75 9.83 16.17 10.00 10.04 14.12 17.37 18.58 +61 11 25 5.75 7.12 5.04 5.00 9.04 6.25 11.83 6.38 6.79 10.04 12.71 15.96 +61 11 26 6.25 10.04 4.42 2.04 8.83 6.29 NaN 6.96 3.71 6.92 10.58 4.25 +61 11 27 7.92 4.67 10.58 4.71 4.17 2.29 5.83 1.92 2.25 3.63 5.50 5.88 +61 11 28 8.92 10.21 8.25 5.21 10.96 8.63 12.79 9.46 8.83 11.17 18.96 19.46 +61 11 29 15.67 15.67 13.00 9.71 15.29 10.79 15.29 11.50 11.25 13.00 19.04 21.29 +61 11 30 23.75 18.71 19.92 14.46 19.92 11.04 16.50 8.63 12.58 10.29 12.54 13.62 +61 12 1 9.67 7.75 8.00 3.96 6.00 2.75 7.25 2.50 5.58 5.58 7.79 11.17 +61 12 2 8.58 5.96 8.83 4.17 8.33 5.79 12.21 3.46 5.66 7.71 8.17 17.29 +61 12 3 13.75 10.13 11.79 3.29 7.83 6.79 7.67 6.25 5.46 4.00 8.25 14.37 +61 12 4 22.83 17.00 19.79 10.37 13.54 12.75 13.79 15.29 9.83 14.50 21.79 19.21 +61 12 5 17.67 14.09 14.92 12.92 13.33 11.83 17.83 11.92 15.12 15.41 19.21 29.33 +61 12 6 11.92 9.21 10.92 6.50 7.79 5.50 12.62 3.13 8.29 7.87 10.71 13.67 +61 12 7 17.96 15.83 12.17 4.50 13.59 8.04 8.87 8.04 5.09 5.75 12.21 7.58 +61 12 8 16.62 12.08 20.54 9.21 12.96 14.54 19.83 10.00 11.92 15.50 16.33 19.41 +61 12 9 10.83 10.96 9.71 3.83 9.21 7.12 10.04 6.96 7.08 9.67 11.08 9.08 +61 12 10 23.71 21.37 20.17 13.04 18.08 13.17 18.84 15.46 12.46 15.46 20.50 15.41 +61 12 11 21.34 16.38 19.00 13.62 20.00 14.83 25.62 14.50 17.25 17.41 22.83 18.34 +61 12 12 15.46 14.88 14.67 6.63 15.46 12.96 16.83 13.46 12.38 13.54 18.34 16.13 +61 12 13 16.25 11.96 16.04 9.83 14.62 11.34 16.66 11.46 11.79 13.59 16.79 18.16 +61 12 14 11.34 17.62 9.71 6.92 14.92 10.63 9.38 9.08 7.75 7.04 14.33 15.09 +61 12 15 18.05 15.71 16.66 12.92 16.75 16.42 10.71 12.50 13.59 13.62 20.62 21.12 +61 12 16 9.29 8.63 9.04 6.50 9.50 7.04 6.92 5.46 7.12 7.54 7.38 6.50 +61 12 17 13.17 9.13 10.92 4.46 8.83 8.67 9.54 6.54 4.71 4.67 5.50 7.17 +61 12 18 12.17 11.63 8.08 1.79 8.71 6.63 4.79 3.88 3.79 3.88 5.83 5.91 +61 12 19 12.38 10.88 8.96 0.58 7.33 2.83 3.54 5.04 1.71 5.75 6.67 5.66 +61 12 20 11.46 9.79 8.63 2.54 7.50 3.37 3.63 3.46 1.25 5.41 5.29 3.92 +61 12 21 13.13 10.00 8.83 3.21 9.96 3.96 4.33 3.71 2.75 2.46 6.50 2.62 +61 12 22 16.21 11.87 15.00 7.62 14.12 9.75 13.59 10.04 8.25 9.17 12.83 12.38 +61 12 23 24.41 16.13 22.13 15.59 20.38 13.59 18.12 14.33 12.54 15.34 17.67 16.62 +61 12 24 20.54 13.50 18.25 9.17 15.50 9.46 8.50 8.63 8.33 11.87 14.92 10.04 +61 12 25 19.58 10.29 18.34 6.50 11.34 8.12 11.92 11.92 10.37 9.54 13.21 13.62 +61 12 26 20.54 16.04 20.91 8.33 11.21 7.08 17.12 12.75 9.04 10.83 13.21 11.34 +61 12 27 9.25 5.21 9.04 4.08 5.91 1.83 2.92 1.87 1.83 1.96 3.75 6.63 +61 12 28 5.04 3.08 2.13 0.42 3.67 2.42 8.96 4.17 3.33 7.41 9.96 15.21 +61 12 29 14.33 13.83 23.21 11.25 9.83 7.25 15.00 8.42 8.25 10.79 10.54 14.62 +61 12 30 16.83 10.25 29.33 11.79 9.17 7.41 17.29 5.75 9.38 9.59 9.17 13.79 +61 12 31 9.87 7.83 7.67 3.75 5.66 3.50 10.04 3.08 5.04 3.79 8.04 14.67 +62 1 1 9.29 3.42 11.54 3.50 2.21 1.96 10.41 2.79 3.54 5.17 4.38 7.92 +62 1 2 6.08 3.13 5.09 0.87 0.42 0.33 8.46 0.00 0.54 4.54 1.96 7.71 +62 1 3 7.75 4.46 6.04 3.17 3.58 0.42 4.58 0.00 3.08 0.92 0.58 6.34 +62 1 4 3.17 4.92 4.38 1.04 3.50 1.79 5.50 3.75 1.63 3.17 12.38 11.71 +62 1 5 11.67 13.04 11.38 4.79 11.42 8.96 15.29 10.75 9.13 11.87 17.04 14.67 +62 1 6 15.04 12.29 12.21 4.71 9.00 6.13 8.46 6.92 5.46 5.91 12.62 10.92 +62 1 7 12.62 11.04 11.34 3.54 11.75 8.04 14.29 8.42 8.63 13.75 18.88 16.71 +62 1 8 21.09 16.62 20.08 12.92 17.41 11.71 17.71 13.50 12.17 16.38 26.12 19.50 +62 1 9 12.29 12.04 10.63 6.50 11.54 8.96 15.29 8.87 10.29 14.50 18.63 21.75 +62 1 10 21.62 20.88 16.46 10.04 15.71 10.96 14.29 12.17 9.00 12.33 16.75 16.79 +62 1 11 29.71 25.46 20.67 17.75 23.09 17.00 25.96 16.21 17.50 17.62 21.92 20.04 +62 1 12 20.91 20.08 16.79 16.62 22.29 14.83 23.54 15.04 19.79 16.83 21.04 18.66 +62 1 13 15.71 14.83 9.92 8.87 13.54 9.67 19.70 10.63 13.21 12.96 19.46 23.33 +62 1 14 10.34 9.42 8.00 5.00 8.58 6.25 12.42 6.79 7.17 8.25 11.25 12.50 +62 1 15 31.13 22.34 26.25 18.25 20.54 17.25 20.38 16.83 16.96 21.67 25.88 23.13 +62 1 16 27.79 26.54 19.83 12.54 20.46 16.25 19.75 16.71 14.29 20.08 29.42 26.50 +62 1 17 20.54 14.79 19.46 12.83 18.41 13.88 22.79 12.75 15.63 19.38 18.66 22.79 +62 1 18 13.33 9.96 10.63 4.12 8.75 8.00 12.46 7.67 7.41 10.00 13.67 13.25 +62 1 19 10.46 9.54 8.46 5.00 10.83 9.42 16.08 10.04 10.54 13.00 19.00 19.92 +62 1 20 11.46 10.17 9.75 3.00 9.46 6.75 10.29 8.04 6.67 12.04 13.92 14.42 +62 1 21 19.29 18.79 17.41 11.63 15.67 12.12 17.29 15.34 14.09 17.92 26.00 21.92 +62 1 22 20.54 21.42 14.33 14.29 22.25 12.92 23.25 16.92 16.88 15.67 26.67 27.00 +62 1 23 14.58 15.75 12.50 5.04 10.83 8.38 12.71 6.87 6.96 8.63 12.54 11.83 +62 1 24 24.13 19.55 18.66 12.62 16.17 12.96 17.25 15.29 12.96 13.75 19.75 12.46 +62 1 25 12.92 13.29 12.96 7.75 13.04 10.92 18.29 9.59 13.04 11.54 16.38 10.58 +62 1 26 5.96 4.08 4.92 2.13 4.54 3.08 7.41 1.92 4.04 4.08 4.29 7.08 +62 1 27 4.46 7.96 8.12 1.83 5.46 2.71 5.17 3.83 5.33 4.25 5.13 3.25 +62 1 28 0.67 4.50 2.96 0.87 1.38 1.21 3.63 1.54 1.71 1.42 8.67 6.79 +62 1 29 7.67 7.58 7.96 5.13 5.88 5.83 2.17 6.17 6.38 5.71 16.96 13.62 +62 1 30 14.12 12.83 12.87 5.25 10.96 9.38 13.33 15.25 9.87 15.54 24.37 20.17 +62 1 31 21.96 17.25 18.75 12.08 16.50 12.25 22.42 17.00 15.87 17.58 23.13 22.25 +62 2 1 19.12 13.96 12.21 10.58 15.71 10.63 15.71 11.08 13.17 12.62 17.67 22.71 +62 2 2 7.67 10.29 8.83 5.09 10.00 7.17 13.17 6.29 8.58 8.46 11.71 11.96 +62 2 3 14.92 11.54 11.67 6.71 13.50 10.04 15.96 11.46 12.42 12.12 18.58 20.71 +62 2 4 20.30 16.96 17.83 11.08 19.46 13.25 18.88 11.29 15.34 13.83 17.08 17.21 +62 2 5 13.83 12.75 12.71 7.62 12.12 10.13 15.75 11.83 12.17 12.38 19.29 19.95 +62 2 6 21.84 18.29 20.25 12.12 18.79 12.29 18.75 18.41 14.21 17.75 28.12 23.16 +62 2 7 30.13 25.17 21.17 16.62 22.58 16.29 25.00 20.00 20.71 20.67 27.04 25.29 +62 2 8 10.92 7.25 11.42 5.79 7.75 5.58 8.21 5.58 6.83 7.54 10.13 11.21 +62 2 9 9.21 7.38 7.96 4.04 10.50 6.46 12.08 7.71 8.17 8.54 14.29 14.46 +62 2 10 14.42 11.21 10.08 7.12 13.08 8.21 14.96 10.17 11.54 12.38 16.62 20.88 +62 2 11 18.38 14.42 15.59 12.79 21.00 14.67 24.41 17.33 19.04 18.38 28.04 29.08 +62 2 12 29.17 22.63 21.34 22.88 30.00 20.58 29.54 21.92 25.29 22.37 25.84 28.91 +62 2 13 26.30 23.38 17.29 12.62 17.21 10.08 15.79 11.87 10.29 12.92 19.50 21.71 +62 2 14 12.96 7.50 12.96 6.96 8.50 5.54 11.71 3.33 7.46 7.62 10.25 13.62 +62 2 15 13.21 10.67 12.08 10.37 18.00 13.67 23.45 17.83 16.50 16.42 21.92 25.75 +62 2 16 26.04 16.83 15.46 18.16 23.42 19.29 28.84 20.75 24.79 25.00 25.33 33.50 +62 2 17 12.87 4.75 9.00 5.13 10.04 6.42 14.12 8.21 8.96 8.67 10.41 14.25 +62 2 18 5.79 5.83 6.46 3.50 6.63 5.63 8.29 5.63 5.79 7.96 13.08 12.29 +62 2 19 10.54 9.50 8.79 3.21 7.96 4.17 7.92 5.58 4.83 6.17 14.17 8.71 +62 2 20 5.66 6.67 4.29 1.46 7.21 3.29 1.46 2.04 1.63 2.08 6.25 3.04 +62 2 21 7.41 5.91 9.96 NaN 3.08 4.00 7.04 3.71 5.29 6.17 7.46 8.00 +62 2 22 15.75 6.58 17.50 6.29 9.62 7.96 15.29 8.25 10.92 9.21 10.13 10.34 +62 2 23 17.50 7.62 19.58 6.96 12.12 8.67 20.21 10.25 13.83 9.54 15.29 10.75 +62 2 24 13.92 8.58 21.37 8.79 11.75 9.29 18.12 10.13 11.00 9.33 11.46 12.50 +62 2 25 16.00 13.37 25.92 12.33 15.34 11.42 22.63 13.13 12.46 12.42 15.75 25.08 +62 2 26 17.88 15.50 27.16 12.38 14.88 10.58 25.62 16.13 13.96 15.37 19.79 27.88 +62 2 27 18.91 13.33 26.92 13.00 15.63 11.00 26.87 17.04 14.33 14.29 21.59 27.25 +62 2 28 13.00 9.29 19.21 6.50 11.12 6.04 13.88 9.04 7.08 9.33 10.96 15.75 +62 3 1 8.21 4.83 9.00 4.83 6.00 2.21 7.96 1.87 4.08 3.92 4.08 5.41 +62 3 2 8.08 7.29 6.54 3.08 8.71 4.63 9.59 6.17 4.29 5.63 11.42 14.96 +62 3 3 11.50 6.00 12.50 4.63 7.67 4.21 6.71 8.12 6.13 5.91 7.58 12.96 +62 3 4 NaN 5.33 13.50 6.13 6.46 2.71 5.33 3.79 4.46 4.04 2.71 7.08 +62 3 5 6.63 3.96 5.88 2.04 3.29 3.08 5.79 1.63 1.67 2.79 2.67 2.46 +62 3 6 15.09 14.37 7.92 5.04 12.62 6.92 8.00 8.42 3.92 5.13 10.75 5.29 +62 3 7 35.80 31.63 30.37 20.79 32.42 24.25 29.58 23.29 19.08 20.75 21.37 18.16 +62 3 8 13.29 11.67 21.29 9.38 14.75 13.08 18.00 12.75 8.75 10.92 13.46 14.71 +62 3 9 8.54 7.17 11.08 3.83 7.96 4.96 9.00 6.58 4.08 4.42 5.83 6.63 +62 3 10 15.50 7.17 5.33 4.38 11.00 2.17 3.83 2.04 3.04 6.13 2.21 10.96 +62 3 11 5.46 2.88 6.54 3.58 6.00 5.71 10.92 9.67 9.83 7.75 7.87 11.21 +62 3 12 6.54 4.42 14.62 4.75 8.00 5.29 7.71 6.58 6.38 6.17 8.67 9.29 +62 3 13 6.71 4.21 7.41 5.04 6.00 2.88 6.83 5.46 4.67 5.29 4.29 9.62 +62 3 14 5.50 9.92 3.88 2.08 8.71 2.17 4.00 3.50 1.71 2.04 6.67 4.67 +62 3 15 15.79 10.83 21.37 10.13 15.75 14.67 16.54 12.87 12.38 15.34 17.92 21.09 +62 3 16 7.00 4.46 18.38 6.38 10.00 7.41 12.58 5.83 8.42 12.46 8.71 NaN +62 3 17 12.71 10.67 11.67 5.75 11.71 8.21 7.71 7.75 6.58 7.67 7.79 11.50 +62 3 18 14.71 11.08 11.83 4.50 11.00 5.33 5.79 7.67 6.04 5.96 7.83 6.75 +62 3 19 10.92 7.87 13.70 5.41 8.29 5.54 9.04 6.54 5.66 6.04 9.21 5.21 +62 3 20 9.21 7.38 14.12 2.29 5.91 1.92 7.67 5.96 5.66 6.34 10.83 12.42 +62 3 21 10.13 5.66 16.08 4.92 5.83 3.71 6.71 3.00 3.83 5.63 3.63 6.67 +62 3 22 4.33 2.25 5.66 2.88 5.29 2.46 5.96 4.04 3.83 5.75 5.50 10.46 +62 3 23 9.42 6.50 16.42 7.04 7.83 5.88 9.42 5.41 6.25 6.00 9.92 9.79 +62 3 24 6.83 3.21 8.25 3.71 5.96 1.00 3.50 3.63 1.46 3.13 6.17 8.96 +62 3 25 17.67 14.62 14.88 10.58 17.92 13.37 19.41 17.83 16.25 18.46 22.46 21.29 +62 3 26 12.92 8.21 8.92 11.12 12.50 9.67 14.88 9.54 13.50 11.79 11.92 13.17 +62 3 27 6.92 3.83 5.91 5.88 6.58 4.96 9.92 5.75 6.29 10.54 9.04 13.13 +62 3 28 14.83 14.12 16.42 9.00 14.33 12.17 13.54 11.46 9.79 11.00 16.21 16.50 +62 3 29 16.66 13.17 14.71 8.71 12.17 8.71 10.83 9.79 8.63 10.17 14.88 18.63 +62 3 30 13.92 6.50 9.83 8.87 12.38 8.46 13.75 9.13 10.37 11.08 11.00 18.50 +62 3 31 18.21 15.46 11.42 11.75 17.88 10.96 16.42 10.83 12.83 11.38 17.79 17.79 +62 4 1 14.33 12.25 11.87 10.37 14.92 11.00 19.79 11.67 14.09 15.46 16.62 23.58 +62 4 2 26.75 20.25 24.00 13.59 18.25 12.79 20.83 14.46 14.12 16.25 18.75 16.08 +62 4 3 17.71 10.46 7.12 8.25 12.62 7.75 10.67 9.50 8.71 10.34 13.17 12.08 +62 4 4 29.04 23.75 15.63 15.71 26.04 16.75 17.83 20.54 16.08 14.62 23.91 13.83 +62 4 5 28.33 16.38 18.08 17.88 21.21 15.16 22.42 18.05 20.83 18.34 21.42 18.16 +62 4 6 14.37 12.87 12.29 10.29 14.79 9.79 17.08 10.79 13.21 11.92 16.96 20.12 +62 4 7 19.29 16.29 17.67 11.96 19.29 12.79 22.50 12.75 16.83 14.33 16.88 17.41 +62 4 8 32.58 23.21 17.88 16.92 24.54 14.17 18.25 15.71 15.41 13.04 22.46 14.67 +62 4 9 17.21 11.63 10.79 10.37 16.17 10.04 16.21 12.50 12.92 12.87 14.46 15.25 +62 4 10 10.13 6.67 7.58 4.96 10.34 5.41 12.04 8.67 9.04 9.00 10.37 14.42 +62 4 11 8.79 5.58 9.67 7.41 11.21 9.42 14.12 8.75 10.34 12.96 10.17 15.71 +62 4 12 4.58 5.58 5.88 1.58 3.96 2.50 3.79 3.96 2.92 4.42 6.21 7.21 +62 4 13 8.92 5.58 13.79 3.75 7.33 4.21 6.58 6.25 5.66 4.71 7.29 13.08 +62 4 14 11.67 10.37 13.33 4.54 7.96 6.04 11.42 9.21 9.21 9.21 9.59 15.79 +62 4 15 13.04 7.83 23.13 7.71 9.67 8.75 13.83 8.25 10.08 9.50 8.63 14.09 +62 4 16 10.17 8.92 27.04 10.88 9.75 8.92 15.34 8.38 8.75 12.42 10.17 13.33 +62 4 17 10.41 5.88 20.12 9.46 7.54 8.29 14.83 8.63 7.21 12.87 11.12 11.63 +62 4 18 10.13 8.17 12.79 6.58 8.92 7.33 11.71 8.63 8.17 11.92 11.17 12.12 +62 4 19 5.58 4.38 6.79 3.63 4.92 3.58 6.21 2.71 2.42 5.21 7.29 7.50 +62 4 20 8.58 8.83 8.79 4.21 8.92 5.71 6.17 8.21 5.58 7.41 14.37 10.25 +62 4 21 5.75 5.09 7.54 2.25 5.13 3.33 3.58 2.62 2.75 2.92 4.63 7.46 +62 4 22 9.96 14.83 9.59 7.38 12.46 7.92 8.58 8.79 7.46 7.71 11.63 7.08 +62 4 23 7.50 7.33 7.62 5.54 9.59 7.38 8.96 7.54 5.91 7.96 10.25 12.58 +62 4 24 5.71 5.46 5.29 2.04 4.08 2.33 5.79 4.92 3.46 4.50 11.75 5.63 +62 4 25 4.04 8.29 4.08 2.04 4.54 3.79 5.83 9.17 4.00 6.25 19.00 11.54 +62 4 26 3.58 2.75 4.63 1.13 2.96 2.42 7.67 3.04 3.58 6.87 7.71 7.79 +62 4 27 6.17 1.42 12.25 3.25 3.46 5.63 6.42 2.79 5.37 3.37 8.50 4.33 +62 4 28 4.75 2.92 10.08 2.71 3.21 3.29 5.17 3.00 4.50 3.17 9.17 2.21 +62 4 29 9.17 7.62 8.54 3.79 6.46 4.79 5.37 6.54 6.75 5.13 6.46 5.91 +62 4 30 6.58 9.71 8.79 4.71 6.08 5.46 5.41 5.63 5.75 4.67 6.92 2.58 +62 5 1 9.62 9.54 3.58 3.33 8.75 3.75 2.25 2.58 1.67 2.37 7.29 3.25 +62 5 2 9.83 11.17 5.46 4.33 9.75 4.42 4.00 5.09 3.54 4.79 6.79 5.29 +62 5 3 9.50 8.33 6.46 4.83 7.38 3.71 3.50 3.13 3.67 4.08 3.63 3.33 +62 5 4 5.54 8.21 8.50 3.46 5.17 1.75 5.83 0.54 2.62 3.42 5.71 3.37 +62 5 5 11.67 11.79 12.58 7.12 10.96 8.08 8.79 11.17 6.04 7.62 14.54 12.42 +62 5 6 14.25 8.38 14.96 6.04 6.63 4.75 4.88 7.41 5.13 7.29 15.09 5.63 +62 5 7 16.88 15.67 16.50 11.38 13.67 10.67 14.09 12.71 10.29 10.41 18.21 11.50 +62 5 8 12.75 11.04 13.08 8.17 9.96 6.71 11.34 9.13 6.29 8.87 14.83 8.17 +62 5 9 8.63 8.25 9.59 1.87 7.87 3.71 7.04 6.29 3.54 4.04 11.38 6.29 +62 5 10 14.92 11.79 9.21 4.08 10.92 5.88 5.96 4.58 3.42 4.04 5.71 8.00 +62 5 11 14.96 14.25 12.67 8.75 11.79 7.67 11.04 11.54 8.42 9.83 12.08 13.75 +62 5 12 16.25 12.62 15.41 10.79 12.50 9.25 10.46 12.08 10.92 13.00 12.29 14.54 +62 5 13 12.42 10.21 6.67 6.83 9.50 6.46 8.75 7.33 7.83 10.00 9.38 9.83 +62 5 14 17.58 9.46 11.04 10.00 13.25 9.21 13.79 11.08 10.17 10.46 10.63 14.79 +62 5 15 13.42 9.75 11.63 7.00 12.87 7.50 9.83 10.25 8.50 9.25 13.92 15.34 +62 5 16 20.17 16.42 16.08 14.62 23.50 16.00 23.25 19.95 20.00 20.04 23.42 32.17 +62 5 17 14.00 14.00 11.50 11.25 17.33 12.17 18.05 13.13 13.59 12.87 17.88 25.25 +62 5 18 14.75 12.17 10.96 7.29 10.79 6.54 11.21 8.08 5.96 8.63 11.54 10.37 +62 5 19 21.04 11.04 15.87 12.29 16.66 10.75 17.12 12.46 14.29 14.09 14.00 17.00 +62 5 20 17.21 13.67 15.50 7.96 13.29 9.33 12.42 8.58 9.96 10.34 12.50 14.09 +62 5 21 18.63 13.17 11.08 7.79 15.41 9.79 11.63 10.29 9.38 8.75 13.25 13.67 +62 5 22 16.96 15.04 12.42 11.67 18.66 13.13 16.00 13.59 13.50 15.83 18.91 16.38 +62 5 23 12.87 10.00 11.25 8.83 14.50 10.17 16.42 12.33 12.00 12.67 14.62 18.79 +62 5 24 10.13 9.33 7.21 7.08 9.29 6.21 11.67 10.21 8.75 12.83 11.04 18.41 +62 5 25 9.59 10.79 17.67 6.83 9.79 6.34 8.00 10.25 7.38 11.08 12.92 18.46 +62 5 26 5.91 8.79 17.04 5.83 8.08 4.42 7.46 8.50 4.67 6.92 14.42 13.75 +62 5 27 6.13 7.62 19.87 7.50 8.04 5.91 9.92 7.92 6.50 8.12 12.50 10.46 +62 5 28 10.58 8.75 10.17 7.96 8.00 4.00 6.83 7.38 6.21 7.46 9.42 11.54 +62 5 29 11.34 9.25 7.62 5.63 10.17 5.79 6.75 9.50 6.34 9.83 10.96 13.88 +62 5 30 6.71 7.87 6.42 4.54 7.46 4.08 7.17 6.42 6.54 9.33 8.00 16.79 +62 5 31 10.88 8.46 20.12 6.58 7.92 5.33 7.83 8.12 6.79 9.83 9.17 14.09 +62 6 1 5.88 6.29 8.67 5.21 5.00 4.25 5.91 5.41 4.79 9.25 5.25 10.71 +62 6 2 4.96 4.63 5.75 2.58 3.92 1.08 3.17 2.79 2.42 1.29 4.12 5.66 +62 6 3 5.58 10.37 4.96 2.29 7.17 3.08 3.00 5.41 3.46 4.17 7.67 9.46 +62 6 4 8.79 11.67 4.04 5.46 10.92 6.00 3.33 8.92 4.50 7.21 7.04 8.71 +62 6 5 10.00 12.12 7.67 6.71 12.75 6.79 8.21 11.67 8.00 10.08 13.17 14.79 +62 6 6 7.67 10.83 4.50 5.37 10.63 6.79 6.08 10.29 5.96 7.54 15.34 9.79 +62 6 7 5.17 7.00 4.00 4.83 6.75 5.71 3.83 5.21 3.58 4.58 12.25 5.50 +62 6 8 2.54 4.29 5.71 2.92 4.67 3.46 5.41 5.83 4.63 5.50 8.79 4.29 +62 6 9 6.87 5.50 6.54 3.79 4.50 4.04 8.29 4.29 5.37 6.00 9.04 13.04 +62 6 10 8.87 5.25 9.08 4.58 4.54 5.29 6.50 5.04 5.33 8.79 6.96 11.34 +62 6 11 8.08 7.87 9.13 4.42 8.83 4.79 7.96 9.59 6.17 8.17 12.96 8.63 +62 6 12 10.54 5.37 12.92 4.21 7.46 5.83 9.08 7.17 6.79 8.08 8.58 11.92 +62 6 13 9.46 13.96 11.71 7.29 10.50 7.96 9.62 14.04 7.92 11.63 23.29 16.75 +62 6 14 14.71 13.21 16.17 8.25 17.33 11.38 14.00 16.62 13.67 17.50 24.41 26.71 +62 6 15 1.00 5.09 6.46 1.21 5.25 4.04 2.79 8.08 6.21 7.12 13.50 11.54 +62 6 16 5.75 5.50 8.08 3.67 7.71 4.42 8.42 7.58 7.38 8.00 13.17 15.37 +62 6 17 13.83 15.59 10.21 8.63 14.54 9.59 10.37 10.67 10.63 9.29 14.04 13.83 +62 6 18 22.13 21.04 22.54 16.50 23.50 14.12 21.50 21.92 18.96 21.79 29.79 26.58 +62 6 19 18.38 15.12 18.91 15.09 23.04 16.38 23.42 18.84 20.25 18.91 25.62 28.38 +62 6 20 11.42 9.71 12.75 6.25 8.83 6.25 12.54 10.21 9.42 10.71 14.33 19.70 +62 6 21 17.58 16.42 19.83 11.67 15.34 10.96 16.04 15.71 12.58 15.87 18.79 19.55 +62 6 22 13.33 10.13 12.96 8.67 15.79 10.13 13.67 11.38 13.29 12.92 18.75 23.71 +62 6 23 11.71 16.21 13.33 10.04 15.75 11.79 16.66 15.04 13.54 14.50 24.46 23.04 +62 6 24 19.67 13.67 14.09 12.21 17.71 14.88 25.29 19.00 19.62 20.41 20.30 27.46 +62 6 25 11.08 7.92 10.50 8.71 15.12 11.21 18.79 13.25 15.12 13.21 16.83 23.54 +62 6 26 15.34 10.63 10.92 8.75 10.96 9.38 14.33 11.08 11.08 13.79 11.38 18.88 +62 6 27 9.00 4.75 7.92 6.08 7.83 6.13 11.92 8.50 8.96 10.75 9.96 16.54 +62 6 28 12.54 6.50 9.25 8.21 11.71 8.71 12.79 10.50 11.87 10.67 11.00 7.33 +62 6 29 10.79 8.54 6.96 6.67 7.75 5.09 6.42 7.83 7.75 9.17 6.42 11.38 +62 6 30 6.50 5.13 4.33 5.13 5.54 3.71 7.12 7.33 6.63 8.71 5.50 12.42 +62 7 1 8.67 4.17 6.92 6.71 8.17 5.66 11.17 9.38 8.75 11.12 10.25 17.08 +62 7 2 14.67 6.67 9.54 10.21 13.67 10.58 17.50 13.00 12.38 15.09 12.42 18.63 +62 7 3 15.83 10.29 10.00 9.59 10.34 7.21 12.87 8.58 10.58 13.25 8.21 16.71 +62 7 4 15.96 10.25 9.21 7.29 11.71 7.62 10.08 10.71 8.71 12.46 13.59 16.25 +62 7 5 11.21 8.58 7.25 6.75 7.41 6.63 7.79 8.96 8.17 12.38 10.50 14.79 +62 7 6 8.04 4.29 6.13 3.17 4.12 2.58 5.46 2.25 4.71 5.17 5.96 5.71 +62 7 7 6.38 8.92 6.96 4.00 5.29 3.54 3.13 4.21 2.17 4.38 10.71 5.09 +62 7 8 8.96 11.38 7.25 5.46 10.58 5.66 4.67 8.96 6.42 6.83 10.21 9.08 +62 7 9 12.58 8.46 6.75 6.00 10.25 5.04 4.63 9.67 9.33 9.79 11.58 15.12 +62 7 10 6.96 5.46 8.92 5.17 8.58 5.37 7.50 10.63 8.58 10.37 9.50 16.96 +62 7 11 8.63 7.75 3.42 2.75 6.13 2.88 5.71 5.83 4.42 7.04 10.58 11.83 +62 7 12 7.58 5.37 7.33 3.92 2.88 2.04 4.75 1.04 1.71 4.50 4.79 6.21 +62 7 13 10.54 11.75 7.92 6.04 11.04 6.50 5.54 8.83 5.54 6.13 8.96 6.71 +62 7 14 5.88 6.42 9.59 4.25 7.25 5.71 8.00 9.71 9.33 8.46 11.12 12.38 +62 7 15 4.17 4.08 16.54 3.75 3.25 3.79 5.79 3.58 4.50 5.04 7.79 4.88 +62 7 16 6.29 4.79 6.00 2.21 6.17 1.75 1.87 0.96 0.37 3.13 5.41 2.29 +62 7 17 12.92 10.54 5.46 6.25 11.29 6.63 4.54 8.83 5.66 9.04 9.33 11.42 +62 7 18 18.88 16.62 15.67 11.00 16.25 12.96 12.33 14.92 11.96 14.92 19.38 20.83 +62 7 19 16.04 15.41 16.21 10.21 18.54 12.08 13.04 15.96 12.87 17.33 23.13 20.08 +62 7 20 7.92 11.00 10.29 8.33 10.00 6.83 9.17 13.67 6.42 12.33 20.38 17.75 +62 7 21 16.33 16.04 13.33 11.08 17.67 11.58 12.96 11.75 11.34 9.59 15.54 5.91 +62 7 22 12.42 9.54 10.75 9.96 15.34 9.17 11.29 8.54 10.08 9.25 9.21 12.21 +62 7 23 3.08 6.17 6.38 1.96 4.42 2.00 5.88 2.96 2.58 4.92 7.54 6.54 +62 7 24 10.04 6.34 8.67 2.62 7.08 2.46 4.38 3.17 2.88 5.58 4.67 8.17 +62 7 25 9.38 7.58 21.46 6.87 7.12 5.13 6.34 8.08 6.13 6.87 11.79 10.92 +62 7 26 10.79 10.75 25.12 10.13 9.00 6.63 10.00 8.92 7.29 9.54 12.04 6.34 +62 7 27 4.75 2.67 5.75 2.50 2.62 0.25 3.67 2.96 0.46 2.04 4.67 4.63 +62 7 28 4.50 4.08 5.25 2.33 3.42 2.29 2.88 6.34 3.13 4.83 7.71 5.50 +62 7 29 8.83 8.12 8.96 4.71 7.83 4.58 6.58 7.46 5.54 5.21 9.79 6.00 +62 7 30 14.17 9.00 11.25 8.21 14.12 9.71 12.17 12.04 10.04 11.50 14.58 18.63 +62 7 31 7.04 7.00 8.08 5.46 10.96 7.33 9.54 9.92 9.67 8.92 12.96 16.46 +62 8 1 4.58 5.37 6.04 2.29 7.87 3.71 4.46 2.58 4.00 4.79 7.21 7.46 +62 8 2 7.46 8.75 6.00 4.71 10.29 6.75 8.38 7.83 6.79 7.38 10.83 9.21 +62 8 3 16.04 11.75 11.54 8.79 10.75 6.71 8.42 9.42 7.46 8.63 11.79 13.62 +62 8 4 9.83 7.58 9.17 5.75 10.29 7.00 14.25 11.08 9.54 11.25 15.09 20.30 +62 8 5 5.88 4.50 7.83 4.25 8.92 6.54 10.75 7.71 7.87 9.59 9.92 19.46 +62 8 6 11.46 8.83 6.75 4.08 6.42 3.63 5.63 7.00 3.63 7.12 11.08 13.75 +62 8 7 14.50 9.29 10.13 7.92 10.67 7.08 10.50 7.25 8.79 9.83 11.12 12.83 +62 8 8 8.87 6.96 9.25 3.42 5.75 4.08 7.12 4.71 5.41 4.88 9.29 10.75 +62 8 9 14.67 11.71 14.96 10.34 14.62 10.00 12.25 12.04 10.75 13.79 19.04 21.79 +62 8 10 13.25 13.50 13.88 9.29 12.54 9.75 14.29 13.88 11.54 13.21 18.79 17.08 +62 8 11 16.92 15.16 16.46 13.00 18.12 12.96 18.50 17.25 17.92 17.37 24.08 29.95 +62 8 12 2.88 4.92 4.96 2.83 5.91 3.50 9.38 5.88 5.75 8.63 7.92 13.67 +62 8 13 10.04 5.25 12.04 4.29 5.75 2.29 5.88 4.58 6.08 3.08 5.50 6.92 +62 8 14 12.00 10.25 11.83 4.63 10.29 4.25 8.67 9.29 9.00 9.92 10.67 12.92 +62 8 15 10.79 10.46 8.08 7.41 12.17 6.83 10.41 8.46 8.58 6.50 11.46 13.21 +62 8 16 11.17 8.25 10.21 6.04 10.96 5.88 11.38 6.79 7.54 7.50 11.50 12.87 +62 8 17 8.21 6.58 8.71 4.71 10.58 6.83 11.25 7.83 6.75 7.08 8.83 10.92 +62 8 18 6.87 10.79 9.21 5.00 7.17 5.63 7.54 5.58 5.17 5.91 12.25 7.29 +62 8 19 14.17 13.62 13.59 9.83 10.79 8.54 10.50 11.67 9.33 11.08 18.63 13.70 +62 8 20 14.29 12.62 12.54 7.38 14.12 7.96 11.25 11.54 8.58 8.75 14.88 10.92 +62 8 21 14.67 12.38 13.37 9.54 15.46 10.34 14.21 14.50 12.42 11.83 17.75 20.75 +62 8 22 11.25 10.96 11.17 8.87 12.92 10.17 15.09 12.33 11.87 12.46 16.13 23.63 +62 8 23 18.84 14.79 17.33 9.25 14.25 10.00 17.04 14.04 11.75 14.25 20.67 21.67 +62 8 24 15.12 14.29 11.50 11.71 17.25 12.96 21.09 15.75 15.96 14.54 19.79 26.87 +62 8 25 13.25 11.54 10.88 8.33 12.17 8.63 15.50 11.04 10.67 11.12 16.50 21.75 +62 8 26 24.67 20.12 19.83 17.75 20.88 15.96 22.13 18.08 19.41 19.75 23.63 19.46 +62 8 27 10.00 8.67 9.83 6.54 9.92 7.25 14.29 7.41 9.83 10.50 10.63 17.25 +62 8 28 6.04 7.04 4.92 2.08 4.71 3.17 5.54 2.29 3.04 4.58 5.63 11.21 +62 8 29 4.83 3.88 5.29 1.87 1.92 1.92 7.75 4.50 3.75 7.29 10.37 15.34 +62 8 30 0.96 2.33 4.17 2.21 4.38 3.83 6.42 5.04 5.00 6.46 9.42 13.96 +62 8 31 6.38 8.38 4.25 3.63 6.58 3.13 5.37 4.67 3.83 5.79 6.29 7.54 +62 9 1 10.00 12.08 10.96 9.25 9.29 7.62 7.41 8.75 7.67 9.62 14.58 11.92 +62 9 2 3.83 7.67 10.37 5.13 4.46 1.21 5.00 5.88 1.25 4.29 12.75 6.17 +62 9 3 11.08 11.50 11.38 6.29 7.87 6.67 6.17 4.92 4.92 6.46 12.33 5.04 +62 9 4 13.25 9.71 12.33 5.66 11.42 6.50 6.46 6.08 5.37 6.54 7.29 4.46 +62 9 5 5.41 5.25 7.96 3.58 4.92 3.58 7.50 2.25 3.33 5.13 5.25 9.21 +62 9 6 10.92 8.92 10.08 4.75 8.29 2.21 5.25 8.04 2.88 7.17 14.54 12.08 +62 9 7 12.83 11.00 10.79 8.46 13.13 10.13 11.63 10.79 11.38 11.25 13.25 21.00 +62 9 8 10.46 11.63 9.67 6.46 10.34 6.29 8.04 6.46 5.96 7.41 9.50 11.42 +62 9 9 16.83 15.87 20.12 13.13 17.21 13.13 18.79 14.50 13.79 16.54 17.33 15.71 +62 9 10 9.59 10.63 11.87 4.88 8.63 7.00 9.59 3.13 4.46 4.63 8.42 8.38 +62 9 11 18.96 10.92 15.59 6.29 9.87 6.00 8.38 8.04 5.25 7.58 15.63 13.75 +62 9 12 12.67 9.67 9.71 5.79 10.75 5.58 7.54 8.17 5.71 8.67 12.67 15.67 +62 9 13 7.96 8.42 6.29 4.21 9.46 4.96 6.13 4.83 3.17 5.29 6.92 6.04 +62 9 14 11.25 10.34 12.04 6.34 12.21 6.50 7.25 9.71 7.46 11.50 16.21 16.29 +62 9 15 10.29 8.08 7.17 5.21 10.25 4.79 7.92 6.29 7.46 7.33 11.63 13.79 +62 9 16 13.46 10.63 10.04 7.92 12.67 9.04 11.75 10.54 11.08 9.71 14.79 18.05 +62 9 17 11.34 8.75 10.79 6.54 9.17 7.17 10.58 6.38 7.79 11.34 11.96 17.75 +62 9 18 6.83 5.46 9.38 4.04 4.25 2.46 6.79 2.13 4.63 7.29 5.04 11.25 +62 9 19 6.46 4.71 12.42 1.67 4.42 0.83 2.88 1.04 2.13 1.75 3.17 3.00 +62 9 20 9.08 6.96 16.17 4.21 7.33 3.67 4.63 1.42 2.04 3.37 2.79 0.67 +62 9 21 6.29 3.08 10.54 2.17 4.96 2.50 2.29 1.42 0.87 1.25 4.33 7.54 +62 9 22 4.88 5.25 6.29 2.21 5.88 4.33 6.58 6.08 4.29 7.50 14.29 16.21 +62 9 23 9.25 10.67 9.62 3.75 10.54 6.38 8.33 11.67 6.58 12.54 19.67 16.96 +62 9 24 8.54 9.13 8.50 4.12 9.00 4.79 4.88 4.50 4.29 5.21 6.25 8.50 +62 9 25 12.62 9.33 12.62 6.54 8.67 6.08 10.83 6.87 5.58 7.58 12.12 12.04 +62 9 26 12.00 6.63 12.54 6.75 8.17 4.50 12.00 4.67 8.71 9.00 5.33 17.00 +62 9 27 9.59 10.21 12.17 5.91 10.71 7.38 8.42 6.17 6.13 7.96 6.42 13.75 +62 9 28 11.42 9.54 10.46 7.29 13.75 8.87 11.29 9.00 9.25 10.71 13.83 12.71 +62 9 29 21.37 16.75 18.38 11.50 17.67 12.50 13.79 14.00 13.13 14.58 19.92 20.04 +62 9 30 26.83 16.42 22.95 14.88 16.38 13.75 16.54 16.88 14.62 19.38 26.30 23.00 +62 10 1 14.58 7.83 19.21 10.08 11.54 8.38 13.29 10.63 8.21 12.92 18.05 18.12 +62 10 2 8.79 5.58 8.67 3.21 9.42 6.00 7.12 7.83 6.58 9.33 15.79 13.83 +62 10 3 9.96 12.29 8.25 3.63 10.34 7.87 7.33 10.46 6.42 10.34 20.08 16.58 +62 10 4 21.50 16.75 18.88 12.54 17.41 13.92 11.54 15.50 13.79 16.00 25.84 24.04 +62 10 5 5.83 10.37 7.79 4.58 8.42 6.34 8.29 10.92 6.21 9.33 16.88 13.46 +62 10 6 9.59 11.08 8.25 4.88 10.08 6.87 6.25 9.54 5.46 8.96 17.46 12.38 +62 10 7 12.12 14.25 8.79 8.50 14.00 9.25 8.04 9.79 8.46 10.88 15.87 13.88 +62 10 8 7.71 7.54 9.00 6.29 8.92 6.00 8.46 6.13 6.13 7.79 7.08 9.17 +62 10 9 5.63 0.87 6.38 1.38 5.46 2.37 4.88 3.00 2.67 4.75 2.58 6.58 +62 10 10 5.91 1.58 7.04 1.71 2.83 1.67 4.83 2.29 4.54 6.04 2.54 10.71 +62 10 11 14.96 9.17 8.00 2.04 7.12 2.75 7.79 7.38 8.42 7.62 7.83 8.33 +62 10 12 11.67 6.08 11.67 3.13 6.29 2.13 4.96 4.12 4.08 5.96 5.00 6.38 +62 10 13 5.13 1.42 10.79 2.79 2.13 0.04 2.50 0.25 0.87 2.71 2.67 7.75 +62 10 14 3.04 1.63 3.37 1.00 3.00 0.37 4.88 0.46 1.04 5.04 6.08 9.25 +62 10 15 3.42 2.54 2.50 0.25 1.87 0.79 3.92 0.42 2.00 5.17 6.38 11.67 +62 10 16 3.08 2.75 1.96 0.67 1.96 0.92 4.38 3.88 0.50 3.83 11.71 8.50 +62 10 17 2.04 3.79 3.67 1.21 3.17 2.37 6.29 6.87 3.67 8.33 15.50 14.83 +62 10 18 4.88 2.42 5.25 3.29 5.75 5.83 11.63 7.83 7.21 8.29 14.83 18.12 +62 10 19 6.38 1.71 7.00 3.04 5.21 2.88 5.58 2.37 4.38 6.13 4.96 8.42 +62 10 20 8.38 5.63 9.46 2.46 4.42 2.71 3.79 3.88 4.46 4.96 6.38 5.04 +62 10 21 12.00 7.62 11.58 3.13 8.08 5.09 6.34 7.71 4.12 7.83 9.13 6.92 +62 10 22 4.96 4.67 8.33 1.67 4.17 2.13 4.92 0.79 2.21 6.13 7.12 7.17 +62 10 23 1.50 3.75 3.50 0.67 3.29 3.54 6.54 7.83 4.46 8.00 12.79 11.34 +62 10 24 8.96 11.83 10.46 4.63 9.59 7.50 8.50 11.75 6.79 12.50 20.46 16.75 +62 10 25 13.13 12.87 11.21 7.92 12.04 8.96 11.79 11.38 9.79 14.17 19.21 21.71 +62 10 26 14.04 8.54 18.79 8.29 8.38 7.62 11.04 6.25 7.50 9.83 12.25 15.79 +62 10 27 15.16 15.41 12.92 8.25 17.00 11.12 15.63 15.67 14.04 15.67 24.83 25.75 +62 10 28 19.95 14.17 14.09 12.62 14.09 10.75 15.92 13.54 14.37 16.04 19.17 28.12 +62 10 29 12.92 10.79 13.13 5.79 10.96 9.21 11.96 8.71 8.46 10.83 15.79 18.00 +62 10 30 18.25 22.79 11.75 10.67 20.79 11.67 20.75 17.29 16.46 14.58 29.42 29.17 +62 10 31 15.21 12.25 8.38 9.04 13.67 10.58 12.75 11.96 12.25 11.87 18.21 19.04 +62 11 1 16.88 13.25 16.00 8.96 13.46 11.46 10.46 10.17 10.37 13.21 14.83 15.16 +62 11 2 15.96 8.46 13.70 6.13 7.71 7.67 6.04 5.83 4.75 5.83 6.46 9.04 +62 11 3 5.21 3.75 6.17 3.37 8.08 3.88 6.83 1.08 2.79 3.63 5.13 7.00 +62 11 4 13.75 7.29 15.67 7.41 11.54 8.67 10.92 8.29 9.96 12.96 11.58 17.62 +62 11 5 16.08 6.50 18.91 7.96 7.71 9.62 19.75 6.00 11.79 16.54 9.62 23.87 +62 11 6 12.17 8.08 12.46 6.17 7.92 6.79 8.29 8.71 6.75 8.25 9.67 11.71 +62 11 7 2.96 4.33 5.04 2.50 4.71 2.88 3.50 2.79 2.37 3.46 3.13 4.92 +62 11 8 4.12 3.25 11.08 3.42 5.00 3.21 4.42 2.04 2.54 3.04 2.96 3.00 +62 11 9 12.42 13.62 23.63 8.50 9.87 9.04 12.58 9.29 8.25 11.75 14.12 15.96 +62 11 10 11.25 6.79 22.71 9.50 10.67 10.71 16.25 11.42 11.92 11.87 10.34 22.08 +62 11 11 12.04 6.42 16.58 5.58 9.00 5.46 14.75 9.13 7.71 8.87 8.58 11.46 +62 11 12 7.29 5.29 10.58 3.33 4.25 2.62 5.50 2.75 2.67 5.17 4.00 4.50 +62 11 13 7.79 1.75 7.83 2.83 4.04 2.08 7.29 1.67 3.17 5.21 8.63 11.21 +62 11 14 13.62 11.29 11.04 7.96 13.79 10.25 13.70 11.54 11.29 13.62 17.46 25.62 +62 11 15 10.46 8.54 9.13 6.54 6.92 5.29 9.42 4.54 4.83 6.92 12.29 12.87 +62 11 16 14.83 13.75 10.75 5.25 11.12 8.50 10.41 8.12 8.79 10.29 15.67 15.54 +62 11 17 24.96 21.59 19.83 16.04 16.66 13.08 18.00 15.37 14.79 19.12 21.00 31.34 +62 11 18 23.63 15.09 24.62 15.83 13.96 10.17 16.46 10.50 11.34 14.62 22.29 30.34 +62 11 19 10.41 4.46 13.83 6.54 6.46 6.38 10.37 1.96 6.87 6.75 9.38 14.09 +62 11 20 10.79 12.71 13.67 6.25 8.46 9.13 10.54 9.13 8.63 8.00 9.83 10.46 +62 11 21 7.67 5.00 13.21 3.88 3.25 4.08 8.42 1.00 4.58 4.96 2.50 6.54 +62 11 22 5.13 5.13 5.88 1.87 6.75 6.38 8.38 4.08 2.96 4.92 9.33 8.79 +62 11 23 11.29 12.08 11.63 6.00 11.83 10.34 12.96 12.83 10.13 12.08 15.21 11.83 +62 11 24 20.50 15.21 15.04 11.79 15.50 11.67 11.17 11.96 9.96 11.75 16.58 16.79 +62 11 25 5.88 5.13 5.63 2.50 5.33 3.50 4.00 2.54 2.17 3.04 4.63 6.00 +62 11 26 4.00 2.21 3.21 0.21 2.33 1.00 5.96 0.00 0.83 0.92 2.75 8.42 +62 11 27 4.88 2.67 7.83 3.04 2.37 0.46 5.09 0.00 1.75 1.87 2.46 8.33 +62 11 28 6.17 1.50 6.04 1.63 2.46 0.33 4.88 1.00 1.58 3.04 6.34 12.75 +62 11 29 7.17 4.38 3.58 0.21 3.54 0.21 7.41 0.17 2.96 7.21 9.04 13.13 +62 11 30 12.83 10.00 5.79 1.00 9.38 5.29 4.71 4.38 2.37 3.63 7.79 8.58 +62 12 1 18.38 15.41 11.75 6.79 12.21 8.04 8.42 10.83 5.66 9.08 11.50 11.50 +62 12 2 17.41 18.38 14.71 10.41 16.21 10.17 12.96 9.62 10.00 10.34 14.96 18.21 +62 12 3 17.33 16.13 13.88 8.87 14.04 12.38 10.13 9.75 9.71 10.79 13.96 17.50 +62 12 4 13.62 13.33 10.75 6.46 13.62 10.37 4.79 10.75 6.87 9.04 10.46 13.62 +62 12 5 15.46 16.42 13.00 7.71 10.83 9.96 8.96 7.00 7.83 8.29 18.41 18.58 +62 12 6 13.17 11.67 11.25 7.46 9.92 7.87 4.17 8.38 6.13 8.58 17.21 16.17 +62 12 7 25.46 17.50 22.34 16.21 15.34 12.75 13.13 14.67 9.96 13.96 23.21 24.50 +62 12 8 23.29 18.00 21.59 17.12 21.12 15.67 23.67 13.92 17.46 16.71 21.62 23.42 +62 12 9 23.33 18.88 10.75 16.71 20.12 14.42 20.25 14.79 19.00 17.21 21.04 28.54 +62 12 10 13.13 11.21 8.12 7.58 14.96 9.71 12.67 9.96 10.83 10.75 15.04 20.79 +62 12 11 17.92 15.87 11.63 9.13 17.37 12.21 16.42 12.46 12.29 12.17 19.92 19.46 +62 12 12 30.91 24.79 21.87 16.75 19.92 12.12 19.67 18.88 15.96 23.21 28.33 37.12 +62 12 13 17.16 11.12 15.09 8.42 10.63 8.46 14.00 9.50 10.41 13.70 14.75 23.00 +62 12 14 13.96 13.37 11.08 13.46 20.30 16.33 20.00 18.12 17.33 16.79 21.12 24.04 +62 12 15 29.38 18.46 17.58 24.33 29.46 22.83 28.91 26.67 25.80 28.21 29.25 32.79 +62 12 16 17.83 12.62 13.25 12.42 13.13 11.58 16.54 9.67 12.42 16.54 15.09 25.58 +62 12 17 13.37 11.96 6.46 4.42 12.17 7.83 9.59 8.42 7.08 8.04 14.29 13.92 +62 12 18 16.33 15.37 10.21 10.71 15.34 10.79 15.92 14.42 13.17 12.54 22.08 23.45 +62 12 19 11.25 9.75 8.25 4.79 11.04 8.21 9.87 7.67 8.79 10.58 14.17 16.54 +62 12 20 14.58 14.46 12.21 8.96 16.00 11.96 16.08 9.75 12.12 13.62 15.96 20.12 +62 12 21 5.75 5.17 6.38 2.29 7.54 5.17 10.41 3.50 6.13 6.25 9.87 11.46 +62 12 22 17.83 17.50 6.71 3.58 11.04 9.13 5.71 10.92 7.33 9.46 15.75 13.25 +62 12 23 13.25 11.29 12.21 6.54 11.12 8.96 9.33 9.46 8.12 11.04 15.41 18.12 +62 12 24 9.13 6.08 9.79 2.00 8.42 4.38 4.92 4.29 3.13 4.17 7.75 11.83 +62 12 25 8.00 2.58 8.75 1.79 1.00 0.75 7.00 0.75 2.33 3.67 6.96 12.46 +62 12 26 12.87 5.66 10.08 5.00 8.38 6.50 12.38 6.50 7.25 9.67 11.08 17.29 +62 12 27 13.62 12.96 19.83 8.42 5.66 4.92 11.92 7.21 6.58 5.88 7.67 16.79 +62 12 28 12.67 10.71 17.75 6.83 7.75 4.42 7.79 4.92 5.71 2.96 3.83 7.87 +62 12 29 19.29 13.13 22.79 7.17 11.00 6.54 13.62 8.00 7.21 9.25 9.33 16.88 +62 12 30 22.00 19.70 33.84 19.83 20.08 18.46 28.79 21.59 18.75 18.05 21.87 29.88 +62 12 31 22.67 16.88 28.67 14.12 19.75 17.08 27.79 25.21 19.83 17.79 25.46 37.63 +63 1 1 15.59 13.62 19.79 8.38 12.25 10.00 23.45 15.71 13.59 14.37 17.58 34.13 +63 1 2 13.00 13.92 21.50 6.63 10.67 8.54 20.75 11.46 10.75 14.09 12.83 30.75 +63 1 3 14.09 8.25 20.12 9.00 9.96 9.67 13.83 10.17 9.00 13.70 11.67 27.21 +63 1 4 10.29 1.54 6.67 5.21 6.08 5.13 8.54 8.21 5.91 11.17 11.54 25.54 +63 1 5 7.50 6.04 9.87 3.37 5.96 6.29 13.08 12.46 7.04 11.63 14.96 29.04 +63 1 6 19.70 13.75 19.33 10.46 16.96 12.12 20.91 15.67 13.17 12.71 19.08 24.54 +63 1 7 18.75 18.12 18.29 8.92 16.17 12.46 16.75 11.71 9.87 11.92 14.21 19.58 +63 1 8 20.67 18.79 17.67 7.33 20.41 13.50 16.83 12.83 9.67 12.83 15.34 17.41 +63 1 9 26.30 20.04 25.66 14.96 24.00 16.04 21.67 19.95 16.00 14.58 18.54 25.88 +63 1 10 25.58 19.75 24.00 10.41 20.25 12.00 19.38 16.71 12.25 12.33 17.37 26.58 +63 1 11 18.84 10.58 16.79 4.25 10.75 6.42 9.79 8.79 5.41 7.46 8.17 10.17 +63 1 12 10.04 10.34 8.54 2.08 4.54 1.25 3.96 2.25 2.29 1.58 2.62 4.54 +63 1 13 10.00 9.00 7.25 1.87 2.50 0.75 5.21 2.79 2.37 2.50 3.00 9.46 +63 1 14 11.92 6.83 10.88 4.75 4.33 2.25 10.46 6.54 5.04 6.00 6.63 12.04 +63 1 15 8.50 3.17 5.41 3.83 7.50 4.63 9.17 5.66 5.88 6.83 9.46 12.58 +63 1 16 11.54 9.71 11.38 5.41 8.21 8.21 12.58 10.58 8.83 11.04 12.54 21.25 +63 1 17 20.33 12.67 22.42 10.71 14.21 10.63 15.37 12.75 8.92 10.63 11.46 10.71 +63 1 18 28.21 16.79 27.21 11.38 16.29 13.83 21.50 13.96 13.13 13.67 17.21 25.80 +63 1 19 22.21 15.12 32.25 12.04 19.62 13.42 23.79 17.46 15.50 15.59 14.17 27.75 +63 1 20 19.00 14.25 20.91 11.00 18.50 15.63 19.62 18.88 15.87 14.50 23.04 32.83 +63 1 21 19.25 16.08 17.21 9.17 15.59 9.42 13.83 11.71 11.08 14.25 12.96 23.04 +63 1 22 17.16 12.04 14.33 6.13 13.62 10.50 11.92 8.75 4.58 7.87 10.79 13.79 +63 1 23 14.04 11.42 11.50 5.41 11.29 7.71 2.17 7.08 5.66 5.04 7.21 14.67 +63 1 24 7.04 6.17 8.46 1.79 6.13 3.96 3.04 2.62 2.13 0.46 8.79 12.21 +63 1 25 6.00 2.83 2.75 1.42 4.17 1.71 8.92 2.33 2.04 4.54 4.75 11.08 +63 1 26 7.67 3.75 7.17 1.38 0.92 0.25 8.38 2.08 2.29 4.79 0.13 8.29 +63 1 27 10.54 9.83 6.04 0.67 7.12 2.29 1.63 5.50 1.33 1.92 5.37 5.71 +63 1 28 7.50 6.34 3.37 0.92 5.25 1.08 1.33 1.71 0.29 1.38 1.96 5.37 +63 1 29 5.41 3.25 4.83 1.50 5.17 2.88 7.41 4.12 3.08 4.71 10.17 15.41 +63 1 30 21.42 21.84 25.21 15.46 17.29 13.54 19.62 17.00 14.04 17.83 21.87 27.50 +63 1 31 12.83 8.67 21.96 9.87 7.79 6.79 11.83 7.75 6.08 9.17 8.87 18.63 +63 2 1 15.41 7.62 24.67 11.42 9.21 8.17 14.04 7.54 7.54 10.08 10.17 17.67 +63 2 2 15.04 14.37 26.34 10.71 12.71 8.33 15.16 11.08 9.42 9.46 9.25 15.25 +63 2 3 11.12 4.00 9.87 4.92 5.91 4.00 8.67 4.42 5.00 6.87 5.79 13.79 +63 2 4 12.17 15.46 7.83 4.21 15.67 10.54 9.13 12.83 6.92 8.08 15.92 12.83 +63 2 5 12.62 11.46 28.75 13.13 12.58 12.83 22.00 15.29 15.41 17.41 16.79 29.17 +63 2 6 17.79 9.42 22.67 11.12 14.00 14.79 20.25 15.16 14.79 20.04 15.83 31.00 +63 2 7 11.87 7.75 10.54 7.21 7.92 7.83 11.83 5.54 6.58 7.50 8.71 18.34 +63 2 8 11.87 12.17 13.13 8.54 11.71 9.71 10.37 8.63 6.34 5.66 12.25 11.75 +63 2 9 14.83 9.75 23.33 12.33 13.25 13.67 16.88 14.58 12.67 13.21 13.75 15.37 +63 2 10 19.33 12.71 19.67 10.00 14.33 11.63 15.67 14.29 13.17 12.71 12.33 20.71 +63 2 11 7.71 4.88 11.63 3.63 7.12 4.17 6.79 5.71 4.79 5.29 5.00 11.92 +63 2 12 7.17 2.96 5.79 4.33 4.08 0.13 5.21 1.63 2.42 1.79 7.29 5.09 +63 2 13 18.91 20.12 16.54 10.75 18.00 13.70 12.83 14.79 12.96 16.42 19.58 23.54 +63 2 14 17.41 14.58 19.04 14.50 16.17 12.71 19.17 13.70 14.17 19.33 16.25 29.88 +63 2 15 10.04 10.63 15.92 6.87 12.33 9.21 15.50 13.79 10.63 15.79 14.83 24.25 +63 2 16 12.38 7.71 13.88 7.71 14.21 7.58 13.54 14.29 11.63 12.38 15.50 23.09 +63 2 17 12.46 14.67 12.46 5.33 11.12 6.96 7.83 8.33 6.63 7.33 11.63 13.70 +63 2 18 21.12 17.54 17.08 8.75 17.67 10.67 10.34 11.58 7.92 8.00 13.92 9.50 +63 2 19 16.83 9.79 18.34 9.87 13.42 8.67 14.54 10.04 8.71 9.17 9.75 8.12 +63 2 20 11.75 1.92 14.71 7.54 8.33 4.33 9.92 7.21 7.33 6.04 6.87 8.17 +63 2 21 5.58 2.92 4.67 3.58 4.58 2.17 8.50 1.50 1.42 3.17 5.46 4.54 +63 2 22 4.08 5.58 2.71 1.38 7.33 3.17 5.50 4.42 2.29 4.04 7.33 11.21 +63 2 23 18.58 16.66 14.46 7.04 13.79 10.83 9.33 11.50 6.42 7.67 10.92 13.59 +63 2 24 17.67 20.17 14.37 11.42 17.37 13.67 13.75 13.04 9.42 10.37 19.75 16.79 +63 2 25 19.75 18.88 15.96 13.13 21.17 13.33 11.46 14.79 12.92 12.50 21.59 23.58 +63 2 26 22.83 22.21 20.67 14.17 22.63 16.88 19.25 19.70 15.04 15.12 27.42 30.37 +63 2 27 17.62 16.66 15.50 7.87 15.71 13.00 12.50 12.42 8.58 10.83 16.96 14.54 +63 2 28 19.79 19.95 19.00 9.67 18.54 16.13 16.46 15.25 10.37 13.70 20.62 21.62 +63 3 1 16.75 19.67 17.67 8.87 19.08 15.37 16.21 14.29 11.29 9.21 19.92 19.79 +63 3 2 16.79 15.54 19.83 10.54 15.96 13.70 15.83 14.50 10.54 12.00 18.41 19.25 +63 3 3 12.83 15.83 14.50 7.62 13.70 11.54 14.46 12.25 9.17 9.92 15.34 17.37 +63 3 4 20.08 18.96 18.34 14.58 18.79 15.67 14.42 17.67 14.54 17.41 21.54 21.59 +63 3 5 27.46 22.67 25.08 20.00 21.46 19.95 20.21 23.13 17.21 25.37 32.63 30.09 +63 3 6 16.96 15.21 18.46 12.83 13.92 10.75 9.96 12.33 8.63 12.96 11.54 12.96 +63 3 7 20.58 18.54 19.83 15.29 18.08 13.92 17.88 16.62 15.59 18.84 17.46 17.33 +63 3 8 24.33 20.79 23.50 18.12 22.04 19.12 17.50 18.29 16.21 21.34 19.21 22.17 +63 3 9 18.75 11.54 17.50 11.38 14.00 9.71 13.33 12.38 8.75 13.67 11.75 18.38 +63 3 10 13.13 9.59 13.21 9.42 13.70 11.46 17.33 11.92 14.29 11.67 12.71 11.25 +63 3 11 8.38 3.37 11.79 4.88 5.54 2.92 5.66 2.62 2.88 3.50 3.67 5.37 +63 3 12 5.21 5.29 5.75 0.87 3.29 1.87 6.67 1.67 2.04 3.04 3.17 4.54 +63 3 13 20.79 18.00 16.29 11.12 15.63 12.29 11.46 13.50 10.75 12.29 15.37 17.92 +63 3 14 25.84 17.25 24.71 20.50 16.33 14.54 13.92 16.25 15.87 18.91 19.58 15.46 +63 3 15 15.09 9.92 17.79 11.92 14.58 11.83 14.25 10.83 11.79 14.54 13.92 14.09 +63 3 16 18.25 13.79 18.25 10.67 16.75 12.38 16.62 13.37 14.42 13.83 13.83 15.75 +63 3 17 16.96 10.79 16.54 10.37 12.50 10.37 13.17 11.34 10.21 13.42 12.21 18.79 +63 3 18 14.25 8.46 9.25 9.38 12.33 10.21 12.42 10.41 10.67 12.08 10.50 16.25 +63 3 19 11.00 11.96 9.04 4.75 11.87 6.92 9.54 9.04 7.21 7.21 10.21 7.41 +63 3 20 11.29 8.63 11.21 6.34 9.54 5.46 7.54 7.58 5.79 8.21 6.21 4.83 +63 3 21 4.38 5.66 5.71 1.04 5.83 1.29 4.33 2.13 1.25 3.17 5.17 5.13 +63 3 22 7.54 2.62 13.42 3.50 5.66 3.67 4.17 3.04 2.50 2.96 5.71 3.21 +63 3 23 6.34 8.04 4.88 1.63 6.42 3.88 4.79 7.75 3.04 6.67 14.96 10.25 +63 3 24 26.25 22.37 20.79 14.33 18.50 16.66 19.75 19.95 14.17 18.84 27.16 23.04 +63 3 25 15.54 12.38 14.00 11.96 17.25 14.37 19.55 15.09 16.88 16.17 16.92 15.63 +63 3 26 10.46 7.62 8.25 4.25 8.29 5.88 7.62 10.17 6.58 8.08 12.62 13.92 +63 3 27 12.83 12.21 12.33 8.08 12.54 9.54 13.92 10.79 11.12 12.58 15.50 17.29 +63 3 28 11.50 8.38 11.58 5.41 11.34 8.04 9.83 8.50 7.46 10.17 11.83 14.17 +63 3 29 7.54 8.87 5.33 5.00 10.96 6.13 8.67 8.12 5.41 4.83 9.71 3.08 +63 3 30 15.96 6.63 10.34 7.54 11.75 6.25 9.38 6.42 7.29 5.13 7.21 3.88 +63 3 31 7.41 9.83 8.00 5.13 8.87 7.04 6.83 9.62 6.87 8.96 17.50 17.92 +63 4 1 10.54 9.59 12.46 7.33 9.46 9.59 11.79 11.87 9.79 10.71 13.37 18.21 +63 4 2 3.88 3.13 5.04 3.75 5.46 4.50 8.96 6.50 7.41 6.54 7.08 11.79 +63 4 3 7.54 4.21 5.63 6.58 6.17 4.17 8.71 7.62 7.54 9.08 4.33 10.50 +63 4 4 12.71 9.04 16.83 8.83 10.88 9.00 13.00 10.54 9.79 13.67 13.33 20.71 +63 4 5 13.08 12.46 29.04 11.83 12.12 11.25 20.04 14.75 12.04 17.71 19.29 23.21 +63 4 6 13.50 11.42 25.25 12.83 15.92 16.00 20.50 19.95 17.62 18.25 21.75 32.96 +63 4 7 16.25 13.79 22.75 11.92 16.38 16.38 18.50 18.16 17.04 15.21 16.92 26.25 +63 4 8 9.83 9.46 12.25 5.96 11.08 7.92 10.41 12.50 11.04 12.42 10.50 20.38 +63 4 9 16.46 11.79 15.21 7.29 9.96 12.21 11.67 13.70 12.33 12.50 12.92 20.91 +63 4 10 4.75 4.42 13.59 5.25 7.83 6.79 7.25 8.00 6.34 8.54 11.38 8.83 +63 4 11 16.21 13.37 9.29 8.46 13.75 10.29 9.54 12.83 11.25 9.29 16.83 16.46 +63 4 12 11.12 10.13 11.79 8.38 13.13 11.00 16.00 12.08 12.71 16.00 19.62 24.79 +63 4 13 15.09 11.29 16.38 8.75 13.88 13.54 15.21 12.67 12.38 15.46 15.87 21.79 +63 4 14 19.12 15.54 18.96 11.04 15.16 13.33 16.46 11.29 11.54 13.79 13.70 14.75 +63 4 15 6.79 7.25 9.04 5.46 9.25 5.50 8.87 5.29 6.34 5.63 7.58 10.46 +63 4 16 15.54 15.71 14.62 8.92 14.25 10.63 9.67 13.83 10.29 13.70 20.46 16.38 +63 4 17 11.04 10.83 9.79 6.83 10.96 7.96 8.00 12.71 8.21 12.08 18.91 13.50 +63 4 18 5.66 5.21 9.42 4.67 9.29 7.75 9.92 9.13 8.79 8.29 11.29 11.29 +63 4 19 9.08 10.75 8.79 6.67 12.42 8.87 9.50 8.42 7.17 8.92 9.08 10.21 +63 4 20 25.50 20.67 24.87 17.04 22.00 17.71 21.54 19.29 17.00 19.67 17.92 22.63 +63 4 21 27.08 18.88 23.75 16.54 18.66 15.16 19.58 17.75 16.42 21.84 20.30 24.62 +63 4 22 14.09 12.42 15.12 10.29 14.54 12.21 13.42 13.13 12.42 15.67 16.83 13.70 +63 4 23 9.87 11.67 7.25 5.63 11.87 8.42 6.00 8.71 8.25 10.00 9.67 10.63 +63 4 24 8.54 3.54 5.04 5.79 9.00 7.25 6.67 8.83 7.46 8.87 10.00 9.67 +63 4 25 4.25 6.00 4.92 2.75 4.00 2.00 4.83 2.04 2.83 3.83 8.58 6.92 +63 4 26 5.09 8.87 8.38 5.88 6.79 6.96 5.71 8.29 5.83 6.21 15.09 8.83 +63 4 27 5.37 6.29 10.13 4.00 6.67 7.50 12.12 10.67 9.13 10.46 15.21 15.63 +63 4 28 5.88 6.50 10.21 5.54 8.96 8.04 11.42 7.54 10.46 8.92 12.00 12.71 +63 4 29 11.79 9.08 8.75 7.83 13.08 9.13 11.75 10.92 10.08 11.67 11.96 15.21 +63 4 30 12.83 10.83 12.46 7.67 12.54 10.75 12.33 11.58 10.75 12.08 14.50 16.08 +63 5 1 18.79 14.17 13.59 11.63 14.17 11.96 14.46 12.46 12.87 13.96 15.29 21.62 +63 5 2 18.00 13.75 11.83 12.00 16.50 12.54 15.37 13.96 12.75 12.87 15.83 20.58 +63 5 3 16.13 9.59 10.29 10.00 13.46 9.59 12.96 10.17 11.12 12.54 14.37 13.04 +63 5 4 13.88 12.21 12.58 8.38 14.42 11.63 13.37 13.88 12.46 12.71 17.96 18.21 +63 5 5 12.42 12.25 9.71 10.37 14.75 12.00 14.96 12.50 12.67 12.67 16.38 18.38 +63 5 6 12.38 11.58 12.29 8.25 12.58 9.46 13.67 11.67 10.13 12.62 17.71 15.54 +63 5 7 19.83 16.96 22.34 15.16 17.41 15.34 18.75 16.66 15.37 19.17 22.83 21.00 +63 5 8 14.00 12.87 15.37 7.87 15.04 10.83 11.67 14.29 11.83 14.46 18.54 19.55 +63 5 9 19.79 19.29 16.33 12.58 17.92 13.13 13.88 12.79 12.92 12.62 15.16 14.96 +63 5 10 30.91 18.21 21.12 19.62 26.20 18.38 23.09 17.37 20.08 17.37 20.25 22.21 +63 5 11 11.17 10.34 13.37 8.38 11.08 9.59 12.25 10.83 10.75 11.67 16.66 15.79 +63 5 12 23.75 22.17 23.09 13.42 21.92 16.00 15.59 23.00 15.34 20.88 32.91 24.54 +63 5 13 20.62 18.91 17.04 12.75 24.67 18.34 20.33 21.54 17.62 20.38 26.42 28.01 +63 5 14 13.29 10.75 10.25 7.04 12.62 8.58 13.42 11.87 11.46 12.04 15.75 18.29 +63 5 15 10.21 7.50 8.17 6.34 10.46 8.08 12.83 8.63 10.88 10.88 12.87 15.59 +63 5 16 8.08 9.13 9.59 6.58 11.00 8.83 14.42 10.08 10.67 12.29 13.70 13.62 +63 5 17 9.59 8.21 9.92 7.08 13.13 10.00 13.96 11.08 13.00 12.58 16.04 20.54 +63 5 18 17.79 12.96 13.00 11.42 17.75 14.33 19.33 16.79 17.04 18.12 18.63 24.21 +63 5 19 10.50 9.33 9.71 6.50 11.17 8.29 11.38 8.71 9.42 8.83 11.79 12.54 +63 5 20 16.00 13.50 15.41 9.21 16.88 12.33 14.50 10.96 11.75 10.04 13.33 12.92 +63 5 21 12.54 12.83 11.04 5.29 13.37 7.83 7.21 9.79 8.63 10.46 13.46 15.92 +63 5 22 8.87 6.83 9.87 5.17 7.58 6.00 7.62 5.17 6.87 6.04 8.71 8.17 +63 5 23 5.25 10.46 5.13 4.12 9.59 6.29 7.00 6.54 6.38 5.79 13.04 8.04 +63 5 24 9.59 9.21 6.17 3.88 10.54 5.29 4.96 6.29 5.33 5.04 7.54 8.96 +63 5 25 8.38 8.12 12.33 7.29 8.63 8.04 8.38 8.04 6.71 7.58 14.54 7.29 +63 5 26 11.63 8.58 8.12 6.71 9.71 7.38 9.29 9.62 9.17 11.04 12.38 12.75 +63 5 27 8.21 2.92 10.04 3.71 3.42 1.87 5.13 1.71 3.17 2.67 5.83 4.92 +63 5 28 3.63 5.91 13.83 4.63 7.75 3.71 5.63 5.17 3.67 4.21 5.04 1.75 +63 5 29 7.12 7.62 21.50 7.83 10.08 7.41 10.92 7.12 8.75 7.25 12.21 4.75 +63 5 30 4.88 2.96 17.25 4.67 5.96 6.71 8.25 7.62 7.83 7.54 7.96 11.12 +63 5 31 2.04 2.21 9.04 2.88 2.67 2.17 6.13 3.58 6.46 6.92 4.96 9.42 +63 6 1 13.37 6.87 12.00 8.50 10.04 9.42 10.92 12.96 11.79 11.04 10.92 13.67 +63 6 2 17.62 8.79 20.62 8.63 11.38 10.75 14.46 13.70 13.70 11.79 12.83 16.46 +63 6 3 19.04 9.17 24.13 11.54 12.12 13.04 17.67 14.50 14.00 11.63 14.09 11.75 +63 6 4 8.96 7.17 21.92 7.04 8.79 8.79 9.79 9.08 8.58 7.79 11.21 4.96 +63 6 5 3.37 4.75 16.83 2.21 3.54 3.88 6.00 7.00 6.21 7.08 12.08 7.00 +63 6 6 4.04 3.08 4.00 3.71 4.54 2.54 6.29 6.08 7.00 9.21 6.79 13.46 +63 6 7 6.34 8.04 4.63 4.50 6.96 2.92 3.58 4.25 3.54 4.67 5.71 10.96 +63 6 8 7.17 7.83 3.67 2.58 7.62 4.17 4.25 5.91 4.83 4.83 5.17 3.33 +63 6 9 6.75 3.37 13.25 3.58 4.25 4.38 8.38 7.96 8.42 7.50 6.96 5.96 +63 6 10 7.58 4.58 8.87 3.58 6.54 4.08 5.75 7.58 7.79 7.21 7.87 6.67 +63 6 11 4.12 3.75 7.87 1.21 5.09 2.92 2.92 4.04 4.25 5.09 6.83 4.63 +63 6 12 6.08 4.92 4.42 2.25 5.50 2.21 4.25 4.08 4.38 4.04 8.63 5.63 +63 6 13 10.00 3.13 4.17 5.54 5.91 3.67 4.92 3.96 4.67 8.38 5.71 5.41 +63 6 14 7.62 3.21 3.75 2.62 5.13 2.42 4.83 2.79 4.54 2.88 5.79 2.79 +63 6 15 8.92 8.08 8.04 4.50 9.13 6.58 7.17 11.46 7.67 10.54 14.17 11.87 +63 6 16 5.46 6.63 7.33 4.92 7.50 5.58 8.29 6.71 6.75 6.50 10.25 13.21 +63 6 17 10.25 10.58 11.83 5.83 8.75 4.92 5.88 8.87 4.46 7.71 13.00 8.25 +63 6 18 20.75 14.46 15.34 12.96 20.83 15.29 17.83 17.54 17.50 16.92 21.17 18.54 +63 6 19 7.04 7.67 7.33 5.04 8.54 5.17 8.92 7.50 6.50 8.75 11.12 12.79 +63 6 20 11.38 11.67 13.00 7.62 13.17 9.50 8.67 12.46 10.21 13.25 17.67 13.25 +63 6 21 14.54 10.00 15.34 6.50 11.71 8.79 10.34 10.41 10.96 10.96 13.70 16.08 +63 6 22 10.00 9.62 9.17 8.92 13.79 9.92 11.83 10.67 10.25 9.38 14.17 12.71 +63 6 23 15.59 14.00 14.83 7.96 15.04 10.75 11.87 13.00 9.83 12.71 17.96 16.25 +63 6 24 14.04 11.54 16.38 8.00 16.96 11.67 12.04 10.13 10.79 11.92 13.46 11.54 +63 6 25 9.83 9.25 8.96 6.42 14.50 8.63 8.17 10.79 8.17 8.54 13.37 11.92 +63 6 26 13.17 10.71 10.83 9.17 14.83 9.59 12.71 11.63 10.67 11.54 14.09 12.71 +63 6 27 13.70 12.17 11.79 8.83 13.42 9.75 13.04 13.25 10.92 14.58 14.88 24.25 +63 6 28 16.25 13.13 16.04 9.83 15.29 9.00 12.17 14.25 10.25 13.50 18.88 20.67 +63 6 29 15.09 14.04 15.21 10.54 14.58 9.00 13.50 15.04 11.50 15.54 20.96 18.75 +63 6 30 10.63 10.83 19.00 8.08 8.83 7.25 11.58 10.08 7.38 12.08 13.50 5.29 +63 7 1 3.83 5.50 8.50 4.12 6.79 4.04 8.54 8.25 8.04 9.00 10.75 10.83 +63 7 2 5.21 1.13 5.96 4.33 5.88 4.12 5.09 8.46 8.00 8.71 9.79 16.83 +63 7 3 2.00 2.17 8.25 2.58 4.83 3.13 6.46 5.96 6.34 6.00 6.00 9.00 +63 7 4 2.37 2.42 7.79 2.62 3.04 3.17 8.50 6.29 5.17 8.29 6.54 13.79 +63 7 5 2.67 2.08 7.46 1.92 3.04 2.88 5.17 5.41 4.67 6.04 7.33 7.29 +63 7 6 4.04 5.41 2.83 2.17 4.50 2.79 2.67 6.75 3.33 6.34 10.71 5.17 +63 7 7 7.00 7.83 5.83 4.88 5.17 4.50 6.46 7.75 5.54 7.12 9.46 11.21 +63 7 8 7.96 7.41 7.67 5.29 8.63 7.00 10.92 10.71 9.67 9.25 11.42 15.83 +63 7 9 8.38 8.46 9.50 8.21 12.71 9.87 13.96 11.96 10.17 10.00 12.67 13.21 +63 7 10 9.04 7.83 6.21 5.04 8.96 4.88 8.17 7.08 6.79 7.71 8.00 9.17 +63 7 11 6.67 5.00 7.12 3.13 7.87 2.58 4.46 4.12 2.79 3.21 3.71 5.79 +63 7 12 3.08 5.96 4.25 2.79 5.46 3.37 4.79 5.75 4.75 6.58 7.92 6.46 +63 7 13 10.37 7.96 7.54 5.17 7.21 3.83 5.54 6.42 4.00 4.71 9.04 5.83 +63 7 14 19.46 17.21 19.33 13.50 15.63 12.62 14.71 19.29 12.33 15.83 23.42 18.50 +63 7 15 12.62 10.79 15.87 7.83 11.96 9.08 12.04 10.83 8.75 11.17 14.29 10.58 +63 7 16 8.87 9.17 7.21 6.04 10.29 7.00 10.29 9.50 8.75 8.67 12.50 13.29 +63 7 17 11.75 10.63 10.92 6.25 10.58 7.58 9.75 10.50 7.71 11.92 12.50 15.04 +63 7 18 8.00 6.46 9.04 4.83 7.21 4.88 6.50 8.50 5.21 5.79 12.96 9.08 +63 7 19 7.04 5.37 9.42 5.09 11.12 6.54 10.04 7.92 8.54 10.25 9.96 14.54 +63 7 20 3.96 5.54 5.75 3.88 8.71 4.58 6.50 6.17 4.17 6.13 9.75 9.33 +63 7 21 5.13 8.46 5.17 6.75 8.54 6.13 7.29 11.46 6.54 9.79 16.79 13.33 +63 7 22 3.88 2.08 3.67 1.67 4.08 1.50 6.50 3.46 3.88 4.83 4.75 5.88 +63 7 23 12.29 10.67 12.79 8.83 9.96 7.12 7.87 7.62 7.58 9.46 8.46 7.67 +63 7 24 14.79 11.83 10.63 8.67 13.88 9.33 11.17 12.21 9.62 11.79 12.87 15.83 +63 7 25 15.12 10.75 8.96 7.71 11.71 8.42 11.00 10.75 10.37 11.00 13.88 15.54 +63 7 26 4.75 6.13 4.00 3.00 7.29 2.92 6.50 5.91 4.58 5.63 11.58 7.62 +63 7 27 5.75 10.75 6.58 6.08 10.79 7.96 5.50 10.21 7.21 10.92 19.67 10.08 +63 7 28 5.75 8.38 2.83 4.12 9.96 5.00 5.91 7.83 5.66 7.67 12.38 7.58 +63 7 29 7.75 12.33 5.54 6.75 11.75 8.29 8.21 11.34 7.75 10.79 19.70 12.96 +63 7 30 5.09 12.83 3.08 5.91 9.17 6.83 4.33 9.87 6.54 7.54 16.88 9.79 +63 7 31 5.00 8.79 3.50 3.92 9.75 3.42 4.33 9.75 4.46 4.88 7.87 9.00 +63 8 1 10.21 7.83 13.70 5.37 11.67 5.00 5.41 11.25 5.66 5.37 13.37 3.67 +63 8 2 7.58 7.46 18.25 6.08 9.62 5.00 4.08 8.17 5.41 5.66 11.42 6.96 +63 8 3 5.75 3.29 8.96 3.29 6.38 2.29 2.62 1.79 2.21 3.04 3.79 2.25 +63 8 4 7.00 6.50 4.79 2.37 5.91 1.87 3.13 3.50 3.67 4.29 8.71 3.71 +63 8 5 18.08 12.21 11.08 8.54 11.12 8.58 10.50 9.75 9.92 12.12 10.34 17.75 +63 8 6 11.12 7.50 8.17 5.33 9.62 7.41 7.00 10.71 8.63 8.58 14.12 14.00 +63 8 7 13.13 9.71 11.92 8.00 14.46 11.38 12.58 13.67 12.25 12.25 16.08 19.79 +63 8 8 14.46 7.75 10.83 8.58 13.62 8.96 13.50 10.29 12.25 12.79 12.92 23.29 +63 8 9 9.71 10.41 8.96 5.54 10.67 6.21 7.96 5.96 7.41 7.29 10.29 11.21 +63 8 10 12.92 8.92 10.00 9.38 14.00 11.38 14.09 12.00 12.71 11.50 11.58 10.21 +63 8 11 14.00 10.79 7.29 7.54 13.25 8.87 11.25 10.58 11.34 9.25 12.12 12.50 +63 8 12 12.29 9.29 5.66 6.29 9.29 7.21 8.38 9.25 8.46 10.00 12.17 13.70 +63 8 13 7.96 7.08 6.67 3.67 7.12 4.12 6.58 6.63 5.91 8.96 8.83 10.75 +63 8 14 8.00 7.00 5.04 3.08 8.21 5.33 6.67 7.41 6.58 7.33 10.71 10.25 +63 8 15 9.67 8.50 9.08 4.12 9.71 5.37 9.21 7.21 7.46 7.29 10.13 10.29 +63 8 16 22.37 16.38 19.75 12.33 14.83 8.79 17.67 12.96 12.08 13.50 16.38 17.62 +63 8 17 24.33 15.12 18.75 14.50 15.12 11.12 15.67 11.04 13.92 16.66 12.08 16.08 +63 8 18 8.00 4.63 8.42 4.25 7.25 4.17 6.92 4.88 6.54 5.96 7.54 5.33 +63 8 19 7.08 6.46 6.58 5.04 10.37 7.25 7.79 8.92 6.92 8.83 10.13 10.25 +63 8 20 15.63 12.75 7.00 8.21 13.88 9.04 11.08 10.34 10.21 11.63 11.29 15.29 +63 8 21 9.38 10.67 10.58 7.04 9.59 7.38 9.46 8.21 9.79 8.38 10.37 12.00 +63 8 22 12.08 10.75 10.41 4.50 11.96 7.58 7.62 9.71 8.08 9.59 15.46 9.67 +63 8 23 18.21 15.54 16.33 8.54 17.92 12.54 13.13 12.58 12.17 14.88 17.16 16.71 +63 8 24 16.21 12.75 12.79 8.83 14.83 10.96 13.59 11.08 12.29 9.92 12.50 13.21 +63 8 25 15.41 14.09 15.83 7.71 14.67 9.59 9.00 15.71 10.41 14.37 22.88 13.21 +63 8 26 21.50 20.62 18.54 13.46 23.63 15.87 19.62 19.08 17.54 17.25 23.16 21.54 +63 8 27 16.71 11.54 10.88 10.37 15.92 12.25 14.62 14.25 13.79 9.92 16.42 13.17 +63 8 28 11.54 9.46 8.83 5.37 10.37 6.75 7.41 8.33 6.58 7.12 12.83 8.50 +63 8 29 10.71 7.96 10.13 7.04 10.25 8.46 8.33 11.34 8.75 11.29 16.00 14.42 +63 8 30 17.33 19.00 17.04 9.17 20.08 12.75 11.12 14.79 12.29 15.50 19.25 15.21 +63 8 31 13.21 20.00 17.12 7.83 13.04 8.54 9.59 12.50 8.79 10.96 17.29 17.46 +63 9 1 14.37 12.17 12.42 7.41 10.96 7.41 10.34 11.83 9.13 12.83 16.08 18.00 +63 9 2 19.92 16.79 10.08 9.21 12.17 7.96 8.96 11.54 9.42 11.87 14.09 16.08 +63 9 3 11.87 7.96 9.92 6.04 9.92 6.71 11.25 8.71 8.63 8.87 8.25 13.59 +63 9 4 10.63 10.71 7.12 4.83 8.42 4.42 5.96 6.08 4.58 6.83 7.08 13.50 +63 9 5 15.00 10.88 8.42 5.37 11.87 7.00 9.25 9.87 8.29 9.13 11.92 14.67 +63 9 6 10.58 10.25 7.50 6.00 10.54 7.04 10.34 8.46 7.54 8.04 12.25 13.88 +63 9 7 15.96 13.92 14.75 7.54 13.75 10.88 14.67 12.71 11.38 12.96 12.12 10.67 +63 9 8 15.63 13.88 12.83 7.92 16.42 10.00 13.13 10.88 10.71 11.71 19.17 17.29 +63 9 9 11.42 9.96 11.00 6.63 10.75 7.71 14.04 10.00 10.21 10.75 13.29 17.37 +63 9 10 7.41 7.67 5.54 1.58 4.83 0.67 3.71 2.67 2.37 1.83 3.50 7.38 +63 9 11 6.79 3.04 5.46 2.96 5.71 1.71 2.54 1.75 3.67 3.04 5.17 6.25 +63 9 12 5.21 6.50 5.79 2.54 4.00 2.42 4.29 7.38 2.71 4.54 14.79 8.54 +63 9 13 6.50 6.54 8.04 3.67 7.79 6.50 9.79 10.54 8.63 9.96 16.25 19.55 +63 9 14 5.58 2.75 4.92 2.21 6.63 4.92 9.33 7.17 6.34 7.96 15.59 19.67 +63 9 15 3.83 7.21 6.71 2.25 4.38 4.46 5.91 12.67 6.08 10.54 20.00 14.92 +63 9 16 2.33 8.25 4.04 2.00 5.66 4.08 4.75 8.25 3.83 5.88 17.04 10.08 +63 9 17 4.67 7.96 5.46 2.33 5.79 2.50 7.83 8.25 4.54 7.29 13.62 11.38 +63 9 18 6.96 7.17 16.54 3.63 8.42 4.88 5.41 6.54 5.29 4.75 7.25 12.08 +63 9 19 8.87 6.63 6.63 3.21 9.87 4.75 6.75 5.63 5.21 5.58 5.63 10.71 +63 9 20 7.08 7.79 5.13 4.17 9.46 4.42 5.50 5.21 3.96 5.91 7.25 7.83 +63 9 21 3.63 6.71 4.42 1.00 7.54 2.21 2.54 5.83 1.42 4.33 10.25 9.21 +63 9 22 1.29 8.21 3.96 1.54 6.42 2.04 3.21 4.79 3.33 5.21 15.59 10.50 +63 9 23 8.54 14.96 5.25 5.04 12.00 6.83 5.09 11.21 6.87 10.75 23.75 17.16 +63 9 24 18.84 15.37 13.25 10.34 16.83 11.04 14.67 12.00 11.58 13.88 16.58 20.67 +63 9 25 18.25 15.87 14.42 8.46 13.88 9.87 13.37 11.38 10.08 12.46 19.33 19.33 +63 9 26 19.58 17.92 16.66 13.75 24.13 17.96 23.04 22.58 18.88 16.96 26.12 33.42 +63 9 27 11.92 10.25 9.17 7.12 13.46 10.83 15.00 11.38 12.38 13.21 17.12 24.41 +63 9 28 9.67 10.08 10.54 4.21 6.75 6.54 10.17 9.54 6.58 8.63 13.96 14.00 +63 9 29 17.50 10.50 13.70 10.46 14.71 11.87 17.88 14.37 14.58 14.58 16.88 23.96 +63 9 30 11.38 7.92 7.67 7.38 12.21 8.00 12.50 8.42 10.54 9.38 11.63 18.29 +63 10 1 16.00 14.71 10.96 10.37 16.46 11.21 15.71 14.62 13.46 11.67 19.55 21.67 +63 10 2 15.16 12.42 11.25 8.42 13.50 7.79 10.54 10.00 9.00 10.21 15.54 14.92 +63 10 3 16.46 14.33 13.08 9.13 12.83 10.41 14.21 10.17 11.29 10.58 14.62 19.21 +63 10 4 14.17 12.08 9.21 8.50 14.21 9.04 14.25 12.62 12.00 10.75 17.33 19.55 +63 10 5 12.17 8.42 9.29 6.92 13.13 3.88 9.04 5.75 7.25 8.38 7.83 17.04 +63 10 6 12.75 11.87 8.63 6.54 14.04 9.42 8.71 10.21 8.83 5.66 14.12 11.29 +63 10 7 13.08 10.88 9.46 5.41 10.41 7.71 11.17 11.79 9.08 8.50 16.46 9.62 +63 10 8 17.29 13.13 13.42 9.96 14.50 11.21 14.33 15.96 12.25 13.59 20.41 22.37 +63 10 9 10.08 9.42 10.29 6.08 17.33 11.83 15.25 14.92 12.71 15.54 23.38 28.50 +63 10 10 7.62 5.79 8.21 5.88 11.96 9.00 14.42 11.34 11.17 11.21 16.38 20.62 +63 10 11 10.29 12.83 12.50 4.83 8.12 6.34 9.83 13.42 7.25 13.04 18.66 22.08 +63 10 12 11.04 10.58 13.00 3.83 10.58 7.38 9.42 9.21 7.25 9.08 17.83 15.54 +63 10 13 13.88 7.92 10.54 7.41 9.79 8.42 14.21 7.08 11.25 11.50 13.37 22.92 +63 10 14 9.79 10.50 9.75 3.79 8.25 7.67 3.83 6.58 6.34 5.54 13.50 10.50 +63 10 15 15.00 15.37 15.04 8.54 13.00 12.00 11.67 13.46 10.83 13.54 21.25 19.79 +63 10 16 12.17 9.08 8.25 5.46 11.54 7.50 7.46 8.79 6.25 8.29 16.00 13.46 +63 10 17 13.08 12.46 11.08 5.50 12.38 8.67 10.37 11.38 8.46 10.75 19.62 16.75 +63 10 18 16.29 15.34 15.09 9.17 12.33 10.67 12.96 13.92 8.92 13.67 20.96 16.17 +63 10 19 22.00 17.54 19.55 14.29 18.71 15.34 15.09 16.38 13.83 16.79 23.54 22.13 +63 10 20 19.21 18.05 14.58 9.13 15.71 12.71 13.42 15.83 10.75 15.67 26.38 19.29 +63 10 21 19.50 11.12 18.63 9.92 12.46 10.71 13.88 10.41 10.17 12.21 15.09 17.29 +63 10 22 12.92 12.29 10.63 6.50 10.37 9.00 9.79 7.21 5.58 7.41 11.71 13.33 +63 10 23 16.17 14.33 14.71 9.50 15.25 11.21 12.92 12.29 11.83 14.09 20.91 18.05 +63 10 24 6.25 9.83 6.71 2.96 8.71 5.25 4.83 7.75 4.33 10.08 15.50 13.50 +63 10 25 10.00 11.17 5.63 4.75 12.12 7.12 6.04 7.12 5.33 5.66 10.46 10.54 +63 10 26 16.46 17.96 12.79 8.54 16.00 9.87 11.21 11.29 8.25 9.79 14.12 10.41 +63 10 27 20.41 18.79 15.29 12.12 21.54 13.33 15.37 15.59 10.79 11.17 19.41 11.42 +63 10 28 16.42 13.29 15.87 10.34 12.08 8.96 12.04 11.38 11.83 12.96 14.17 19.87 +63 10 29 12.46 9.79 14.96 10.08 9.92 7.08 8.21 8.71 8.33 11.38 11.92 12.33 +63 10 30 13.88 3.71 18.66 11.04 12.42 11.00 15.92 10.04 11.04 14.37 10.58 17.00 +63 10 31 6.75 7.79 8.29 3.37 8.33 4.38 5.25 8.04 5.75 8.00 9.87 15.83 +63 11 1 10.34 7.87 15.21 6.04 8.21 6.25 8.25 6.87 6.54 6.79 7.17 11.12 +63 11 2 7.08 4.88 6.46 2.83 5.17 1.67 6.00 4.83 4.54 5.00 7.58 8.79 +63 11 3 12.87 10.08 11.25 4.25 8.12 5.66 7.33 9.96 6.50 8.58 11.50 15.54 +63 11 4 13.50 11.04 19.29 8.83 10.54 8.87 16.13 11.71 9.92 11.34 12.38 20.25 +63 11 5 9.29 7.50 10.67 5.04 9.92 7.08 11.12 10.83 7.29 10.58 12.83 16.17 +63 11 6 4.00 1.92 4.83 0.96 4.17 0.37 3.00 2.58 0.87 0.87 7.25 2.96 +63 11 7 11.79 7.67 7.75 4.92 9.17 4.38 7.62 4.50 4.50 4.12 6.25 5.79 +63 11 8 11.67 12.08 10.50 6.50 14.09 9.75 13.00 7.62 8.92 9.59 12.25 12.42 +63 11 9 7.41 9.96 7.54 3.88 8.79 5.66 6.58 5.54 4.67 3.92 7.83 8.63 +63 11 10 32.96 22.25 26.67 20.46 23.75 16.83 19.83 21.29 16.71 17.25 24.13 33.87 +63 11 11 26.92 22.04 22.67 19.50 27.04 19.12 18.29 15.67 16.21 18.63 14.17 15.59 +63 11 12 16.42 15.71 14.75 14.96 21.17 19.00 25.92 20.33 22.08 20.04 28.62 24.30 +63 11 13 10.29 9.42 6.67 3.67 11.12 7.79 14.42 7.79 9.21 11.29 16.96 22.08 +63 11 14 13.62 13.08 13.67 4.42 14.37 7.62 12.08 6.54 7.46 9.13 18.00 14.46 +63 11 15 8.50 11.04 4.12 1.04 10.00 5.13 2.92 7.21 3.08 4.42 10.13 4.79 +63 11 16 16.50 14.67 8.58 6.67 12.79 5.66 6.29 6.08 2.54 3.37 14.58 11.00 +63 11 17 21.67 19.75 16.96 8.17 19.17 13.50 13.75 15.16 11.04 11.71 18.21 19.17 +63 11 18 25.12 21.04 20.71 14.50 21.21 15.71 22.50 14.37 16.46 15.34 15.34 8.92 +63 11 19 9.29 6.54 8.63 5.17 9.00 5.75 10.08 7.08 6.08 7.33 16.79 18.91 +63 11 20 10.75 8.71 10.96 3.58 8.38 3.46 7.17 5.96 5.71 7.21 13.96 15.21 +63 11 21 26.38 24.67 22.67 17.41 26.42 18.91 24.71 20.38 20.50 21.34 30.00 31.05 +63 11 22 8.71 10.92 6.58 4.79 8.17 6.04 10.21 7.58 7.00 8.75 12.96 18.88 +63 11 23 22.63 19.38 19.29 10.92 13.96 12.79 13.17 12.79 9.67 13.04 13.88 18.50 +63 11 24 26.50 21.29 21.92 16.46 20.08 15.21 14.62 17.21 15.41 17.33 20.33 18.75 +63 11 25 26.58 26.54 19.46 14.75 23.09 15.54 18.41 18.54 17.62 17.04 24.13 17.92 +63 11 26 22.83 13.96 14.00 12.12 13.37 9.83 14.42 10.83 13.96 12.62 14.21 17.92 +63 11 27 8.79 10.88 9.08 4.96 9.92 7.17 5.91 10.04 7.00 9.13 18.91 15.83 +63 11 28 15.83 11.12 13.54 8.21 8.54 6.34 10.41 5.96 9.50 8.17 10.54 14.37 +63 11 29 3.08 6.17 9.71 1.33 5.88 2.21 6.46 3.92 1.58 2.29 10.21 7.08 +63 11 30 19.17 17.46 11.08 3.71 14.88 7.50 6.42 11.87 5.79 6.13 16.88 12.50 +63 12 1 24.79 16.46 18.75 11.17 21.71 12.83 13.79 18.25 12.08 13.79 19.79 15.37 +63 12 2 15.67 12.21 17.96 9.75 11.17 10.88 16.00 15.12 14.12 12.75 16.88 26.16 +63 12 3 22.79 18.50 27.67 16.17 19.41 19.87 21.29 20.75 18.88 17.33 21.29 31.75 +63 12 4 13.96 10.83 15.50 7.75 10.29 10.17 16.08 12.79 13.17 12.12 12.71 24.33 +63 12 5 10.04 7.12 13.62 3.96 7.04 3.79 10.71 7.33 6.13 7.58 7.71 5.09 +63 12 6 11.17 7.46 12.62 4.00 7.83 4.12 13.21 6.96 4.75 6.67 8.29 12.92 +63 12 7 10.13 8.63 11.42 3.29 7.08 3.96 8.92 4.67 3.04 5.50 7.33 10.08 +63 12 8 7.29 1.08 7.38 0.42 6.54 1.46 1.83 1.29 1.13 1.29 6.29 6.67 +63 12 9 6.83 4.88 6.25 0.46 6.13 1.75 3.46 2.04 0.83 1.25 7.50 7.38 +63 12 10 20.12 20.33 18.66 10.63 18.05 13.17 12.17 15.29 9.25 13.29 18.75 14.12 +63 12 11 18.34 3.37 23.13 12.38 18.29 16.08 17.54 18.84 12.50 15.00 18.41 20.67 +63 12 12 16.42 11.71 17.50 10.00 15.71 11.00 16.96 15.75 11.71 12.92 15.54 20.79 +63 12 13 17.46 12.54 17.96 6.04 12.00 6.87 13.04 10.88 7.83 8.79 11.38 14.29 +63 12 14 12.58 8.42 16.50 7.00 8.87 4.04 9.08 7.25 5.83 4.67 6.87 10.00 +63 12 15 9.42 10.21 13.13 5.00 7.67 3.04 6.50 4.88 3.83 3.92 3.83 10.75 +63 12 16 9.42 9.83 10.37 3.25 6.00 4.88 4.92 4.50 2.29 3.79 6.00 4.25 +63 12 17 9.59 9.71 9.13 3.42 6.04 4.75 6.42 5.54 3.21 3.25 6.38 9.42 +63 12 18 11.67 10.46 15.12 5.54 7.29 3.75 7.50 5.17 4.79 4.96 7.25 14.54 +63 12 19 12.58 10.37 19.29 8.08 10.08 3.92 10.58 5.66 5.33 4.21 5.37 15.12 +63 12 20 11.83 5.75 11.50 3.21 4.71 0.79 8.38 5.21 3.00 1.92 4.17 11.12 +63 12 21 9.96 2.13 8.29 2.46 4.42 2.37 10.88 1.92 3.96 6.67 5.63 11.71 +63 12 22 9.50 12.08 6.42 0.50 10.54 6.29 6.63 9.79 2.92 8.38 19.38 13.25 +63 12 23 27.37 22.71 18.96 10.58 20.25 14.46 12.08 19.46 12.42 20.58 31.25 30.50 +63 12 24 32.50 26.54 26.25 17.00 24.71 18.71 18.08 21.21 18.58 21.37 29.38 29.63 +63 12 25 7.96 6.92 10.63 5.13 9.92 8.29 12.21 9.17 8.79 14.17 19.04 24.67 +63 12 26 4.25 4.79 5.79 1.13 7.12 5.58 8.29 6.13 5.63 6.87 13.17 15.25 +63 12 27 16.79 17.29 15.09 9.29 14.25 12.17 10.54 15.75 9.42 15.50 26.63 21.21 +63 12 28 19.21 19.38 16.25 14.29 17.88 14.79 12.87 16.96 12.71 16.88 29.71 24.83 +63 12 29 17.96 16.79 14.96 11.21 15.79 13.37 14.29 13.37 13.37 15.16 22.00 20.91 +63 12 30 22.21 19.08 20.46 12.29 16.58 14.17 17.29 17.12 12.96 18.54 26.08 21.59 +63 12 31 13.88 14.42 12.12 9.25 14.33 10.67 18.29 11.96 12.04 15.37 16.79 14.09 +64 1 1 25.80 22.13 18.21 13.25 21.29 14.79 14.12 19.58 13.25 16.75 28.96 21.00 +64 1 2 33.34 28.50 24.37 28.46 23.50 20.33 22.63 25.92 17.71 24.17 36.95 28.96 +64 1 3 22.63 9.92 19.67 18.12 11.92 12.12 16.13 9.67 12.58 15.29 14.50 14.71 +64 1 4 8.67 4.79 14.50 7.75 7.54 2.58 6.50 2.42 4.42 5.13 4.58 4.83 +64 1 5 5.50 6.75 3.79 3.58 8.83 3.50 3.67 6.71 5.79 5.63 8.63 9.71 +64 1 6 6.87 10.75 7.00 4.21 9.25 5.29 2.54 6.21 2.46 5.79 17.08 10.37 +64 1 7 12.29 11.92 7.92 4.17 10.63 4.46 2.92 9.54 3.67 8.12 21.54 10.00 +64 1 8 15.09 12.54 7.71 6.29 9.13 4.29 4.08 11.87 5.25 9.46 22.75 17.37 +64 1 9 10.67 9.08 7.96 4.38 7.00 2.75 2.67 5.88 2.25 2.83 14.04 10.34 +64 1 10 11.25 9.92 8.71 3.00 9.17 2.67 2.71 7.79 3.46 3.00 9.08 3.63 +64 1 11 10.04 10.41 11.96 2.67 9.92 2.92 4.42 4.67 3.29 4.12 5.96 4.71 +64 1 12 8.21 5.88 17.08 6.79 9.17 2.25 7.54 5.91 6.04 5.66 5.21 11.96 +64 1 13 14.25 11.71 18.50 7.41 12.29 6.25 15.04 12.21 8.75 14.33 14.21 24.96 +64 1 14 15.96 18.91 12.46 3.00 12.67 6.42 8.71 11.29 3.67 9.25 14.50 20.12 +64 1 15 19.04 21.62 15.34 7.67 15.21 10.25 11.12 14.09 9.00 15.00 15.41 16.54 +64 1 16 19.46 20.58 15.79 9.38 15.41 10.50 11.34 13.25 7.87 12.17 14.67 18.58 +64 1 17 16.25 17.75 15.59 9.13 15.83 10.29 12.25 10.54 6.54 8.58 16.38 9.67 +64 1 18 16.42 16.96 18.63 10.71 15.46 12.54 15.29 13.59 11.29 12.62 20.12 19.50 +64 1 19 2.92 9.62 7.83 1.00 6.29 2.75 2.62 6.71 1.38 5.79 16.66 8.79 +64 1 20 2.08 5.71 4.54 2.21 5.88 3.08 7.58 6.17 4.42 8.29 12.33 13.13 +64 1 21 1.87 4.75 4.29 0.50 5.04 0.71 1.92 0.96 0.46 0.46 7.21 5.63 +64 1 22 10.37 9.96 8.46 2.67 8.17 3.13 3.00 3.25 2.37 4.71 7.62 6.87 +64 1 23 7.83 3.13 9.08 4.63 7.17 5.71 9.92 5.71 5.33 8.67 9.75 15.00 +64 1 24 8.29 4.21 9.71 4.33 4.04 1.00 6.34 0.75 2.00 5.04 3.88 8.17 +64 1 25 3.63 3.04 6.00 0.67 4.12 1.21 9.08 5.00 2.75 7.08 9.50 11.71 +64 1 26 3.08 5.25 5.13 0.75 5.79 2.29 7.12 5.91 2.42 6.13 12.00 10.71 +64 1 27 15.46 13.13 14.33 6.58 12.79 9.33 11.08 13.21 8.12 12.29 21.29 15.46 +64 1 28 16.04 11.12 10.63 10.46 13.17 8.67 15.87 11.54 12.21 13.75 16.66 17.96 +64 1 29 12.62 12.21 12.17 8.58 16.83 11.63 17.25 13.37 13.59 15.83 20.25 17.46 +64 1 30 18.16 16.66 11.87 11.67 18.16 12.67 19.00 15.25 14.33 14.54 21.46 25.12 +64 1 31 18.41 17.46 14.75 11.54 21.75 16.46 22.92 21.34 18.71 19.50 23.91 25.54 +64 2 1 13.25 13.83 12.00 8.79 13.42 12.50 17.67 14.50 11.96 15.87 15.75 18.34 +64 2 2 16.92 18.25 17.25 9.21 15.34 13.21 15.34 19.12 11.25 17.46 26.92 22.00 +64 2 3 16.08 13.50 13.83 10.41 15.46 11.67 16.79 12.50 12.96 16.33 20.58 24.41 +64 2 4 9.21 7.83 8.58 6.63 11.34 9.17 15.50 11.79 10.21 17.04 16.62 26.04 +64 2 5 8.08 6.21 11.21 3.25 6.83 3.25 7.25 3.17 3.08 3.83 6.29 9.04 +64 2 6 9.04 5.25 4.08 0.33 6.54 0.58 5.63 2.67 0.96 4.17 4.92 10.46 +64 2 7 7.50 7.38 4.17 0.71 6.75 1.87 5.88 2.50 0.50 3.96 7.33 7.71 +64 2 8 4.33 6.79 6.29 1.00 3.88 0.75 7.21 1.50 2.96 4.92 7.17 10.50 +64 2 9 3.67 2.96 3.67 1.08 4.29 1.33 7.54 4.17 1.08 5.25 11.29 10.58 +64 2 10 4.88 3.79 5.50 0.42 4.63 1.87 10.83 4.75 3.21 5.88 8.92 12.12 +64 2 11 7.08 9.92 7.29 1.67 7.00 4.21 8.50 6.75 3.08 6.75 11.92 9.83 +64 2 12 20.96 15.63 14.09 9.00 15.63 11.12 9.67 14.42 8.92 10.04 17.46 16.08 +64 2 13 26.20 16.08 24.54 14.50 22.13 17.33 20.30 18.58 13.17 17.88 19.25 19.21 +64 2 14 14.17 10.34 16.42 9.08 15.12 11.00 17.04 12.87 10.41 14.96 13.67 23.54 +64 2 15 15.50 12.71 15.34 9.75 14.12 11.38 13.88 11.92 8.87 13.70 13.92 16.46 +64 2 16 12.54 9.17 18.54 7.54 10.54 7.50 12.96 9.54 6.42 10.92 8.71 21.37 +64 2 17 11.46 8.04 20.88 8.71 10.34 7.50 12.83 9.13 8.96 10.34 11.29 22.83 +64 2 18 18.21 16.00 22.79 12.75 18.16 11.87 24.00 20.67 12.71 18.34 22.46 30.91 +64 2 19 16.04 12.17 16.58 8.67 15.87 9.29 16.38 14.25 8.96 10.83 14.17 17.37 +64 2 20 17.58 16.50 13.70 8.12 16.33 11.63 9.67 13.67 6.96 11.34 12.92 9.87 +64 2 21 25.25 21.84 22.79 12.21 21.59 16.54 18.29 18.12 9.38 16.33 18.38 13.96 +64 2 22 16.66 17.25 24.25 14.04 18.16 16.83 19.25 17.04 13.13 18.96 16.62 22.63 +64 2 23 11.54 11.50 11.58 6.92 9.96 6.58 8.92 7.96 5.21 9.50 11.42 11.96 +64 2 24 24.87 19.87 19.00 17.25 20.46 16.29 15.04 18.08 13.88 18.41 18.05 15.54 +64 2 25 15.83 14.12 14.88 11.42 14.04 10.41 11.08 12.58 11.29 15.29 17.50 18.66 +64 2 26 23.21 25.66 20.21 14.83 22.54 16.17 16.25 17.37 13.13 17.50 19.55 18.16 +64 2 27 21.34 18.08 17.79 13.70 17.67 12.42 13.79 16.25 11.75 17.96 20.25 19.12 +64 2 28 9.08 9.29 9.54 5.17 11.12 6.50 8.46 10.50 6.00 12.71 18.84 14.96 +64 2 29 8.83 12.17 8.04 5.13 12.50 6.92 5.88 11.38 5.58 11.38 19.95 15.21 +64 3 1 13.67 14.92 11.00 6.46 15.37 10.21 8.87 12.25 5.13 9.29 13.46 12.25 +64 3 2 10.63 9.92 7.87 3.08 10.00 2.50 6.04 6.46 3.37 6.29 7.21 6.25 +64 3 3 7.46 8.21 7.46 2.37 9.54 1.21 4.83 3.67 2.46 3.29 5.09 5.66 +64 3 4 8.12 5.09 10.29 3.04 8.79 3.33 7.83 5.04 3.25 5.96 7.08 10.00 +64 3 5 7.62 7.38 14.79 4.46 7.33 2.92 7.67 4.00 3.25 5.88 5.37 5.33 +64 3 6 8.71 6.87 13.13 3.88 8.33 2.50 5.88 5.79 3.50 6.29 5.46 8.17 +64 3 7 12.83 9.79 20.83 7.21 9.75 5.33 10.08 5.21 6.08 6.42 4.38 5.25 +64 3 8 11.58 9.25 22.46 6.87 9.38 3.67 9.50 8.08 5.83 6.79 7.41 8.75 +64 3 9 9.75 6.25 19.04 6.34 8.83 5.79 10.29 6.96 5.33 7.96 10.71 12.38 +64 3 10 16.66 9.54 16.00 6.54 12.58 8.38 10.67 10.25 7.83 10.08 12.42 17.25 +64 3 11 23.63 20.33 19.21 12.67 23.54 15.92 15.16 16.17 12.29 14.50 16.58 16.96 +64 3 12 17.71 15.16 20.50 10.21 21.34 15.50 15.37 18.79 14.42 18.29 19.55 25.21 +64 3 13 11.46 13.37 13.33 8.79 15.29 9.75 12.87 9.50 8.29 13.37 13.13 17.79 +64 3 14 18.88 18.58 15.75 10.21 18.12 13.50 13.21 17.62 10.50 17.46 23.38 22.34 +64 3 15 8.83 11.25 7.17 3.54 11.21 6.25 6.54 9.04 4.54 11.79 16.83 19.83 +64 3 16 21.25 20.12 19.95 11.50 23.16 12.33 17.41 16.75 11.67 16.00 18.00 22.21 +64 3 17 16.58 15.92 29.08 14.54 18.08 18.54 23.13 19.04 15.83 23.13 20.50 32.25 +64 3 18 16.88 13.83 25.80 14.12 19.41 19.12 22.54 18.91 13.42 18.63 21.34 32.88 +64 3 19 17.29 14.62 19.87 11.17 16.83 11.34 15.37 15.92 11.34 16.33 18.79 30.88 +64 3 20 10.17 10.25 12.46 7.08 9.17 5.63 11.34 6.75 6.50 11.38 7.67 13.96 +64 3 21 10.21 8.33 7.50 3.08 6.63 3.71 8.71 4.38 4.42 8.42 4.63 11.96 +64 3 22 5.21 4.29 4.71 0.71 4.33 0.13 6.08 2.67 4.58 5.83 5.88 10.04 +64 3 23 10.34 10.37 13.17 6.71 10.25 9.21 11.00 8.21 8.46 10.29 12.38 14.29 +64 3 24 13.79 13.37 10.63 7.29 12.17 6.63 7.58 7.92 6.75 9.46 13.33 14.92 +64 3 25 17.16 11.75 16.92 11.92 14.75 8.83 15.37 9.46 12.71 15.67 12.04 20.38 +64 3 26 7.08 9.42 7.21 3.42 8.71 4.25 6.00 7.54 3.25 6.71 16.71 9.54 +64 3 27 15.00 14.71 12.42 8.04 14.17 9.17 9.67 12.33 9.08 13.67 16.79 17.79 +64 3 28 9.50 8.33 10.75 5.37 12.71 8.21 8.92 9.71 6.29 10.29 7.92 15.12 +64 3 29 7.87 6.08 7.79 2.04 10.88 4.04 7.71 8.38 5.96 8.83 9.17 10.25 +64 3 30 15.04 15.25 8.25 5.21 16.50 10.08 7.71 12.83 7.08 9.62 16.21 13.13 +64 3 31 13.96 11.83 13.04 6.08 14.29 7.29 10.58 12.33 6.75 8.92 13.54 14.67 +64 4 1 11.38 11.21 23.00 8.25 12.71 7.71 12.04 11.34 7.04 10.34 12.21 12.96 +64 4 2 13.75 9.83 24.79 8.75 9.62 5.46 10.63 7.96 6.08 7.50 7.75 11.34 +64 4 3 13.17 12.38 24.75 9.92 10.34 8.29 11.83 9.62 7.71 11.92 13.42 15.75 +64 4 4 14.12 12.92 24.17 9.87 10.50 7.62 12.75 9.87 6.42 9.25 10.21 11.96 +64 4 5 9.62 6.58 10.58 7.25 9.04 3.17 6.58 6.75 4.71 6.87 6.92 10.37 +64 4 6 10.83 9.21 7.21 5.50 10.41 4.83 7.33 8.42 4.88 7.75 10.63 9.42 +64 4 7 6.71 4.08 7.17 3.17 6.75 2.71 7.29 6.58 4.00 7.17 11.58 11.54 +64 4 8 11.83 13.04 12.17 6.34 10.37 8.33 11.63 14.17 6.54 11.83 20.30 18.08 +64 4 9 18.75 12.92 16.83 13.04 19.21 13.59 18.05 15.29 13.25 16.88 19.17 19.92 +64 4 10 8.46 6.83 8.29 3.37 6.79 5.79 8.54 8.46 5.66 8.67 14.42 11.58 +64 4 11 10.08 7.83 11.38 4.50 10.13 7.96 10.04 12.42 7.29 11.21 14.21 14.00 +64 4 12 14.37 9.83 12.33 7.96 16.50 11.83 14.37 13.25 11.75 13.42 14.58 17.54 +64 4 13 14.88 15.79 13.13 11.12 18.71 10.25 15.96 14.00 11.46 15.04 20.50 19.75 +64 4 14 16.88 15.75 15.09 10.08 18.71 12.83 19.04 16.33 14.79 16.54 21.96 21.71 +64 4 15 17.12 12.71 17.58 9.71 12.62 7.92 10.71 11.08 6.75 12.08 17.25 14.46 +64 4 16 10.37 7.12 10.67 5.88 9.92 6.58 9.17 7.50 4.96 8.42 11.75 10.13 +64 4 17 15.00 11.58 14.25 9.87 14.09 10.79 12.79 11.75 8.79 11.25 13.25 11.00 +64 4 18 10.88 7.41 15.87 9.75 11.42 12.87 12.87 12.29 11.00 13.54 11.58 16.88 +64 4 19 7.71 4.54 4.83 2.33 6.58 2.42 4.75 3.88 1.38 5.83 7.87 11.58 +64 4 20 6.63 5.29 10.00 5.29 6.71 5.96 9.25 4.08 5.50 8.75 6.29 12.67 +64 4 21 7.71 6.50 7.21 3.88 8.38 3.13 5.41 5.63 3.25 6.63 9.00 15.63 +64 4 22 9.21 9.42 10.29 4.25 8.71 4.38 9.04 6.08 4.04 6.25 7.67 5.79 +64 4 23 11.92 8.00 7.54 7.96 12.21 7.41 9.79 7.17 6.34 7.29 9.17 6.54 +64 4 24 5.71 8.58 6.42 4.50 9.54 5.46 7.83 7.17 4.08 7.50 9.08 12.58 +64 4 25 12.87 15.71 13.83 9.96 14.71 12.42 12.29 15.21 8.75 14.75 20.21 18.54 +64 4 26 9.13 11.38 9.75 8.04 11.54 8.08 7.21 10.21 6.50 11.25 10.63 8.04 +64 4 27 16.50 15.25 15.83 10.25 15.09 12.71 11.42 14.37 9.96 14.46 16.75 17.16 +64 4 28 15.59 11.63 12.25 7.29 14.62 9.33 11.63 8.08 8.79 11.46 14.25 17.83 +64 4 29 14.37 14.96 11.12 9.71 17.04 12.00 15.09 14.62 11.87 14.67 17.67 19.92 +64 4 30 14.50 12.96 12.29 9.59 16.13 11.58 14.50 12.33 10.71 13.21 17.29 20.96 +64 5 1 10.96 10.71 10.50 6.67 10.41 6.54 11.08 9.87 6.92 11.34 13.46 18.38 +64 5 2 17.54 17.62 16.46 9.75 13.92 10.54 9.79 14.67 8.38 13.79 21.17 13.13 +64 5 3 22.17 21.84 20.54 12.67 25.66 17.04 20.08 21.12 15.67 20.25 28.33 25.66 +64 5 4 18.29 15.67 15.67 11.00 20.91 14.75 19.41 14.09 13.08 13.46 21.79 22.95 +64 5 5 17.75 15.34 14.83 9.33 17.96 12.46 15.54 17.88 11.25 17.62 24.58 23.16 +64 5 6 9.92 12.46 11.25 7.83 12.42 8.38 9.75 11.83 7.12 14.00 17.62 15.75 +64 5 7 19.50 15.25 20.04 13.33 17.25 13.70 16.66 12.12 12.50 15.75 14.96 11.96 +64 5 8 22.37 21.09 20.88 13.04 21.17 15.00 19.70 18.12 13.59 18.12 23.09 22.37 +64 5 9 23.29 20.96 21.34 13.42 19.67 15.59 15.96 18.21 12.21 17.41 29.00 22.46 +64 5 10 17.25 17.33 17.67 10.75 17.21 12.54 15.92 15.46 11.79 14.58 20.88 19.29 +64 5 11 18.91 16.92 20.46 10.34 14.00 12.33 15.04 15.34 10.21 16.13 20.62 12.58 +64 5 12 17.88 14.83 17.54 11.25 17.67 13.29 14.37 16.33 13.13 16.33 24.54 26.30 +64 5 13 7.83 6.54 8.00 6.29 11.96 8.92 11.54 10.92 8.38 10.88 16.54 20.41 +64 5 14 8.12 4.46 9.33 4.33 8.33 5.04 9.92 6.46 6.21 9.59 9.25 15.21 +64 5 15 5.33 9.46 7.29 5.37 9.71 5.71 5.25 6.54 4.42 7.21 9.38 7.50 +64 5 16 6.54 12.08 8.46 6.58 11.63 8.83 5.66 9.21 5.96 9.62 15.34 10.54 +64 5 17 12.12 11.83 7.54 6.54 11.67 8.50 7.08 9.29 6.04 8.54 7.54 9.75 +64 5 18 13.50 12.04 14.71 8.79 15.00 9.17 13.46 10.34 10.29 10.34 13.21 15.50 +64 5 19 8.96 9.71 9.33 4.96 11.04 7.46 7.33 8.79 6.46 7.17 13.46 14.58 +64 5 20 10.96 12.46 10.83 5.33 9.46 6.00 7.54 10.08 5.75 8.50 14.88 9.33 +64 5 21 14.75 13.75 14.58 6.96 13.08 8.87 6.96 12.50 7.79 12.42 20.33 12.29 +64 5 22 12.71 11.75 12.83 8.58 11.21 8.92 10.71 10.79 9.13 11.04 12.54 13.37 +64 5 23 10.67 10.92 17.75 8.17 10.29 7.50 10.92 10.63 8.12 9.67 12.79 4.46 +64 5 24 9.00 9.71 23.29 9.54 11.54 6.75 11.08 11.63 7.08 6.96 15.96 5.83 +64 5 25 10.21 6.08 24.00 9.25 8.42 5.54 11.29 8.46 6.63 7.00 13.88 4.71 +64 5 26 4.88 3.33 15.21 4.29 3.83 5.83 6.13 6.17 6.87 7.58 7.46 7.75 +64 5 27 12.17 16.42 6.67 5.79 13.83 6.46 8.87 10.34 8.75 10.54 11.92 17.58 +64 5 28 10.88 12.75 14.58 10.75 12.96 12.62 10.54 12.92 10.96 12.62 11.92 14.83 +64 5 29 10.83 12.54 6.96 5.75 12.58 6.08 8.17 7.75 6.42 8.12 8.38 8.29 +64 5 30 9.33 6.92 9.71 2.71 7.41 3.13 3.08 3.71 4.38 5.00 7.92 7.79 +64 5 31 12.29 8.75 19.33 7.92 12.62 11.00 13.54 13.37 12.17 13.70 16.21 18.12 +64 6 1 18.50 16.08 26.12 10.46 16.33 13.29 17.37 15.96 13.46 13.42 19.29 19.87 +64 6 2 10.75 11.67 22.29 7.38 10.54 6.79 10.67 11.96 8.87 11.58 15.75 16.79 +64 6 3 12.04 10.08 9.79 5.63 10.34 5.58 7.67 9.04 7.75 7.87 11.00 15.46 +64 6 4 19.04 16.71 15.75 13.37 17.62 11.38 15.50 12.62 13.00 15.25 13.00 19.12 +64 6 5 16.25 14.42 14.88 10.21 12.67 9.33 11.12 13.25 8.38 11.29 20.50 12.83 +64 6 6 11.00 5.91 13.33 5.00 8.29 4.12 8.25 6.00 5.58 7.00 8.75 11.12 +64 6 7 11.54 8.58 8.58 6.54 11.42 6.38 10.04 8.54 8.08 10.83 10.67 13.75 +64 6 8 12.46 12.83 10.34 7.92 12.46 8.75 10.71 9.54 9.13 10.71 14.04 11.29 +64 6 9 15.09 14.29 15.00 10.25 11.50 9.96 8.58 10.75 10.21 12.50 16.92 13.50 +64 6 10 20.41 17.25 15.92 9.33 16.21 10.21 9.62 13.79 10.50 14.29 22.75 14.67 +64 6 11 16.08 14.58 15.96 9.38 12.42 8.54 11.21 12.38 10.00 15.04 15.79 12.75 +64 6 12 10.54 8.75 9.71 6.21 9.71 5.41 6.75 8.63 6.67 7.83 9.29 8.87 +64 6 13 17.37 16.58 13.50 8.08 14.09 7.12 8.63 12.04 8.63 10.58 15.67 14.46 +64 6 14 15.21 13.92 12.54 8.92 17.88 9.92 13.25 13.21 11.58 12.96 19.08 20.04 +64 6 15 11.00 10.21 9.25 7.92 14.17 9.87 15.37 12.17 12.33 14.46 17.21 23.58 +64 6 16 10.63 8.42 11.17 6.54 13.79 8.29 13.21 10.21 10.46 11.25 15.34 15.21 +64 6 17 7.92 9.33 6.17 3.33 7.92 2.58 6.17 6.29 4.17 4.71 8.38 8.29 +64 6 18 8.63 10.34 10.00 4.92 9.50 3.63 5.91 8.71 5.21 8.25 11.50 10.88 +64 6 19 14.12 10.54 14.33 9.59 11.34 7.54 13.25 10.88 11.21 14.09 13.17 23.54 +64 6 20 11.50 6.04 11.58 6.63 10.13 6.08 10.25 7.38 9.17 11.63 8.75 15.96 +64 6 21 12.29 7.21 7.87 6.83 10.58 6.63 8.96 7.58 8.12 9.79 9.38 12.04 +64 6 22 8.08 7.33 5.50 5.66 11.12 5.29 3.67 6.17 4.79 4.46 8.87 6.25 +64 6 23 8.00 4.88 5.71 6.00 7.67 3.96 4.63 4.12 5.54 6.42 6.96 10.79 +64 6 24 3.54 3.17 5.46 2.79 4.71 2.92 4.29 3.58 4.29 5.25 9.96 12.54 +64 6 25 3.88 2.37 1.83 2.71 3.37 0.67 3.92 2.83 1.79 3.13 9.54 4.71 +64 6 26 6.21 7.50 6.17 3.29 8.58 5.41 8.00 12.08 7.92 11.50 19.62 15.46 +64 6 27 8.54 9.75 7.17 5.91 12.50 7.21 10.41 7.00 9.08 7.46 9.29 13.08 +64 6 28 7.38 7.62 5.83 5.25 10.75 4.92 5.21 4.67 5.75 8.08 7.33 14.71 +64 6 29 10.29 6.42 8.12 5.21 9.38 5.37 8.92 6.63 8.29 10.63 12.42 16.21 +64 6 30 13.08 7.50 7.12 6.63 13.17 8.21 14.88 11.38 11.04 13.17 12.00 16.66 +64 7 1 10.21 7.75 6.96 5.21 9.62 3.58 7.92 7.21 6.54 9.33 9.92 14.37 +64 7 2 12.00 9.67 6.00 6.17 10.34 6.38 9.87 10.17 9.00 10.34 13.00 16.50 +64 7 3 8.83 8.54 5.00 6.04 10.17 5.54 6.58 7.96 7.17 8.83 10.08 14.62 +64 7 4 8.21 10.08 7.62 6.71 8.04 4.17 5.21 7.00 7.33 8.29 9.46 13.46 +64 7 5 12.42 10.46 5.88 6.96 10.08 7.21 8.42 8.75 9.38 9.67 13.33 14.17 +64 7 6 9.50 7.62 6.87 5.25 9.17 5.91 6.42 7.41 6.63 7.75 10.75 14.67 +64 7 7 20.30 18.38 17.79 11.46 19.70 13.29 19.41 17.83 14.88 17.83 23.83 28.46 +64 7 8 17.00 13.67 12.38 10.04 16.96 11.54 16.21 13.00 13.54 14.79 18.05 27.25 +64 7 9 14.58 12.83 10.54 8.29 15.79 10.50 14.50 12.21 13.21 14.46 15.92 25.62 +64 7 10 14.12 12.71 11.63 7.58 14.37 9.25 12.25 10.04 10.41 11.42 16.42 16.29 +64 7 11 13.67 12.67 15.29 7.50 12.96 8.71 13.42 10.58 11.34 10.21 13.46 19.79 +64 7 12 8.25 5.50 7.79 3.63 7.08 4.92 6.54 6.08 6.38 5.37 8.71 12.12 +64 7 13 14.62 15.67 12.62 10.96 16.08 10.54 9.54 12.25 11.34 12.62 16.33 17.79 +64 7 14 15.09 15.21 18.05 10.58 14.67 11.34 13.54 14.79 11.50 15.79 23.58 17.41 +64 7 15 11.42 12.38 13.37 7.12 12.83 8.63 11.58 14.42 8.50 13.67 22.37 17.75 +64 7 16 6.79 9.46 7.00 5.46 9.96 6.08 4.29 6.21 4.75 6.42 13.88 7.96 +64 7 17 4.08 3.79 3.37 3.92 5.71 3.37 4.08 4.58 3.67 4.33 6.38 4.50 +64 7 18 11.54 9.50 4.12 4.08 10.21 4.92 4.63 9.87 5.29 5.33 10.79 8.50 +64 7 19 11.92 7.25 8.67 5.41 6.58 4.67 7.79 5.04 6.38 6.54 6.67 11.34 +64 7 20 6.46 7.96 6.17 3.04 5.91 2.96 2.50 3.46 3.58 3.67 8.87 6.83 +64 7 21 8.00 7.62 3.67 3.83 8.33 4.04 1.96 5.04 3.08 4.54 6.29 7.96 +64 7 22 6.42 3.21 2.50 3.79 4.42 2.83 4.63 3.71 5.21 5.66 6.46 9.04 +64 7 23 7.25 5.09 3.83 4.17 7.41 4.83 6.83 6.42 6.25 7.58 10.83 12.33 +64 7 24 9.13 11.29 11.21 5.58 10.92 9.25 9.96 14.33 9.38 12.46 16.21 14.92 +64 7 25 5.88 7.00 7.75 4.46 7.17 5.79 8.17 7.38 7.04 7.29 9.54 13.83 +64 7 26 7.46 4.21 8.58 4.63 4.25 2.92 3.96 5.17 5.09 6.21 14.12 15.37 +64 7 27 10.37 9.75 11.63 7.33 16.92 11.54 15.09 13.00 12.75 12.42 19.75 24.50 +64 7 28 10.71 9.33 7.67 7.21 13.83 12.00 11.96 10.17 9.67 8.50 12.04 17.16 +64 7 29 8.21 5.91 9.38 3.13 9.59 8.33 6.71 7.79 6.83 6.83 12.67 12.12 +64 7 30 6.92 6.21 10.50 4.92 10.63 7.08 10.13 9.67 8.46 9.75 13.75 16.58 +64 7 31 11.83 8.75 10.21 8.92 17.54 11.79 13.79 12.29 13.17 13.37 16.75 20.25 +64 8 1 16.88 10.34 13.04 11.54 17.75 13.50 16.54 15.04 14.21 14.42 15.41 17.04 +64 8 2 13.08 7.00 10.92 7.58 11.96 9.25 14.04 12.50 10.50 13.08 12.96 17.79 +64 8 3 7.92 7.08 5.96 4.21 8.50 5.50 8.71 7.46 6.71 8.75 9.25 16.66 +64 8 4 5.79 2.92 5.33 2.21 4.21 2.29 4.42 5.41 2.33 6.00 10.92 10.34 +64 8 5 8.04 7.08 11.04 4.75 8.33 5.91 7.67 8.50 7.12 10.79 14.50 14.46 +64 8 6 12.96 9.42 9.42 5.04 12.42 7.25 6.83 8.87 8.04 8.54 13.70 14.33 +64 8 7 16.17 14.71 8.46 7.67 15.96 9.62 9.21 10.21 8.33 9.50 14.67 9.50 +64 8 8 11.25 6.13 8.04 6.63 9.59 5.88 6.96 3.46 6.87 7.58 7.17 10.17 +64 8 9 7.00 4.96 6.83 3.46 4.42 4.63 4.88 3.75 3.50 6.00 6.63 9.96 +64 8 10 3.33 5.09 3.67 2.46 5.79 3.50 3.08 2.33 3.08 2.29 3.83 6.08 +64 8 11 6.00 2.58 7.00 1.79 7.21 1.29 3.63 2.21 4.42 4.67 4.63 7.33 +64 8 12 7.54 2.25 11.38 1.79 5.71 3.67 2.46 4.67 4.21 4.75 8.58 4.88 +64 8 13 4.92 3.13 16.71 4.04 4.75 5.71 5.09 4.58 4.04 5.21 10.34 5.54 +64 8 14 5.25 2.00 11.46 2.71 3.08 2.75 3.04 1.63 2.58 3.79 7.79 4.29 +64 8 15 4.21 6.13 4.67 2.79 5.54 2.58 2.79 2.37 2.25 4.83 5.33 5.63 +64 8 16 15.59 10.21 11.25 7.71 13.08 10.13 7.08 8.50 7.50 8.71 10.17 9.62 +64 8 17 12.54 7.79 15.79 7.33 9.67 7.58 13.42 7.50 7.92 11.29 11.50 16.38 +64 8 18 21.92 19.12 14.17 11.25 18.50 10.37 15.09 15.79 13.13 16.50 24.83 30.46 +64 8 19 12.54 7.71 11.46 7.83 10.79 6.67 10.67 7.92 9.25 12.21 10.34 15.83 +64 8 20 4.63 4.17 4.58 1.67 5.00 1.96 5.71 4.08 3.54 5.46 5.41 6.58 +64 8 21 6.87 4.96 6.58 2.88 6.17 2.46 4.25 5.58 3.25 5.21 12.04 11.42 +64 8 22 9.33 10.08 10.67 3.96 11.67 8.04 9.42 10.50 8.50 11.67 18.34 18.00 +64 8 23 19.55 17.54 18.88 9.71 14.75 12.25 13.62 15.12 10.41 15.59 21.92 20.46 +64 8 24 15.83 14.25 17.04 10.00 15.87 12.25 15.34 14.12 11.50 15.46 19.29 22.29 +64 8 25 15.09 16.38 15.37 10.88 14.00 12.42 13.00 13.46 11.71 14.92 20.62 16.62 +64 8 26 11.75 9.50 12.38 6.42 9.71 6.42 8.04 3.21 6.87 9.59 8.79 9.83 +64 8 27 8.67 8.29 10.50 4.96 7.46 5.00 7.12 4.04 4.67 5.66 7.04 5.46 +64 8 28 12.25 10.71 9.08 6.00 11.46 6.87 11.34 6.87 7.33 8.38 9.54 9.50 +64 8 29 7.12 6.71 7.83 5.13 4.29 4.58 9.25 4.88 7.04 9.54 7.04 16.13 +64 8 30 7.41 5.00 6.92 2.08 4.54 1.71 4.38 2.46 1.58 2.83 3.50 6.58 +64 8 31 14.12 14.09 11.54 5.21 12.87 8.54 7.21 8.96 6.96 8.75 9.17 10.34 +64 9 1 17.71 16.00 12.71 8.21 15.37 11.17 11.29 11.17 9.00 11.46 15.59 14.42 +64 9 2 8.75 10.67 9.96 5.54 10.88 8.00 10.00 8.46 6.67 7.96 10.54 12.71 +64 9 3 5.83 2.25 3.46 1.87 6.00 1.79 2.04 2.58 2.00 2.08 5.96 3.67 +64 9 4 6.71 3.21 4.29 2.42 5.25 1.17 2.46 2.17 2.37 4.08 4.50 4.71 +64 9 5 11.63 8.04 8.71 5.04 11.12 6.79 5.63 8.87 6.71 6.75 11.17 10.34 +64 9 6 10.58 4.63 5.83 6.04 10.29 6.75 8.58 7.54 7.87 9.42 11.08 14.54 +64 9 7 10.88 9.04 9.62 6.50 13.00 9.67 10.37 12.33 10.34 11.17 15.71 18.12 +64 9 8 9.42 7.67 11.25 5.75 10.88 8.04 12.33 10.21 9.96 9.38 16.42 17.58 +64 9 9 8.46 10.29 10.88 6.04 10.00 8.42 13.29 12.79 9.00 10.21 16.50 16.42 +64 9 10 14.09 13.96 14.50 8.71 11.58 10.04 14.58 10.50 10.37 11.92 17.33 15.37 +64 9 11 10.21 5.66 9.42 6.87 8.96 7.50 10.75 9.33 9.54 12.12 12.67 18.50 +64 9 12 9.42 9.33 7.38 3.67 8.83 4.29 4.50 6.87 4.88 6.08 8.54 9.79 +64 9 13 12.75 11.75 13.17 8.29 9.62 6.96 9.17 9.33 7.50 10.46 16.66 14.21 +64 9 14 17.67 13.46 14.04 8.29 15.12 9.96 9.42 11.21 11.71 13.54 17.96 18.63 +64 9 15 16.04 14.12 16.04 8.71 15.96 10.92 10.13 11.46 10.58 13.79 19.50 17.41 +64 9 16 16.79 12.79 12.25 7.41 13.37 9.29 8.08 7.96 8.83 9.50 12.87 15.87 +64 9 17 12.00 10.41 7.96 6.42 12.62 7.75 9.29 7.21 8.38 9.67 12.42 17.58 +64 9 18 9.29 9.96 9.62 5.66 11.67 7.75 10.75 7.46 7.62 7.87 14.75 15.87 +64 9 19 11.12 12.50 9.21 7.17 13.92 9.71 15.12 10.34 10.71 11.46 17.04 22.42 +64 9 20 11.38 6.21 9.87 5.00 8.75 6.21 10.17 5.37 8.87 7.38 11.17 12.67 +64 9 21 14.54 15.04 11.42 6.79 11.87 8.87 8.33 10.67 7.54 8.67 18.41 14.12 +64 9 22 18.12 18.38 17.54 10.00 16.04 12.54 14.21 16.42 11.34 18.54 18.50 14.58 +64 9 23 9.62 9.83 10.88 7.54 12.25 7.38 6.83 9.08 9.00 12.04 10.46 11.87 +64 9 24 22.67 15.75 20.12 12.67 18.50 13.21 15.04 14.88 13.04 14.62 15.34 15.09 +64 9 25 14.96 10.92 15.29 7.96 12.92 7.58 10.58 14.21 9.33 14.33 25.00 21.29 +64 9 26 10.58 6.46 10.92 5.88 11.17 7.33 9.08 8.54 8.33 9.79 12.50 14.92 +64 9 27 4.08 2.88 6.46 0.87 5.00 2.21 6.25 2.21 3.83 4.50 8.83 15.59 +64 9 28 3.21 7.58 7.00 3.33 7.58 5.13 6.87 9.04 4.67 8.12 15.83 15.29 +64 9 29 4.04 3.13 5.37 2.08 4.79 2.29 5.88 4.63 4.67 7.71 6.75 9.62 +64 9 30 9.21 1.75 15.29 1.58 3.67 0.92 3.67 2.25 3.63 3.08 4.08 3.88 +64 10 1 5.83 2.58 13.13 1.79 2.58 1.29 3.08 3.58 2.13 1.96 4.42 3.58 +64 10 2 8.67 4.21 10.96 2.75 5.17 3.08 6.96 5.54 6.21 8.12 6.13 8.12 +64 10 3 10.75 10.54 8.58 3.58 10.67 6.46 7.67 7.12 5.63 8.67 10.04 15.87 +64 10 4 12.21 15.92 12.08 6.83 15.83 8.58 6.87 12.79 7.79 10.17 15.50 14.50 +64 10 5 16.88 10.96 13.29 8.54 12.12 9.08 10.41 8.96 9.42 11.75 10.08 13.21 +64 10 6 22.92 20.71 18.71 10.92 18.08 14.17 16.46 14.21 12.33 15.21 16.25 14.17 +64 10 7 19.04 18.79 14.88 10.88 19.67 10.96 18.71 12.75 13.92 13.04 20.46 21.67 +64 10 8 17.71 16.83 10.41 8.67 15.50 10.17 14.83 10.79 12.46 10.41 20.04 22.34 +64 10 9 15.09 15.75 9.21 6.71 14.29 6.96 7.12 5.04 7.71 7.21 8.21 7.87 +64 10 10 13.59 9.62 12.12 8.50 8.79 7.62 15.37 3.63 10.83 13.54 9.08 10.92 +64 10 11 8.71 7.08 11.42 5.50 4.96 3.63 8.71 3.96 5.96 8.50 7.25 13.17 +64 10 12 5.75 5.37 7.83 3.54 4.88 3.04 6.75 3.21 3.13 4.63 7.83 8.46 +64 10 13 6.13 2.75 6.67 2.75 5.58 4.79 9.08 4.88 4.67 8.38 10.63 12.08 +64 10 14 14.50 12.08 9.71 6.42 10.21 7.54 9.13 7.33 7.12 8.79 16.46 13.42 +64 10 15 21.71 16.50 14.50 14.09 18.08 12.58 12.04 12.62 12.67 10.08 21.50 14.50 +64 10 16 10.21 9.59 9.62 7.04 8.33 6.96 10.13 6.71 8.25 8.58 10.13 16.79 +64 10 17 6.83 7.08 4.58 3.04 9.04 5.29 5.58 5.25 3.04 5.54 10.04 9.62 +64 10 18 7.67 11.38 9.83 3.21 6.25 5.96 4.17 9.54 4.21 9.00 12.21 11.54 +64 10 19 12.29 12.67 10.46 7.04 10.75 6.13 5.17 8.12 6.13 9.87 19.04 13.21 +64 10 20 7.54 8.38 7.79 1.96 4.00 3.42 5.75 5.33 3.67 7.92 11.00 10.00 +64 10 21 5.09 5.17 9.79 3.71 5.71 3.04 5.25 5.58 3.96 4.29 9.29 10.79 +64 10 22 14.00 11.96 8.17 6.75 13.25 9.00 12.00 9.50 11.21 12.29 20.58 24.71 +64 10 23 25.17 21.67 15.54 12.71 18.50 12.29 14.71 14.21 13.29 14.88 22.34 28.04 +64 10 24 9.67 8.54 8.75 4.08 9.13 6.50 10.37 6.25 8.00 9.08 11.54 16.96 +64 10 25 6.63 7.25 5.54 3.17 7.92 5.33 6.25 8.17 5.96 8.21 13.50 12.08 +64 10 26 13.67 11.08 11.75 5.09 7.67 6.63 6.25 9.96 5.83 11.12 15.37 14.37 +64 10 27 14.12 9.87 8.17 6.92 11.04 7.67 2.54 10.50 6.63 10.58 12.87 17.04 +64 10 28 8.42 11.54 4.96 2.54 9.71 5.25 2.46 8.67 4.50 7.87 11.96 12.87 +64 10 29 4.88 8.79 2.37 1.46 7.67 2.54 1.92 4.75 2.75 5.50 10.75 11.58 +64 10 30 6.58 10.04 7.04 1.54 8.38 3.33 1.75 6.04 2.62 4.04 7.54 9.79 +64 10 31 15.29 10.41 13.04 4.75 9.96 6.50 6.21 6.54 4.50 5.00 5.66 10.71 +64 11 1 12.87 11.92 10.50 3.37 11.12 3.63 2.46 4.63 3.54 3.63 7.50 7.83 +64 11 2 8.58 5.00 13.70 3.46 5.63 2.62 6.17 3.25 3.42 3.00 7.29 13.50 +64 11 3 10.21 6.58 21.59 6.50 6.29 4.71 8.54 5.54 5.96 5.00 6.17 12.25 +64 11 4 11.42 11.92 19.87 6.38 9.62 5.46 9.67 7.29 6.25 6.17 4.88 10.29 +64 11 5 9.46 6.71 18.46 6.54 9.42 3.04 8.00 5.88 4.88 3.88 1.50 3.63 +64 11 6 8.54 4.21 14.54 4.83 6.83 1.58 5.88 3.37 2.96 2.42 2.67 5.96 +64 11 7 10.75 8.54 12.33 2.96 6.63 3.75 9.21 6.63 3.25 5.79 7.38 8.71 +64 11 8 10.25 10.58 10.08 5.41 9.00 6.50 7.71 6.34 4.83 5.75 8.75 8.00 +64 11 9 5.50 6.17 6.13 1.25 7.96 1.08 3.46 4.04 2.13 4.71 8.33 11.67 +64 11 10 7.33 10.96 6.96 1.58 8.12 4.00 2.96 4.25 3.67 4.96 9.50 10.29 +64 11 11 13.83 14.79 13.08 6.08 12.46 9.42 8.96 12.71 7.87 11.67 16.21 17.29 +64 11 12 12.21 12.46 9.42 6.58 13.92 8.54 14.04 9.25 8.42 11.38 18.38 20.04 +64 11 13 20.54 19.92 18.12 10.34 15.87 12.04 16.13 15.21 11.71 15.92 24.04 22.83 +64 11 14 22.00 20.58 18.21 13.59 22.92 16.54 24.08 19.38 17.04 20.96 30.88 32.46 +64 11 15 19.62 19.95 16.08 11.75 17.50 13.50 17.88 13.83 13.96 13.37 23.63 23.87 +64 11 16 13.04 11.75 11.71 11.34 14.33 10.41 17.33 9.50 13.46 12.79 15.16 22.21 +64 11 17 15.50 16.54 11.75 5.17 11.54 7.67 9.62 8.17 6.58 6.50 10.50 9.08 +64 11 18 15.09 16.66 15.50 7.04 11.42 10.54 12.42 15.09 9.00 14.46 21.46 16.33 +64 11 19 7.83 8.42 8.67 4.00 7.12 5.66 11.29 8.67 6.13 9.79 16.38 15.12 +64 11 20 5.66 8.96 10.21 3.13 4.83 2.75 9.25 13.17 4.79 10.21 16.71 14.96 +64 11 21 3.25 9.21 6.13 0.75 5.33 2.50 6.46 7.29 3.54 7.33 14.96 12.96 +64 11 22 14.67 11.71 12.54 5.46 7.41 6.50 11.63 10.50 6.00 9.46 14.58 15.12 +64 11 23 10.13 9.25 8.87 5.46 10.54 8.54 13.54 11.12 10.34 12.79 19.00 18.88 +64 11 24 14.79 12.71 15.54 9.83 16.58 13.46 18.16 12.83 15.00 16.25 20.21 22.21 +64 11 25 9.87 7.79 8.79 4.50 7.62 5.13 8.50 6.17 5.79 7.67 10.46 15.12 +64 11 26 18.12 14.67 15.04 7.21 12.29 10.58 13.21 13.29 10.54 14.79 21.29 25.33 +64 11 27 11.21 12.87 9.42 6.34 13.59 8.08 16.08 9.71 10.75 12.42 20.21 22.75 +64 11 28 18.63 15.83 11.34 10.04 11.67 8.71 15.41 12.08 12.42 12.67 22.83 27.84 +64 11 29 24.54 17.54 19.70 11.04 15.37 7.38 14.71 12.00 10.13 13.92 18.34 22.63 +64 11 30 13.42 14.96 9.33 4.96 10.50 7.41 11.12 7.75 8.92 8.12 16.08 17.79 +64 12 1 23.87 18.46 14.33 9.59 12.87 8.87 12.42 11.63 9.25 11.42 18.54 19.58 +64 12 2 10.29 8.46 9.38 5.29 12.21 7.50 15.04 9.04 10.63 12.46 14.58 23.33 +64 12 3 19.50 13.33 13.70 11.42 14.83 11.58 15.79 11.58 13.04 14.09 16.75 28.62 +64 12 4 9.04 5.50 10.29 4.75 4.79 4.29 9.54 3.17 5.46 7.08 8.25 17.50 +64 12 5 9.25 10.67 9.54 5.29 12.25 8.96 16.42 9.83 10.37 10.63 17.25 16.04 +64 12 6 21.75 16.96 20.12 10.83 16.75 13.17 19.38 14.33 13.08 16.92 21.25 23.58 +64 12 7 25.84 14.54 23.96 14.71 13.62 11.25 16.75 9.87 11.50 9.92 12.62 15.63 +64 12 8 25.54 22.37 23.71 12.67 17.62 15.50 20.88 17.21 13.88 20.00 27.33 28.46 +64 12 9 12.96 12.42 12.58 5.29 11.92 8.38 13.54 7.17 9.08 8.92 14.67 16.83 +64 12 10 4.79 7.67 6.13 1.63 7.71 5.66 7.17 4.96 5.50 7.58 11.54 15.96 +64 12 11 17.58 17.71 17.04 8.71 15.75 12.87 14.00 15.00 11.08 14.21 25.37 22.95 +64 12 12 28.88 16.42 25.29 7.83 10.96 7.29 12.75 7.46 7.46 10.96 13.29 18.96 +64 12 13 17.54 14.88 13.79 9.67 15.54 10.41 15.71 10.25 12.12 11.79 18.38 19.00 +64 12 14 4.75 3.17 5.88 0.54 4.71 3.92 8.87 2.17 4.54 7.62 10.21 13.62 +64 12 15 16.00 12.08 11.34 5.58 11.71 10.54 7.83 12.54 8.38 13.33 18.00 19.08 +64 12 16 15.09 15.92 8.96 6.50 11.25 8.08 9.87 12.67 9.29 13.79 24.41 20.00 +64 12 17 18.34 13.04 16.17 9.50 11.34 7.08 8.21 8.33 7.75 9.92 13.13 17.12 +64 12 18 6.29 2.25 4.63 1.29 3.83 0.04 3.21 0.54 0.75 1.17 5.46 5.66 +64 12 19 7.17 4.54 7.41 2.17 3.08 0.96 6.29 2.88 2.08 4.50 9.79 12.67 +64 12 20 15.87 11.87 26.20 8.46 6.58 3.63 10.21 7.08 5.83 9.96 13.62 17.50 +64 12 21 13.29 13.21 27.50 8.12 12.25 5.79 14.37 7.75 8.00 10.88 12.38 17.37 +64 12 22 14.67 9.62 20.71 6.63 11.00 4.63 15.04 9.79 7.54 9.83 8.08 10.17 +64 12 23 11.17 7.87 12.04 5.88 7.79 4.00 10.34 4.46 5.50 8.75 3.04 5.25 +64 12 24 15.50 10.50 13.75 7.67 7.12 3.58 10.17 7.87 6.87 9.17 16.33 21.75 +64 12 25 13.08 7.58 14.12 6.71 6.58 4.96 10.79 4.38 7.00 7.83 12.00 17.75 +64 12 26 8.87 11.12 5.96 2.75 8.17 5.79 8.71 5.25 5.63 8.83 11.92 12.50 +64 12 27 21.67 16.17 20.88 8.71 8.87 5.79 10.37 7.17 6.08 8.12 11.96 12.54 +64 12 28 7.17 6.08 7.67 1.54 7.00 4.50 6.96 5.79 4.25 8.71 10.88 17.33 +64 12 29 17.71 18.29 15.63 7.92 17.33 12.71 17.88 11.17 12.08 15.29 22.75 22.08 +64 12 30 23.38 24.17 18.75 11.50 22.75 15.96 20.30 14.29 14.46 17.33 30.46 26.83 +64 12 31 16.33 19.25 13.37 10.08 17.04 12.54 19.83 13.79 12.67 15.04 21.37 23.58 +65 1 1 9.54 11.92 9.00 4.38 6.08 5.21 10.25 6.08 5.71 8.63 12.04 17.41 +65 1 2 11.75 9.83 10.13 4.71 7.62 4.29 7.79 5.13 5.25 5.91 12.12 14.96 +65 1 3 13.70 7.04 15.16 6.42 5.91 0.83 8.63 4.83 4.38 6.92 7.92 13.70 +65 1 4 4.04 4.21 6.46 1.21 2.75 2.08 7.71 3.13 2.04 6.00 12.08 15.67 +65 1 5 8.63 12.67 6.34 0.46 9.42 5.96 7.62 6.79 5.13 6.54 17.62 17.04 +65 1 6 16.79 16.62 14.88 5.33 11.83 9.13 14.79 13.33 7.41 14.42 21.92 19.58 +65 1 7 14.50 15.37 14.54 6.17 12.17 9.08 13.17 10.58 9.38 14.37 16.38 16.88 +65 1 8 13.04 15.29 8.79 7.17 13.62 9.04 13.21 11.50 9.75 12.87 20.21 22.67 +65 1 9 22.00 21.67 16.50 14.58 22.34 16.96 21.84 21.84 18.88 12.54 18.84 22.17 +65 1 10 28.88 23.38 24.92 15.59 15.96 16.13 19.62 17.37 13.00 20.25 21.71 19.67 +65 1 11 22.00 18.38 20.25 11.54 17.29 14.50 18.12 15.25 13.46 20.79 22.83 23.71 +65 1 12 15.29 18.88 12.79 10.34 17.62 12.75 17.21 13.75 12.50 15.83 23.87 23.04 +65 1 13 28.12 26.46 20.25 16.88 26.25 19.00 23.45 21.96 20.91 22.71 28.21 25.75 +65 1 14 16.92 22.67 15.41 11.50 21.46 12.62 20.12 12.38 14.29 16.66 24.71 28.58 +65 1 15 16.83 19.33 11.79 8.79 14.46 10.75 17.08 12.38 11.46 13.33 20.08 21.34 +65 1 16 25.75 27.25 19.55 13.88 25.66 16.29 18.84 17.21 17.54 15.25 27.58 22.88 +65 1 17 32.17 33.04 21.71 22.63 37.54 26.16 28.50 30.63 25.88 20.96 39.04 27.84 +65 1 18 17.08 15.50 11.75 11.00 14.37 10.29 16.96 11.17 13.37 10.92 18.34 14.09 +65 1 19 12.71 11.46 11.54 6.71 10.63 7.75 10.63 8.67 7.50 8.79 12.00 9.87 +65 1 20 16.54 15.59 19.87 9.00 12.42 11.79 20.12 13.70 12.29 14.33 15.50 20.83 +65 1 21 16.66 15.59 13.92 6.29 13.04 9.54 10.63 9.38 7.58 10.63 17.41 19.33 +65 1 22 12.38 12.79 9.00 5.75 11.67 8.08 11.34 8.38 8.17 8.12 15.50 16.00 +65 1 23 16.79 12.83 13.29 7.38 14.37 9.59 9.92 10.21 8.79 11.67 12.75 16.42 +65 1 24 3.71 1.75 7.21 1.00 3.54 0.79 5.58 0.54 1.04 3.08 3.33 7.83 +65 1 25 7.00 3.21 17.08 3.50 4.21 4.42 5.50 5.21 4.38 5.37 7.17 8.12 +65 1 26 10.08 8.50 15.96 5.71 7.58 5.04 8.87 7.79 6.00 8.42 7.17 16.92 +65 1 27 10.83 11.63 14.17 6.17 8.38 4.75 9.33 11.46 7.33 12.33 12.17 21.42 +65 1 28 13.37 15.63 19.00 7.67 10.75 4.63 10.29 8.58 7.17 7.96 5.75 11.79 +65 1 29 15.59 17.33 23.25 8.21 14.17 6.25 13.29 9.08 8.12 8.87 7.08 7.79 +65 1 30 18.88 21.25 27.12 8.92 13.83 8.17 15.09 9.96 9.13 8.08 9.79 16.96 +65 1 31 16.42 14.88 21.87 7.12 14.29 4.92 13.88 10.79 9.04 10.34 10.96 14.29 +65 2 1 15.83 9.71 15.29 5.00 9.29 6.96 8.63 7.96 6.79 5.17 9.50 6.34 +65 2 2 16.88 15.04 12.92 6.87 11.50 9.83 8.83 7.58 4.88 8.12 7.92 4.83 +65 2 3 8.67 3.17 12.38 2.46 6.21 2.71 4.21 4.50 3.88 5.83 5.13 7.12 +65 2 4 6.63 2.75 12.00 4.00 3.96 3.08 3.63 3.25 2.42 3.88 7.46 13.42 +65 2 5 7.92 4.88 7.71 2.08 2.50 0.29 5.66 1.46 2.17 2.75 5.21 12.08 +65 2 6 8.75 2.21 9.87 4.25 3.96 0.08 4.79 1.67 2.88 4.21 2.04 9.54 +65 2 7 9.21 7.21 13.67 7.29 7.17 3.33 9.38 6.83 6.08 8.38 7.92 14.92 +65 2 8 6.92 6.46 13.92 4.25 4.42 1.46 4.79 4.50 3.21 4.54 5.04 12.21 +65 2 9 5.79 4.08 5.79 3.75 4.75 0.92 6.00 2.33 4.42 5.58 4.17 12.42 +65 2 10 8.75 2.21 6.04 3.46 7.67 2.21 7.29 5.09 5.33 6.04 5.33 11.25 +65 2 11 7.62 5.96 6.87 4.71 9.62 6.87 12.87 8.75 8.92 11.34 15.21 17.29 +65 2 12 14.71 14.46 14.33 10.29 17.46 13.21 21.04 14.21 16.42 16.33 20.21 28.04 +65 2 13 18.75 14.42 17.71 12.75 14.67 11.75 18.63 13.37 14.54 19.04 19.25 32.63 +65 2 14 6.71 2.50 11.79 4.29 4.17 2.79 9.29 2.37 5.83 8.92 3.50 18.75 +65 2 15 2.92 2.79 8.38 3.63 1.92 1.58 8.33 1.17 5.17 6.08 4.42 10.71 +65 2 16 3.79 3.58 6.75 2.92 1.25 0.00 5.88 0.17 3.46 3.54 4.75 10.00 +65 2 17 7.92 6.83 12.96 5.66 5.79 2.42 9.42 4.75 5.29 6.17 4.33 7.96 +65 2 18 6.75 5.04 7.29 3.21 5.04 1.87 4.25 3.88 2.79 4.21 6.17 5.13 +65 2 19 9.50 6.87 19.33 8.33 8.04 7.83 13.46 8.79 8.29 11.92 10.58 16.25 +65 2 20 14.37 12.79 17.79 7.50 13.04 8.21 15.92 13.67 10.29 11.83 13.21 20.67 +65 2 21 12.38 10.88 17.58 7.00 10.17 5.88 11.83 8.83 7.58 9.59 7.71 12.79 +65 2 22 9.13 7.58 14.62 6.54 7.58 3.96 10.00 6.04 5.00 4.21 7.67 10.75 +65 2 23 6.87 4.88 8.79 3.71 5.50 2.29 7.41 4.88 3.71 7.54 8.54 14.21 +65 2 24 9.04 9.50 9.59 4.63 8.58 5.46 12.42 9.50 7.46 9.00 11.54 16.13 +65 2 25 11.17 8.71 10.83 4.12 7.00 1.63 4.79 2.79 3.29 1.87 4.21 9.75 +65 2 26 10.71 5.54 10.21 6.71 7.83 3.46 10.83 5.58 5.79 8.63 7.54 16.29 +65 2 27 4.04 2.00 6.08 1.96 3.79 1.17 8.46 2.25 3.50 3.58 3.67 8.92 +65 2 28 8.17 6.38 7.21 5.33 6.17 3.29 11.00 5.66 5.66 7.38 8.46 18.46 +65 3 1 15.41 18.50 18.75 7.54 14.50 9.42 17.33 14.29 10.83 15.04 18.66 24.17 +65 3 2 8.25 8.50 10.54 3.88 7.83 4.50 8.79 7.75 4.63 7.75 16.79 19.41 +65 3 3 17.67 12.92 15.50 8.08 14.79 8.42 14.83 10.13 9.54 14.17 13.08 23.87 +65 3 4 16.38 18.63 28.42 11.54 15.67 13.33 22.46 16.66 13.75 15.96 16.21 25.88 +65 3 5 12.21 7.50 13.42 6.71 4.96 4.29 11.54 4.25 4.17 8.63 6.34 12.58 +65 3 6 4.58 4.46 3.88 1.83 4.50 3.13 8.46 3.25 2.42 4.92 7.17 6.58 +65 3 7 3.92 10.29 8.04 3.13 7.71 5.41 10.63 7.92 6.17 8.63 13.50 16.17 +65 3 8 13.00 14.75 7.75 4.58 10.21 6.79 8.46 7.25 5.54 8.83 11.29 10.25 +65 3 9 17.00 20.75 14.88 10.58 18.38 11.34 9.33 12.79 9.54 13.29 13.75 14.62 +65 3 10 20.58 24.50 20.83 12.08 22.58 16.46 18.34 13.25 12.92 12.38 19.83 19.00 +65 3 11 18.96 14.83 19.12 9.83 17.67 13.75 12.42 12.38 10.50 11.34 17.71 17.41 +65 3 12 14.46 13.46 15.50 9.38 14.88 12.17 13.17 12.75 11.71 11.87 12.54 20.75 +65 3 13 6.21 5.50 10.79 4.38 4.29 2.96 8.58 4.12 4.92 8.04 8.21 9.79 +65 3 14 9.92 12.25 11.54 7.50 10.83 8.79 9.21 10.63 6.13 11.08 15.46 12.96 +65 3 15 18.58 20.71 16.62 10.37 19.70 13.54 15.92 14.62 13.13 15.83 22.13 20.91 +65 3 16 18.84 16.38 16.58 11.12 20.79 14.75 20.30 15.34 15.83 19.04 23.71 28.12 +65 3 17 13.25 10.88 12.96 4.21 9.04 3.63 6.63 5.00 4.12 6.75 7.67 14.50 +65 3 18 9.62 4.21 7.12 5.54 11.63 7.67 12.96 8.29 9.67 10.13 11.29 12.42 +65 3 19 7.50 7.58 6.79 3.54 7.00 2.79 7.12 3.75 4.96 7.92 6.46 9.54 +65 3 20 9.59 10.96 11.75 6.71 13.75 6.00 12.58 15.63 10.58 13.21 19.12 28.42 +65 3 21 6.17 8.79 7.38 2.67 6.42 3.13 12.08 10.83 7.50 12.50 14.12 29.58 +65 3 22 11.58 9.29 12.58 5.09 10.41 6.54 8.38 9.75 4.29 11.75 14.46 25.41 +65 3 23 6.38 7.87 9.46 4.12 7.00 5.88 10.50 7.29 7.83 11.29 12.12 23.00 +65 3 24 13.37 15.00 11.17 8.33 16.17 9.46 14.04 13.67 10.88 12.58 16.08 14.04 +65 3 25 21.04 19.46 15.29 11.00 20.00 12.54 17.12 12.62 13.04 14.09 14.79 14.75 +65 3 26 14.75 17.00 13.75 7.75 16.62 10.37 14.04 12.50 9.96 11.67 16.46 12.96 +65 3 27 15.83 19.21 17.62 11.46 14.71 12.62 16.66 15.21 12.25 16.42 25.17 18.66 +65 3 28 7.08 17.54 10.75 6.34 11.29 9.13 7.41 9.92 7.92 9.38 20.17 17.04 +65 3 29 12.08 14.58 3.75 6.00 10.13 9.13 5.71 7.92 6.54 7.12 13.29 14.21 +65 3 30 20.71 17.37 11.25 7.87 14.88 12.38 10.83 12.25 9.79 14.50 14.12 16.38 +65 3 31 18.38 21.71 11.08 9.54 20.54 14.21 10.67 15.75 10.34 13.70 17.33 14.09 +65 4 1 4.50 6.67 7.04 4.79 7.33 4.96 8.67 5.58 5.25 7.17 13.08 8.71 +65 4 2 4.83 4.88 3.71 2.37 3.08 1.79 8.12 6.75 3.88 4.54 13.21 6.79 +65 4 3 8.46 15.09 8.46 6.00 13.42 8.67 8.71 10.92 5.83 11.71 17.79 13.75 +65 4 4 14.25 14.21 13.04 8.04 12.96 8.29 11.34 10.88 6.75 11.34 15.83 12.25 +65 4 5 9.62 10.25 6.46 3.29 7.21 2.62 4.88 2.75 2.88 4.75 4.08 4.75 +65 4 6 7.12 7.46 8.83 4.04 9.08 5.88 9.17 7.83 5.17 6.87 12.75 12.33 +65 4 7 9.04 6.34 8.63 3.50 7.62 5.21 8.08 7.96 6.67 8.63 12.08 11.12 +65 4 8 5.54 5.29 7.54 4.83 8.92 6.71 9.92 7.29 6.58 7.58 9.04 12.96 +65 4 9 15.09 17.46 14.54 7.21 14.25 11.00 12.17 12.87 10.08 12.62 19.04 17.92 +65 4 10 16.58 15.41 13.59 11.25 17.83 12.38 18.00 14.71 13.33 13.04 18.05 21.17 +65 4 11 16.42 18.21 13.92 10.67 21.71 13.50 19.55 13.96 12.96 15.75 21.34 23.75 +65 4 12 18.91 14.88 14.12 13.83 20.21 13.37 18.66 14.42 16.13 16.62 18.08 20.38 +65 4 13 10.37 7.50 10.67 5.71 10.50 7.25 10.37 7.67 8.33 8.50 12.38 11.92 +65 4 14 10.34 10.96 10.96 7.54 15.83 10.08 12.46 10.75 10.79 11.12 15.71 16.66 +65 4 15 12.79 9.42 10.83 9.25 17.16 13.54 15.34 13.59 13.79 11.92 13.62 17.21 +65 4 16 15.96 10.54 11.79 8.87 15.09 11.71 16.21 13.59 13.04 13.88 14.96 18.34 +65 4 17 23.54 19.38 20.58 18.34 25.37 19.55 27.08 21.25 23.58 20.91 24.08 26.46 +65 4 18 23.42 16.04 11.83 14.58 21.12 15.37 21.87 17.33 19.50 20.33 20.62 29.46 +65 4 19 23.54 18.21 19.70 14.92 17.16 13.17 20.38 14.12 13.92 20.41 16.88 28.67 +65 4 20 11.54 4.92 16.42 5.71 6.83 4.42 8.04 3.17 4.63 8.08 4.83 10.54 +65 4 21 10.75 9.62 5.63 4.79 10.92 7.12 7.50 7.58 5.79 8.21 12.25 13.62 +65 4 22 8.25 10.75 7.54 4.54 8.83 6.50 4.79 7.62 4.38 5.71 9.83 13.25 +65 4 23 10.34 7.92 9.13 5.46 9.17 5.58 8.67 6.83 7.00 7.62 10.92 12.96 +65 4 24 14.71 13.13 10.46 7.21 14.62 7.50 8.08 5.25 5.37 8.08 10.67 11.54 +65 4 25 18.50 13.08 11.00 9.04 17.54 11.50 10.88 13.67 10.50 9.59 16.00 15.37 +65 4 26 26.63 18.08 18.46 16.25 23.25 16.21 21.50 17.08 17.83 19.62 23.50 25.80 +65 4 27 17.46 16.04 12.67 10.13 13.96 9.59 12.21 12.08 11.00 13.62 14.12 22.04 +65 4 28 6.83 7.41 8.33 4.79 6.46 4.83 8.33 4.92 5.79 7.58 8.38 18.21 +65 4 29 13.17 12.42 6.92 5.25 11.96 6.92 6.92 9.59 6.96 8.79 10.54 18.46 +65 4 30 12.50 10.67 9.79 7.33 14.09 11.29 10.25 12.08 6.83 10.08 14.67 15.00 +65 5 1 7.71 4.25 10.17 5.71 9.75 7.87 12.12 8.79 8.00 11.87 10.67 15.79 +65 5 2 9.96 11.00 13.08 7.50 10.67 8.50 14.00 9.13 8.75 13.00 12.50 17.29 +65 5 3 9.54 11.17 11.38 4.92 9.79 7.17 7.46 5.13 4.21 6.42 8.67 10.13 +65 5 4 14.29 12.67 10.25 6.92 14.09 10.21 11.00 9.71 9.25 9.29 12.04 10.79 +65 5 5 11.42 9.25 10.08 8.42 12.92 11.00 15.25 10.29 12.08 14.42 12.87 21.29 +65 5 6 10.92 12.04 12.71 6.71 11.17 8.29 7.08 8.25 5.75 7.92 12.46 10.63 +65 5 7 14.96 17.41 15.04 7.75 14.54 11.17 11.58 12.67 10.21 12.25 19.79 14.46 +65 5 8 18.63 16.58 20.50 12.58 18.91 15.00 17.46 15.83 15.87 18.16 24.46 27.12 +65 5 9 10.79 8.92 11.87 10.08 13.29 11.08 15.25 11.71 12.38 15.41 13.59 20.54 +65 5 10 6.79 11.79 6.96 5.88 9.96 6.75 4.79 5.58 5.00 7.71 10.41 10.46 +65 5 11 7.58 8.25 6.83 4.83 7.96 5.46 3.79 5.00 3.29 8.12 10.21 6.87 +65 5 12 12.46 21.54 11.12 8.71 13.70 11.17 8.46 11.12 8.58 10.54 12.62 14.75 +65 5 13 8.17 13.92 11.34 8.33 10.79 8.67 7.41 9.79 7.21 9.79 12.25 14.46 +65 5 14 6.58 7.83 6.71 2.62 4.79 1.96 3.37 3.54 2.00 3.50 9.38 6.29 +65 5 15 10.41 11.08 10.67 5.79 7.62 5.09 3.25 5.13 2.46 5.09 9.83 8.75 +65 5 16 9.38 6.42 11.71 5.50 8.54 5.25 5.88 7.38 4.42 6.34 11.46 12.92 +65 5 17 12.04 13.92 8.29 5.83 12.21 7.71 6.83 10.63 6.75 8.42 19.00 19.38 +65 5 18 16.00 9.96 13.42 8.71 9.92 6.58 9.87 7.04 7.41 12.17 10.21 14.37 +65 5 19 6.83 5.25 8.42 2.58 7.12 3.33 4.08 4.79 3.04 4.58 10.00 7.58 +65 5 20 10.58 13.67 9.67 8.17 13.04 10.04 7.17 9.75 6.75 9.96 20.41 12.38 +65 5 21 19.87 16.13 18.79 12.79 17.33 11.96 12.62 13.88 12.54 16.62 21.12 21.50 +65 5 22 15.12 12.08 12.58 9.92 13.37 11.29 10.21 9.04 9.38 11.87 12.46 14.04 +65 5 23 6.83 4.42 10.50 5.17 4.96 6.79 12.83 8.08 6.25 10.54 9.21 15.34 +65 5 24 10.71 10.08 10.34 5.00 12.00 6.25 8.96 3.54 3.96 6.75 5.17 12.75 +65 5 25 9.13 6.87 10.37 4.38 8.58 4.29 7.87 5.09 4.04 6.34 9.29 4.54 +65 5 26 10.37 7.83 6.25 4.29 9.83 5.54 9.54 4.17 4.71 8.25 7.21 11.67 +65 5 27 16.17 11.96 11.46 8.08 9.38 7.92 12.38 8.54 7.58 13.59 10.50 13.79 +65 5 28 7.50 9.17 19.12 6.71 8.38 5.63 9.13 9.25 4.25 7.50 16.04 15.12 +65 5 29 8.21 6.67 20.79 5.79 7.58 5.37 8.50 8.12 4.17 8.33 14.37 11.00 +65 5 30 12.25 9.92 8.75 6.67 9.50 7.17 9.17 10.29 6.79 11.54 15.12 17.67 +65 5 31 14.00 10.92 16.08 6.96 12.62 9.42 7.33 10.79 7.79 12.58 13.42 14.04 +65 6 1 5.66 4.17 16.08 4.00 4.38 3.83 4.17 2.96 3.00 3.42 6.79 5.04 +65 6 2 6.38 2.75 6.00 1.67 3.42 1.71 1.83 3.17 1.00 3.50 3.42 7.17 +65 6 3 8.46 6.21 5.91 2.17 4.75 3.71 3.79 5.58 2.79 4.38 12.79 5.50 +65 6 4 10.58 9.46 11.67 4.08 7.75 5.29 6.50 9.33 4.12 8.46 16.38 13.83 +65 6 5 9.75 8.08 9.25 3.88 6.71 3.29 3.46 6.58 3.75 6.21 10.96 9.59 +65 6 6 4.75 3.54 6.50 2.75 1.83 1.67 4.58 2.13 1.79 2.42 7.17 6.83 +65 6 7 5.00 3.13 4.46 2.04 3.17 1.50 2.50 4.33 2.46 3.83 10.46 3.37 +65 6 8 8.54 7.83 7.12 5.09 6.96 3.54 4.42 5.71 5.41 5.46 6.50 5.29 +65 6 9 7.25 4.29 7.83 3.21 4.54 1.96 3.54 2.29 4.46 4.12 7.33 6.42 +65 6 10 9.87 14.54 6.50 5.37 12.25 7.41 4.42 8.04 5.13 7.71 9.62 4.58 +65 6 11 11.71 9.83 11.50 7.08 7.92 5.83 6.29 6.54 7.04 7.92 8.92 10.00 +65 6 12 10.92 9.71 9.54 4.75 10.34 7.67 5.46 6.67 6.54 6.38 10.46 8.33 +65 6 13 5.21 10.71 6.83 2.83 3.46 3.75 8.50 7.92 3.71 4.63 14.83 8.33 +65 6 14 12.38 10.41 11.92 6.87 10.17 8.83 7.17 7.54 7.50 7.33 15.50 10.63 +65 6 15 18.63 15.79 18.58 12.12 18.79 13.42 15.67 12.21 13.54 15.54 9.54 13.59 +65 6 16 11.12 8.79 9.13 5.88 13.17 8.00 11.17 9.08 7.58 9.87 12.42 20.75 +65 6 17 16.66 17.37 15.25 9.96 14.67 11.04 13.42 12.00 10.71 11.71 16.71 14.83 +65 6 18 21.59 19.33 19.62 13.08 23.16 13.96 24.21 14.00 17.54 16.04 18.96 18.50 +65 6 19 15.79 14.09 12.96 7.50 14.54 10.08 13.83 11.96 9.96 10.67 18.46 17.83 +65 6 20 9.50 12.29 14.29 7.54 10.34 8.71 13.46 13.83 9.62 15.25 17.41 15.71 +65 6 21 7.08 9.46 10.67 5.33 5.96 3.29 5.17 4.29 3.63 5.41 9.00 9.25 +65 6 22 16.79 14.17 14.50 9.25 12.92 8.67 10.92 10.25 9.25 10.13 17.21 9.46 +65 6 23 22.42 19.41 20.75 14.54 24.33 17.12 21.04 16.33 18.25 20.04 24.58 28.08 +65 6 24 18.84 17.41 19.41 10.34 17.21 11.87 16.92 12.92 11.38 13.59 14.50 15.50 +65 6 25 17.58 15.29 15.54 11.42 17.71 13.08 15.12 13.62 13.17 14.33 19.55 21.09 +65 6 26 13.79 11.96 11.71 9.62 16.71 11.00 17.00 13.42 12.96 14.21 16.29 23.63 +65 6 27 8.12 6.08 5.79 4.21 8.50 6.08 8.83 6.79 7.29 8.58 13.00 16.66 +65 6 28 5.79 3.25 6.42 3.13 8.96 6.42 11.63 8.75 7.75 9.83 12.38 17.04 +65 6 29 5.63 6.38 9.38 4.17 6.17 3.29 4.12 4.08 3.79 5.88 6.00 13.17 +65 6 30 11.96 9.00 10.25 8.50 8.25 4.79 8.50 7.62 7.12 9.62 8.42 13.79 +65 7 1 9.59 10.08 9.59 5.96 6.96 4.96 8.54 6.92 6.96 9.42 8.42 15.54 +65 7 2 14.71 11.04 8.75 7.38 9.25 6.29 10.17 7.71 8.63 11.54 10.37 16.21 +65 7 3 9.33 9.67 14.37 8.08 7.41 5.54 9.38 8.67 6.96 10.34 11.00 16.33 +65 7 4 9.67 8.58 7.58 6.83 8.83 4.08 7.79 5.13 7.33 9.38 7.46 14.42 +65 7 5 8.42 5.63 8.33 4.71 8.58 4.79 9.92 3.96 7.29 7.75 7.62 13.17 +65 7 6 5.13 6.92 5.88 2.21 3.63 2.33 4.88 2.46 5.37 4.92 4.83 10.92 +65 7 7 9.46 9.87 5.09 6.00 7.75 4.71 7.75 7.29 6.50 10.58 10.34 15.83 +65 7 8 11.58 7.54 9.17 6.92 9.79 5.83 9.42 6.08 7.83 9.75 9.50 13.21 +65 7 9 7.62 6.00 8.67 5.13 9.38 6.58 7.04 6.58 7.29 7.46 7.87 9.25 +65 7 10 12.38 11.63 10.41 5.66 10.79 7.21 8.04 10.13 7.08 7.08 17.37 12.38 +65 7 11 12.87 8.58 13.37 6.38 10.50 7.25 10.08 9.29 8.71 9.59 14.04 13.83 +65 7 12 7.41 6.63 9.87 2.83 6.46 1.96 5.71 5.83 4.83 5.00 7.54 11.25 +65 7 13 9.42 5.88 10.21 3.88 5.83 3.92 4.50 7.67 5.33 7.25 11.29 16.04 +65 7 14 2.96 8.17 5.79 5.21 7.92 5.09 5.96 7.71 5.46 9.25 13.96 14.96 +65 7 15 5.21 2.62 16.92 3.33 5.88 5.54 8.04 6.79 6.83 6.21 5.04 13.42 +65 7 16 5.29 6.79 6.96 2.33 5.13 1.29 5.41 4.12 4.21 6.21 8.17 12.46 +65 7 17 6.00 10.67 3.50 3.83 7.54 3.04 4.88 4.33 3.71 6.34 13.21 9.29 +65 7 18 13.59 10.13 12.42 8.29 11.17 7.25 10.46 8.87 9.59 11.38 12.54 16.42 +65 7 19 4.54 3.71 12.00 5.83 4.33 7.33 8.83 7.00 7.58 8.71 7.33 15.34 +65 7 20 7.38 5.71 6.83 4.50 7.87 2.62 4.79 4.00 3.37 5.21 5.09 6.87 +65 7 21 10.92 8.08 6.21 4.63 10.04 3.92 7.21 6.79 5.71 6.42 9.17 8.83 +65 7 22 5.33 2.79 4.67 2.00 2.79 0.83 4.79 2.37 2.17 2.75 6.00 8.29 +65 7 23 8.00 4.83 8.87 3.79 5.54 3.33 6.96 7.21 4.42 4.96 10.79 12.21 +65 7 24 7.54 7.21 7.38 5.00 8.58 5.29 10.96 6.63 7.21 7.75 9.71 9.67 +65 7 25 13.79 11.21 9.04 7.21 9.92 7.29 7.79 9.83 8.50 9.13 12.33 16.54 +65 7 26 10.58 7.50 8.67 6.75 9.96 6.63 10.67 7.50 7.29 9.62 10.13 15.92 +65 7 27 15.37 13.17 11.12 7.17 12.12 8.71 12.96 10.04 8.87 9.87 12.50 10.00 +65 7 28 16.21 14.17 14.12 8.50 17.08 9.46 14.09 13.42 11.34 12.79 16.00 16.88 +65 7 29 15.67 10.92 13.46 12.00 19.08 12.75 18.71 14.29 15.04 14.00 16.71 18.58 +65 7 30 8.92 8.92 10.37 4.88 6.46 3.75 5.33 7.29 5.75 7.21 10.29 15.16 +65 7 31 11.08 7.04 9.67 6.54 11.58 9.13 13.29 11.92 9.50 12.00 13.96 18.79 +65 8 1 11.87 10.67 10.67 5.09 10.54 5.66 9.92 7.00 5.79 7.00 9.59 11.96 +65 8 2 11.29 7.92 11.75 4.58 8.38 5.17 7.71 5.75 4.58 6.92 11.46 14.17 +65 8 3 7.46 5.58 5.83 3.13 3.33 1.50 5.63 1.92 2.17 4.08 9.87 7.41 +65 8 4 18.71 16.83 16.25 12.04 14.67 9.54 11.92 12.08 9.46 11.46 17.46 18.63 +65 8 5 13.67 10.79 15.25 8.00 17.96 14.92 17.54 17.00 15.71 17.96 21.34 24.83 +65 8 6 9.46 9.33 9.75 6.83 13.96 8.79 12.33 10.04 9.75 11.75 14.46 18.63 +65 8 7 7.62 4.08 6.71 4.29 9.38 4.79 8.63 6.38 7.96 9.75 8.54 14.83 +65 8 8 5.00 3.37 7.21 3.04 5.46 2.58 3.58 2.08 2.17 2.25 5.96 6.96 +65 8 9 10.75 9.71 8.12 5.58 11.21 7.12 6.54 7.96 4.71 8.63 8.50 12.87 +65 8 10 11.42 10.83 10.88 9.04 13.54 9.96 9.75 11.87 9.42 11.58 14.21 17.79 +65 8 11 10.83 15.00 11.63 10.54 13.29 9.08 11.08 11.08 9.79 12.38 16.92 17.88 +65 8 12 10.58 10.46 10.92 7.62 9.79 10.50 11.17 8.71 10.25 12.42 9.59 13.21 +65 8 13 5.58 3.83 5.83 4.54 2.46 4.88 6.50 3.21 5.54 8.38 3.29 14.46 +65 8 14 10.41 7.33 9.50 5.46 8.46 5.41 7.12 5.63 5.58 7.50 8.63 11.54 +65 8 15 7.41 5.04 6.08 3.75 7.08 3.83 7.21 4.54 4.83 6.38 7.75 8.17 +65 8 16 7.87 4.08 6.92 2.04 3.17 2.00 4.21 2.50 2.33 3.00 8.50 5.21 +65 8 17 7.75 11.17 8.83 4.58 9.21 6.46 7.87 10.34 5.50 10.17 17.41 13.46 +65 8 18 12.79 11.00 12.58 6.79 12.75 9.50 12.67 11.79 10.00 12.38 16.54 17.16 +65 8 19 8.87 8.25 7.54 4.08 11.04 7.67 10.96 9.04 7.62 9.29 16.17 17.12 +65 8 20 17.41 15.21 13.42 8.21 15.12 10.29 14.17 12.75 10.37 13.96 19.29 19.87 +65 8 21 20.58 15.75 12.67 9.25 18.75 10.21 14.88 12.38 11.12 12.79 17.00 19.79 +65 8 22 26.20 23.42 16.71 15.67 20.17 13.59 16.83 16.00 14.04 16.71 22.50 26.67 +65 8 23 10.71 6.58 9.92 5.50 8.96 6.13 11.87 5.66 6.87 9.87 10.37 13.42 +65 8 24 16.96 15.21 12.12 7.71 16.96 10.75 16.42 12.38 12.67 13.50 17.25 20.00 +65 8 25 12.67 11.63 9.25 8.12 16.13 11.63 15.71 12.54 12.00 11.00 16.38 22.50 +65 8 26 8.33 8.21 8.21 3.54 5.58 4.29 7.79 4.58 4.04 5.37 7.62 12.92 +65 8 27 8.54 9.67 12.67 6.29 10.29 7.21 8.58 7.92 6.08 8.42 14.71 14.33 +65 8 28 12.29 10.63 10.75 8.04 16.25 10.83 16.92 12.87 12.46 12.00 18.05 21.29 +65 8 29 11.92 8.00 9.46 8.42 13.70 10.92 15.25 14.33 10.75 11.75 15.29 22.17 +65 8 30 8.67 5.96 8.33 5.17 10.25 6.87 11.87 8.87 8.08 9.33 13.25 20.67 +65 8 31 14.96 10.58 11.46 8.29 10.46 8.79 9.87 7.67 8.04 10.17 10.54 16.54 +65 9 1 9.54 2.92 12.96 5.79 2.62 2.92 7.75 2.21 4.67 5.83 5.75 8.25 +65 9 2 3.37 1.38 7.92 2.04 3.92 0.71 3.29 2.33 0.87 1.17 7.25 4.42 +65 9 3 13.08 11.92 12.00 8.12 10.96 6.29 10.63 8.29 7.12 8.50 11.12 15.96 +65 9 4 21.00 18.54 14.09 11.87 17.29 10.37 13.54 14.25 11.50 14.83 22.17 28.84 +65 9 5 20.62 11.58 13.13 10.63 13.54 8.58 11.29 9.67 10.04 12.42 12.00 19.38 +65 9 6 5.75 5.04 2.79 1.25 5.33 0.92 3.96 2.62 1.00 3.21 6.67 8.63 +65 9 7 6.96 4.58 5.00 2.88 3.54 2.29 5.33 4.46 3.50 4.12 7.67 9.50 +65 9 8 12.25 9.71 9.38 5.83 10.17 5.37 7.29 7.33 5.96 8.58 13.62 20.83 +65 9 9 15.54 9.62 9.87 10.00 13.04 10.04 16.33 11.54 13.29 13.59 16.50 27.04 +65 9 10 18.00 12.38 10.21 10.17 16.13 10.04 14.21 12.92 12.38 13.46 17.25 22.95 +65 9 11 14.42 7.38 12.08 7.41 9.75 6.75 10.92 7.41 8.96 10.29 8.79 16.50 +65 9 12 6.63 7.50 8.75 3.42 7.50 4.29 3.42 4.88 3.50 3.96 8.17 6.29 +65 9 13 2.79 5.63 6.75 2.83 3.71 1.96 2.71 2.00 1.42 1.42 5.25 8.21 +65 9 14 10.04 13.17 12.00 6.83 11.21 7.58 4.25 9.59 7.29 11.42 13.00 14.67 +65 9 15 7.83 5.29 11.96 4.17 6.04 4.38 6.42 7.92 5.09 8.96 12.12 11.50 +65 9 16 9.54 8.12 9.83 4.04 11.58 6.58 9.54 8.71 7.41 11.21 14.96 18.05 +65 9 17 24.87 19.25 19.08 12.21 19.50 12.92 12.71 13.25 12.42 13.29 13.79 15.87 +65 9 18 14.25 9.17 10.75 8.50 12.04 9.13 13.04 8.67 9.92 11.75 11.54 18.21 +65 9 19 13.96 15.83 11.46 7.21 12.71 9.38 9.25 12.00 7.50 11.00 24.71 16.62 +65 9 20 13.37 14.12 12.79 7.75 9.96 8.71 9.54 12.96 6.58 14.29 21.71 19.75 +65 9 21 12.83 17.00 14.54 8.58 12.71 10.92 12.21 14.37 9.59 17.12 19.87 19.70 +65 9 22 10.13 7.92 12.12 4.67 8.79 6.54 8.25 7.50 5.91 8.46 13.50 9.04 +65 9 23 9.54 4.67 10.92 4.58 6.50 3.63 4.21 4.75 3.67 7.38 9.59 11.25 +65 9 24 6.17 4.33 9.38 4.67 6.29 3.63 5.96 4.33 3.46 5.79 7.67 11.38 +65 9 25 9.54 7.29 5.75 4.50 8.67 5.41 4.29 9.38 3.58 5.63 12.62 12.87 +65 9 26 8.83 10.34 3.58 2.58 8.12 4.17 3.42 5.63 2.83 4.50 12.17 8.71 +65 9 27 12.42 11.87 7.96 5.17 11.34 6.79 5.37 7.96 6.04 8.63 11.34 14.00 +65 9 28 10.83 10.88 5.66 2.71 9.71 3.54 2.50 6.87 2.83 6.17 9.92 11.08 +65 9 29 13.29 7.83 10.50 9.13 10.67 6.63 11.63 12.29 9.46 13.75 15.09 25.17 +65 9 30 16.79 12.38 22.04 11.17 10.96 7.75 15.63 9.21 7.75 10.00 13.96 13.46 +65 10 1 10.08 4.29 9.54 6.50 6.71 3.25 8.00 4.38 4.63 5.71 8.38 9.00 +65 10 2 9.59 9.13 8.67 3.92 7.92 5.91 4.67 5.09 5.41 7.92 8.21 11.04 +65 10 3 17.16 13.83 14.58 8.75 14.46 10.00 9.79 11.04 7.25 10.83 13.08 12.25 +65 10 4 7.25 4.63 8.12 5.17 5.88 3.58 6.79 4.58 3.46 7.17 6.79 10.63 +65 10 5 7.17 0.75 4.75 1.79 2.25 0.87 2.13 0.13 1.38 1.71 2.42 2.04 +65 10 6 5.96 4.96 2.54 2.21 3.67 1.83 0.42 2.17 1.42 1.87 2.79 6.25 +65 10 7 8.92 4.67 8.00 3.17 2.13 2.33 4.96 3.75 3.71 5.04 4.71 18.96 +65 10 8 16.50 8.96 14.62 6.04 7.62 8.00 10.71 9.96 11.17 9.33 11.04 14.92 +65 10 9 13.50 7.41 15.12 5.58 8.50 7.38 11.79 8.71 11.71 9.17 12.08 11.54 +65 10 10 13.96 7.83 14.67 4.96 6.75 5.63 9.04 7.17 8.04 7.00 9.92 8.71 +65 10 11 9.62 5.58 7.58 1.50 2.83 1.08 4.00 3.58 4.38 6.87 4.42 10.79 +65 10 12 7.79 5.91 5.58 2.29 4.88 1.83 3.00 2.29 1.71 2.21 4.92 8.42 +65 10 13 7.33 7.96 6.75 3.58 6.13 5.09 3.29 3.92 3.21 7.33 14.37 13.25 +65 10 14 10.58 10.29 6.13 2.88 8.38 5.29 6.75 6.46 5.54 6.54 12.92 14.50 +65 10 15 12.67 8.08 8.21 5.00 9.50 5.50 10.08 7.87 7.62 9.17 12.46 18.96 +65 10 16 4.54 6.92 5.66 1.46 4.25 3.71 5.29 6.96 2.46 7.17 15.12 13.54 +65 10 17 3.67 7.12 3.58 0.75 3.42 3.37 4.96 4.46 4.17 6.42 6.71 9.92 +65 10 18 8.38 5.46 9.29 2.83 3.83 1.46 5.33 2.83 4.42 4.88 5.04 7.04 +65 10 19 14.33 11.71 13.29 5.75 9.87 7.58 9.21 6.83 5.91 8.58 12.17 14.29 +65 10 20 16.88 15.41 15.96 8.12 15.25 12.38 10.46 9.25 5.58 7.67 14.79 16.75 +65 10 21 17.25 14.88 16.04 10.34 16.38 12.33 11.87 12.75 9.59 11.38 14.54 18.54 +65 10 22 10.25 12.25 12.04 7.87 12.33 8.83 8.96 10.00 8.87 9.29 12.50 15.75 +65 10 23 12.04 12.33 10.34 6.00 10.41 7.83 7.87 7.21 4.71 8.29 11.17 13.04 +65 10 24 14.54 15.25 10.08 5.41 13.13 9.87 6.83 9.29 5.25 7.58 11.63 12.08 +65 10 25 11.29 10.21 9.62 6.50 9.46 8.42 7.17 6.75 5.37 6.96 10.29 12.96 +65 10 26 10.21 11.42 11.34 6.38 10.08 8.42 6.08 9.79 7.33 12.58 18.84 17.33 +65 10 27 22.50 19.83 21.25 12.46 16.13 13.33 17.00 18.54 12.46 19.55 25.17 20.67 +65 10 28 18.05 19.21 13.96 12.33 19.21 13.62 20.00 16.92 15.83 18.21 27.37 33.12 +65 10 29 18.25 18.54 14.79 9.50 15.54 11.58 15.12 15.59 11.00 16.17 23.21 24.50 +65 10 30 19.29 16.71 17.08 13.17 19.79 13.59 21.62 14.04 15.09 16.17 23.33 28.25 +65 10 31 25.46 22.00 20.54 12.71 19.95 13.25 19.21 16.92 14.50 17.08 23.16 23.38 +65 11 1 23.42 22.17 18.91 17.00 27.58 20.30 29.17 22.67 24.46 27.29 30.96 37.59 +65 11 2 11.71 11.71 12.67 6.96 9.42 6.54 12.04 5.21 8.33 9.13 12.71 21.79 +65 11 3 15.54 14.67 14.25 8.08 8.87 7.41 11.42 7.33 9.13 10.83 17.79 24.54 +65 11 4 8.17 5.79 11.42 3.17 2.92 1.29 6.04 2.00 2.54 3.50 8.33 9.96 +65 11 5 7.67 6.92 8.83 4.54 6.42 2.67 4.83 0.71 2.37 2.04 4.50 6.92 +65 11 6 21.12 12.29 22.42 10.41 13.08 10.54 16.00 12.38 12.58 12.17 12.71 14.37 +65 11 7 18.63 15.34 13.59 8.67 15.96 10.54 11.58 14.37 11.38 13.00 16.71 25.96 +65 11 8 16.13 8.54 15.12 10.29 12.62 8.12 9.59 8.08 8.75 12.87 12.83 14.92 +65 11 9 13.79 8.08 10.88 8.04 7.92 5.75 9.38 4.63 7.17 9.17 5.79 11.75 +65 11 10 9.83 11.08 11.34 4.29 10.08 5.33 6.96 6.38 5.46 6.54 10.25 8.21 +65 11 11 17.50 15.34 17.41 8.71 14.92 9.38 14.83 12.12 9.46 11.58 11.00 19.67 +65 11 12 8.58 6.17 11.04 2.71 6.04 3.37 6.75 6.29 4.29 7.41 6.96 13.33 +65 11 13 15.29 7.58 13.33 4.29 10.71 6.00 8.50 8.87 6.08 9.04 11.71 16.38 +65 11 14 22.54 13.83 19.70 8.00 17.00 12.00 11.63 14.50 9.29 9.29 15.37 13.59 +65 11 15 23.54 22.00 17.92 7.71 17.41 9.62 11.34 11.67 8.83 7.87 14.42 12.46 +65 11 16 27.21 16.79 33.25 14.92 23.42 18.58 27.58 23.50 19.75 19.70 22.83 33.50 +65 11 17 13.54 12.42 18.84 10.54 12.50 11.17 25.33 17.92 15.92 18.75 20.91 41.25 +65 11 18 4.04 8.75 1.83 1.71 9.33 4.08 15.92 12.96 11.50 14.75 18.54 35.50 +65 11 19 10.00 10.08 9.87 6.25 11.17 8.00 9.75 11.00 8.71 11.63 11.96 25.88 +65 11 20 10.29 9.83 18.96 7.29 9.54 7.71 15.75 10.63 8.67 12.00 10.54 27.92 +65 11 21 13.92 9.62 19.75 9.08 9.79 6.13 10.75 8.54 6.87 10.67 9.13 18.25 +65 11 22 12.04 3.29 14.42 6.17 4.08 3.04 10.67 4.58 6.67 9.08 8.42 15.79 +65 11 23 14.83 13.50 13.04 10.25 14.46 11.46 20.00 11.92 13.25 16.75 18.96 29.38 +65 11 24 8.87 7.50 6.96 1.75 6.25 3.96 7.46 2.50 2.62 4.88 6.38 13.59 +65 11 25 20.00 14.00 17.79 10.17 12.08 8.58 13.75 9.42 8.17 12.00 14.12 18.25 +65 11 26 11.50 11.50 9.54 3.63 10.25 6.83 9.33 6.00 5.25 6.87 11.75 14.29 +65 11 27 19.87 18.25 13.79 11.08 13.54 9.25 16.33 10.41 10.50 12.12 15.09 24.71 +65 11 28 9.38 10.54 7.33 3.33 9.75 4.79 9.50 2.54 5.17 6.29 6.25 12.75 +65 11 29 28.42 24.08 28.46 19.08 18.66 15.00 20.33 14.75 14.42 21.29 23.87 32.05 +65 11 30 14.50 13.33 18.38 12.46 10.50 9.67 19.38 9.50 12.75 15.00 16.33 26.92 +65 12 1 10.29 10.46 10.08 3.83 10.50 8.21 9.96 5.29 6.25 7.12 10.54 12.46 +65 12 2 18.50 23.13 13.79 12.67 21.84 13.37 19.25 15.71 12.58 13.88 24.54 20.04 +65 12 3 24.87 23.33 15.37 13.21 19.25 11.50 15.96 12.38 13.42 11.42 17.12 14.25 +65 12 4 15.63 12.67 10.54 6.58 12.04 7.17 6.46 6.04 5.79 6.46 13.79 12.33 +65 12 5 14.96 17.37 10.63 10.37 17.37 10.00 15.63 11.83 10.58 13.08 20.08 22.25 +65 12 6 21.62 21.29 12.87 14.96 17.58 12.83 18.63 16.62 16.25 15.25 26.08 25.66 +65 12 7 14.71 9.67 11.54 8.63 7.25 6.75 11.00 7.62 7.54 8.96 13.92 17.21 +65 12 8 16.79 16.00 15.00 7.12 15.04 10.54 13.46 11.54 10.67 13.42 16.38 16.46 +65 12 9 26.46 23.21 21.00 17.37 27.29 18.75 24.00 21.75 20.38 20.21 26.38 24.17 +65 12 10 21.87 21.34 11.38 11.21 16.17 8.63 14.29 8.71 10.71 9.00 12.04 17.58 +65 12 11 10.96 10.75 7.92 6.08 10.63 7.08 11.54 6.25 9.42 11.00 11.04 15.29 +65 12 12 18.05 16.13 11.79 6.17 13.04 8.87 8.92 9.96 7.96 7.54 9.96 7.54 +65 12 13 10.79 10.75 10.29 6.75 12.17 8.79 14.29 11.12 9.83 11.46 15.96 15.00 +65 12 14 24.41 21.00 19.00 12.75 18.91 15.16 11.63 14.62 12.58 17.37 18.25 19.29 +65 12 15 14.21 11.50 15.21 7.96 9.62 8.71 8.54 10.17 8.54 13.62 20.08 14.58 +65 12 16 15.67 14.92 11.67 5.83 14.00 9.04 8.21 9.75 7.38 10.71 15.50 13.88 +65 12 17 26.30 20.75 23.09 11.67 16.42 11.34 17.92 14.50 11.29 16.96 18.21 19.58 +65 12 18 5.29 2.83 5.50 1.83 6.04 4.75 7.50 5.63 5.00 8.08 13.04 14.37 +65 12 19 4.96 4.12 6.71 3.63 7.12 4.79 11.71 4.50 6.96 9.92 14.29 21.34 +65 12 20 8.46 2.46 10.63 2.83 2.25 1.75 8.96 1.92 3.33 6.34 7.83 10.29 +65 12 21 8.92 9.13 7.79 1.29 8.63 5.46 9.42 5.88 5.00 7.33 10.67 13.04 +65 12 22 17.12 13.00 16.58 7.12 13.88 9.13 9.38 8.79 7.58 8.67 9.13 10.58 +65 12 23 14.88 15.92 9.59 7.87 12.87 8.08 11.04 7.04 7.29 8.04 11.08 9.21 +65 12 24 8.50 11.04 13.42 4.75 8.08 5.09 7.12 7.04 5.21 7.50 7.92 13.04 +65 12 25 11.00 5.91 11.96 5.79 6.87 3.58 7.38 3.33 5.17 7.25 8.63 15.37 +65 12 26 7.96 6.04 11.17 2.71 5.09 1.13 5.79 1.17 1.29 4.25 4.46 11.21 +65 12 27 12.58 6.71 17.67 5.13 8.08 3.37 6.38 2.88 3.54 2.50 5.13 11.25 +65 12 28 10.08 9.71 8.25 2.58 9.96 5.54 6.58 5.58 2.96 4.67 10.21 8.42 +65 12 29 20.12 17.21 18.66 12.46 16.00 12.58 12.50 11.96 11.04 15.09 19.46 19.08 +65 12 30 14.42 20.67 11.63 10.29 18.08 10.96 17.41 14.04 12.83 14.33 22.63 19.17 +65 12 31 13.62 13.88 12.29 6.08 12.33 7.41 9.59 10.21 7.46 12.17 15.71 16.75 +66 1 1 22.04 21.50 17.08 12.75 22.17 15.59 21.79 18.12 16.66 17.83 28.33 23.79 +66 1 2 18.71 19.50 12.67 10.08 16.29 9.79 17.46 10.83 13.88 12.38 15.63 16.46 +66 1 3 6.83 9.04 6.00 2.33 7.12 4.67 7.83 3.58 3.46 3.79 7.92 7.71 +66 1 4 16.54 16.75 16.42 9.62 13.96 13.70 15.46 13.79 11.04 14.58 18.66 24.00 +66 1 5 20.50 16.88 18.79 13.17 14.17 12.38 12.83 14.29 11.63 15.92 23.91 20.08 +66 1 6 19.70 16.29 17.50 13.17 13.13 11.87 10.96 14.25 10.00 16.13 22.13 20.88 +66 1 7 18.88 16.50 13.50 11.71 14.83 10.37 10.50 13.04 10.34 15.29 21.04 21.17 +66 1 8 13.42 10.17 16.21 12.04 10.71 9.08 12.50 8.96 11.42 14.96 16.79 20.25 +66 1 9 13.42 17.46 16.46 10.58 13.70 10.83 13.37 12.12 9.50 13.25 15.21 16.66 +66 1 10 17.62 3.33 26.67 14.54 18.21 17.04 19.21 20.75 15.50 18.25 21.37 29.04 +66 1 11 18.34 15.29 21.67 10.21 17.25 12.54 19.55 14.96 12.17 14.88 19.67 21.92 +66 1 12 19.21 18.96 17.25 8.17 15.37 9.21 16.46 9.87 9.04 10.37 12.79 15.16 +66 1 13 21.00 17.54 16.79 8.00 20.21 9.83 12.29 9.71 7.54 8.54 12.29 10.29 +66 1 14 19.08 13.96 17.96 5.54 13.08 6.67 10.83 6.75 6.00 6.71 8.75 7.38 +66 1 15 11.92 8.87 15.21 5.91 7.08 2.21 6.29 3.08 4.08 4.38 4.42 7.29 +66 1 16 9.00 5.58 9.25 4.79 4.50 2.21 4.71 3.25 3.50 4.04 3.63 10.75 +66 1 17 11.21 9.59 8.75 1.92 6.21 2.17 2.79 4.12 1.71 3.00 7.71 4.63 +66 1 18 20.41 15.50 15.46 7.75 14.50 8.46 8.50 9.08 4.67 5.25 11.08 8.42 +66 1 19 22.42 17.08 20.91 10.41 18.88 12.08 14.33 13.83 10.13 8.75 14.96 15.63 +66 1 20 9.71 3.96 16.58 4.46 5.50 5.33 12.33 5.96 9.13 9.13 7.83 15.75 +66 1 21 9.25 7.29 9.42 2.62 5.09 3.54 4.75 4.17 2.88 3.46 7.58 6.96 +66 1 22 12.42 6.21 14.58 4.50 8.00 5.75 8.54 8.33 5.50 7.75 9.00 14.83 +66 1 23 6.96 2.79 4.96 0.67 3.88 0.25 1.13 2.29 1.54 4.04 5.13 4.88 +66 1 24 7.96 7.67 7.71 5.33 9.00 7.17 8.08 11.04 8.83 8.21 10.79 7.54 +66 1 25 24.08 22.58 22.67 15.83 24.00 18.12 20.46 21.92 14.92 18.12 20.91 28.54 +66 1 26 18.84 15.71 15.96 11.58 16.46 11.96 19.08 10.79 9.46 14.88 10.96 22.83 +66 1 27 12.87 14.29 11.92 9.42 13.00 10.58 12.25 10.08 8.12 6.21 12.08 9.50 +66 1 28 23.58 23.58 20.08 15.92 19.17 14.71 17.46 16.29 12.75 18.12 21.87 21.34 +66 1 29 23.67 19.04 22.13 15.46 15.16 13.42 16.79 15.79 12.79 16.08 20.67 19.00 +66 1 30 11.79 11.08 14.50 8.38 13.92 9.79 14.33 9.04 10.37 15.59 15.37 21.96 +66 1 31 9.50 7.79 4.17 1.58 7.46 2.75 3.79 4.67 2.71 3.04 7.83 7.54 +66 2 1 17.21 22.83 14.17 9.38 19.17 12.21 13.75 15.04 10.75 11.08 18.00 16.71 +66 2 2 16.42 14.83 15.46 10.58 15.21 11.34 13.54 12.62 10.54 15.71 21.04 19.55 +66 2 3 21.21 18.88 17.29 13.92 16.46 12.50 10.96 14.29 11.08 14.42 20.33 18.16 +66 2 4 20.04 15.29 17.21 10.50 14.33 9.59 10.96 10.75 10.25 12.50 18.12 16.54 +66 2 5 23.45 18.34 20.75 12.79 16.66 13.00 19.33 15.21 13.25 16.66 22.00 20.33 +66 2 6 11.42 9.42 10.21 3.83 9.21 6.00 10.63 8.92 6.96 10.79 14.50 15.37 +66 2 7 14.04 12.83 12.04 5.63 11.96 7.00 8.04 8.17 6.13 8.63 12.29 16.33 +66 2 8 17.16 12.00 15.00 6.83 10.34 3.33 4.58 2.54 2.96 10.13 7.12 33.04 +66 2 9 3.37 3.17 5.09 2.54 6.25 4.00 6.13 5.75 6.13 8.50 8.79 21.96 +66 2 10 9.17 5.21 11.63 3.96 8.63 7.67 13.29 10.29 9.71 9.50 13.25 16.88 +66 2 11 12.58 11.79 11.50 5.09 15.71 8.67 11.42 14.25 9.96 10.25 17.75 16.04 +66 2 12 11.25 6.25 14.50 6.13 10.79 8.58 12.67 10.67 9.25 14.37 15.59 22.29 +66 2 13 14.58 16.21 11.00 4.71 14.50 6.79 11.63 9.67 7.00 10.54 14.37 17.62 +66 2 14 21.67 20.41 16.88 10.67 22.29 13.37 12.42 17.29 11.00 13.00 20.96 18.41 +66 2 15 19.08 15.75 23.16 12.12 22.34 15.12 16.46 19.21 13.08 16.13 21.79 25.04 +66 2 16 19.08 21.62 16.75 10.46 21.37 12.29 10.96 17.04 10.92 15.41 19.25 21.62 +66 2 17 21.96 24.21 17.62 11.29 24.00 14.25 13.70 18.25 11.87 15.63 22.25 22.04 +66 2 18 15.87 15.29 21.46 9.96 18.79 13.50 13.59 17.83 11.12 13.70 19.29 21.79 +66 2 19 15.12 13.62 13.54 8.17 12.75 7.96 10.04 9.83 7.25 9.13 13.54 18.58 +66 2 20 15.21 13.17 15.04 9.79 12.33 8.67 11.92 9.83 7.87 11.75 12.46 21.79 +66 2 21 10.08 7.58 12.42 5.79 9.38 5.71 8.71 7.87 5.79 8.96 8.12 13.62 +66 2 22 21.17 19.46 12.96 11.29 19.83 8.63 13.59 7.38 9.46 8.75 12.96 12.87 +66 2 23 12.33 11.67 11.67 9.33 15.25 10.17 17.79 11.50 12.67 15.71 18.71 18.25 +66 2 24 20.08 16.58 17.12 11.12 15.25 10.50 12.00 11.50 9.13 14.42 16.75 16.54 +66 2 25 32.38 29.33 25.00 21.59 25.41 19.50 21.84 24.37 16.66 24.25 35.08 29.46 +66 2 26 27.63 19.29 24.21 15.37 19.46 16.04 22.95 18.66 16.04 22.50 24.67 26.71 +66 2 27 21.34 17.79 19.92 14.17 21.09 14.88 23.63 16.96 17.96 21.87 24.25 27.96 +66 2 28 14.21 11.71 11.92 9.67 14.12 9.67 14.79 10.37 13.67 12.71 14.92 17.75 +66 3 1 23.13 21.46 17.62 9.21 16.38 12.08 9.38 14.09 9.83 14.88 22.13 18.12 +66 3 2 18.05 14.42 16.58 10.79 15.79 10.67 13.92 13.62 9.75 14.54 21.62 19.08 +66 3 3 11.25 10.08 10.75 5.96 12.62 8.71 10.46 10.17 8.33 12.96 17.08 18.46 +66 3 4 11.87 6.71 7.92 4.96 10.79 6.21 9.71 7.00 8.63 10.25 11.54 15.67 +66 3 5 9.00 11.67 10.34 3.96 11.21 6.71 10.29 13.42 7.92 14.29 21.59 20.50 +66 3 6 18.34 17.96 15.96 9.04 13.13 12.42 12.17 17.46 10.46 16.04 25.46 20.62 +66 3 7 18.54 13.37 17.79 9.96 14.09 12.08 16.04 11.34 10.29 14.29 19.29 16.96 +66 3 8 7.17 3.46 6.21 4.71 7.75 5.00 9.04 5.91 6.42 8.83 9.71 14.42 +66 3 9 11.63 8.54 8.63 5.88 14.83 8.87 16.13 8.79 10.41 11.92 15.29 17.58 +66 3 10 18.71 16.00 14.54 11.79 20.88 14.00 22.29 17.79 18.29 19.46 23.04 26.38 +66 3 11 23.71 16.42 15.63 14.88 21.34 13.67 20.62 16.79 15.87 17.29 24.08 31.17 +66 3 12 13.46 8.38 10.58 9.92 11.38 7.87 11.25 7.00 9.00 11.92 11.79 15.67 +66 3 13 10.83 6.21 7.50 7.00 10.54 5.41 11.21 4.92 7.62 8.12 8.08 10.75 +66 3 14 6.13 1.58 5.79 3.63 5.79 2.58 8.63 3.04 5.17 6.79 5.50 11.54 +66 3 15 1.79 2.04 4.17 2.00 3.79 1.50 8.21 0.67 3.63 4.50 7.17 11.79 +66 3 16 3.21 10.21 4.96 3.42 9.42 5.33 6.87 7.33 4.00 8.21 17.08 12.83 +66 3 17 11.38 8.54 9.50 6.17 10.83 8.87 14.83 10.88 9.83 12.92 14.62 19.12 +66 3 18 4.33 4.33 3.46 2.54 3.25 2.17 7.21 3.04 1.87 4.38 10.96 7.12 +66 3 19 4.04 9.33 5.88 3.21 6.13 4.42 5.25 5.71 3.42 3.58 17.12 11.96 +66 3 20 5.75 7.33 6.08 2.67 9.08 6.29 8.87 8.33 7.50 10.34 16.71 18.16 +66 3 21 7.54 9.04 5.21 3.50 10.83 6.83 9.96 6.17 7.38 9.71 11.58 14.67 +66 3 22 9.67 4.58 5.63 7.50 11.17 9.67 13.17 9.54 10.34 11.79 15.92 21.96 +66 3 23 19.46 13.17 13.42 14.09 19.87 12.71 20.54 13.59 16.50 16.75 21.59 27.84 +66 3 24 25.08 19.12 19.21 17.41 21.12 16.54 20.83 16.13 16.79 19.79 25.75 27.12 +66 3 25 14.04 11.29 13.37 8.71 10.17 8.79 10.92 8.04 8.38 9.50 15.63 16.33 +66 3 26 20.83 19.87 15.75 14.96 24.37 17.88 21.29 17.79 17.75 18.08 24.87 25.75 +66 3 27 32.13 23.29 21.87 24.17 30.09 23.00 28.62 23.79 24.87 24.58 31.71 34.00 +66 3 28 15.09 11.79 12.50 10.67 13.88 9.79 14.54 8.83 11.04 12.96 15.00 18.84 +66 3 29 10.17 6.54 7.96 7.08 10.21 7.54 10.92 5.79 8.42 9.67 11.42 16.66 +66 3 30 8.71 6.42 9.17 7.38 11.42 8.46 13.59 6.75 9.42 9.62 13.00 16.17 +66 3 31 9.87 7.58 10.34 6.50 10.04 8.12 12.08 6.79 9.87 9.96 13.17 14.50 +66 4 1 19.08 12.67 18.88 10.63 13.62 13.04 14.42 12.79 10.92 9.62 17.58 18.08 +66 4 2 12.83 11.12 23.50 9.04 9.21 6.38 11.25 3.50 5.29 8.75 7.71 9.00 +66 4 3 15.63 15.63 11.29 6.21 14.75 7.87 10.58 9.29 8.75 6.96 12.79 11.25 +66 4 4 28.29 27.58 25.62 14.79 27.29 17.88 21.25 20.04 16.88 14.54 21.71 24.71 +66 4 5 13.92 12.42 20.00 10.88 16.21 13.42 17.37 15.63 12.54 16.08 17.41 32.00 +66 4 6 5.04 4.67 8.33 2.54 4.96 2.42 4.88 3.50 3.79 6.50 5.29 15.79 +66 4 7 11.25 7.87 8.04 4.67 9.08 5.17 9.33 10.46 9.87 9.08 12.12 16.33 +66 4 8 15.37 15.71 10.92 7.58 16.66 10.88 11.42 11.92 11.12 10.54 17.62 24.87 +66 4 9 11.38 6.79 14.42 7.87 10.50 9.21 18.63 9.33 12.50 13.17 12.08 32.55 +66 4 10 9.79 11.42 9.54 6.46 11.00 6.25 10.41 8.63 7.21 9.33 11.21 24.96 +66 4 11 12.21 9.96 10.21 7.25 15.09 9.83 14.21 15.25 10.71 11.25 16.88 23.87 +66 4 12 14.96 12.38 14.71 9.71 15.96 12.75 17.71 16.66 13.62 10.92 17.08 29.92 +66 4 13 23.13 22.17 20.30 13.62 20.88 13.59 24.71 21.71 17.50 15.25 23.16 28.25 +66 4 14 28.25 26.96 23.13 14.42 22.54 15.46 21.79 22.37 16.17 18.12 25.84 33.55 +66 4 15 16.33 16.00 16.54 12.08 16.04 11.00 20.62 20.25 15.12 14.50 25.37 33.95 +66 4 16 7.29 9.29 8.79 3.46 6.96 6.67 10.41 13.54 12.12 11.38 19.00 29.33 +66 4 17 15.71 14.29 12.58 5.54 11.58 9.50 10.71 13.67 11.00 10.00 16.92 21.04 +66 4 18 20.46 14.62 15.29 10.13 13.00 9.50 16.66 14.58 12.25 11.34 16.88 26.12 +66 4 19 18.41 14.46 10.50 8.83 12.08 9.21 11.71 10.75 9.67 9.50 15.12 15.09 +66 4 20 12.87 11.38 11.71 9.00 11.75 8.29 11.96 7.62 9.17 10.34 12.08 14.29 +66 4 21 14.33 14.75 10.88 7.29 11.00 9.04 7.87 7.00 7.41 8.75 12.33 15.96 +66 4 22 22.08 21.62 18.41 12.42 15.63 12.75 15.29 16.25 11.63 16.00 23.96 16.38 +66 4 23 19.33 16.50 18.58 12.54 14.29 10.54 12.96 10.75 9.08 12.58 13.21 12.54 +66 4 24 13.62 11.21 10.41 7.41 13.79 7.75 11.08 8.42 9.00 9.42 11.83 9.62 +66 4 25 10.46 12.46 10.00 5.91 9.17 7.17 9.21 10.29 6.21 9.87 15.00 12.79 +66 4 26 23.33 21.84 18.88 16.08 20.50 15.71 13.75 15.09 13.33 17.33 17.50 18.46 +66 4 27 21.71 20.67 16.62 16.21 23.67 18.21 20.88 19.33 17.75 18.96 23.00 26.92 +66 4 28 12.67 15.63 11.75 7.33 12.33 10.50 13.54 14.50 9.50 13.37 23.54 19.29 +66 4 29 14.17 16.54 15.37 11.17 14.33 12.42 13.29 13.17 8.33 15.09 26.12 21.54 +66 4 30 10.34 14.25 7.21 8.54 13.70 8.87 4.75 10.50 8.21 10.58 17.88 16.17 +66 5 1 4.04 5.50 4.75 3.79 6.25 3.75 4.54 5.13 3.29 6.38 11.38 7.87 +66 5 2 7.12 5.91 7.25 2.08 5.71 1.50 1.96 3.46 1.75 4.00 9.62 5.00 +66 5 3 13.25 10.71 11.08 7.12 9.50 6.29 7.38 5.54 5.25 6.17 8.67 6.04 +66 5 4 18.34 14.62 14.79 11.42 18.38 12.92 15.34 15.09 13.54 14.54 19.58 21.84 +66 5 5 20.50 18.91 15.09 10.25 18.84 10.21 11.34 10.00 8.75 8.42 15.29 13.04 +66 5 6 27.25 19.70 19.12 15.75 20.79 13.75 16.00 14.42 12.92 15.92 19.70 22.54 +66 5 7 15.71 12.08 14.21 8.71 10.75 7.58 9.38 7.58 8.67 10.41 14.37 13.70 +66 5 8 16.88 13.67 10.17 5.91 9.33 5.04 5.96 5.54 4.46 6.13 9.46 8.54 +66 5 9 14.54 9.79 12.08 9.59 9.13 9.46 12.62 6.58 10.88 13.88 11.79 20.30 +66 5 10 16.29 15.09 14.67 11.42 13.21 11.87 10.50 13.25 11.75 14.42 23.16 21.29 +66 5 11 10.13 7.87 10.37 5.04 5.88 4.75 6.34 5.17 5.37 8.46 10.08 9.08 +66 5 12 7.29 6.46 5.63 2.50 6.67 3.46 5.79 1.96 4.04 4.83 7.62 6.34 +66 5 13 15.71 16.83 16.08 8.54 16.46 9.46 11.54 14.33 9.87 14.67 24.71 18.21 +66 5 14 13.59 13.46 12.17 7.46 15.21 9.79 11.79 11.08 9.71 12.21 18.84 18.29 +66 5 15 6.21 9.29 5.09 2.92 6.96 4.29 6.25 8.21 4.42 8.12 17.33 13.29 +66 5 16 10.37 14.25 10.29 6.42 12.00 8.33 6.75 9.62 7.08 10.21 21.12 16.71 +66 5 17 8.96 7.71 9.08 6.54 11.38 8.25 9.87 7.50 8.83 8.58 13.75 15.87 +66 5 18 10.00 11.54 10.41 5.21 12.83 8.42 9.17 8.71 7.79 6.92 16.46 15.83 +66 5 19 17.46 14.09 13.42 9.54 15.04 11.38 12.00 10.17 11.25 12.75 17.58 18.63 +66 5 20 8.71 11.79 10.96 6.67 9.13 7.29 9.25 6.46 7.33 8.29 13.83 16.71 +66 5 21 18.08 19.38 18.16 12.04 14.50 12.62 15.96 13.75 10.71 12.67 20.75 12.00 +66 5 22 23.13 19.12 18.08 17.16 22.04 17.50 24.41 19.08 20.25 21.37 25.88 27.04 +66 5 23 14.50 13.33 11.29 9.13 12.75 11.29 15.04 10.79 12.71 13.21 15.87 20.12 +66 5 24 14.92 14.58 12.71 7.08 12.12 9.96 10.75 8.79 9.92 10.29 16.58 10.17 +66 5 25 17.00 15.37 13.37 10.92 18.25 13.00 14.96 13.67 13.33 12.71 18.96 18.00 +66 5 26 13.13 9.17 7.54 8.08 8.67 7.87 11.38 7.41 9.38 11.58 11.54 12.08 +66 5 27 11.67 5.09 10.67 4.58 4.83 4.63 8.17 5.25 7.25 6.71 7.00 12.00 +66 5 28 13.46 13.92 12.08 4.67 8.54 7.54 6.54 6.71 7.87 7.29 9.33 15.09 +66 5 29 15.12 14.46 12.42 5.46 9.38 8.33 5.66 7.67 7.25 8.46 9.08 8.92 +66 5 30 10.92 9.21 7.96 3.37 6.29 4.92 2.62 3.92 4.75 4.79 5.37 4.25 +66 5 31 5.33 3.50 4.12 1.38 2.46 1.58 0.83 2.54 1.79 1.92 5.29 2.54 +66 6 1 7.67 6.25 3.79 4.71 6.00 3.88 4.54 5.37 6.00 8.00 7.25 12.83 +66 6 2 5.66 2.67 7.21 3.04 1.87 3.17 4.79 2.96 5.09 5.71 8.96 14.25 +66 6 3 6.67 10.58 10.83 5.33 4.71 6.63 8.58 8.21 5.75 8.58 13.83 12.62 +66 6 4 21.21 18.29 19.79 11.08 17.21 12.67 16.54 15.75 13.08 16.88 22.21 16.71 +66 6 5 10.63 9.79 9.17 7.58 9.96 8.58 10.41 6.96 8.75 9.71 11.12 15.41 +66 6 6 12.58 10.04 11.58 5.04 6.96 6.00 5.33 2.37 4.88 4.29 6.67 8.25 +66 6 7 7.04 5.13 8.17 2.42 3.25 1.33 2.50 1.54 2.04 4.00 6.92 4.08 +66 6 8 4.79 10.08 7.00 4.46 5.58 5.58 5.04 4.00 5.71 7.71 13.50 9.59 +66 6 9 15.83 18.12 14.62 8.17 11.67 5.88 7.96 10.29 6.54 7.83 16.29 8.25 +66 6 10 20.67 16.08 20.46 11.17 11.50 8.29 12.08 11.00 8.87 9.54 14.54 10.92 +66 6 11 10.92 6.54 16.33 3.96 4.46 7.29 7.04 4.83 7.00 8.50 10.41 6.58 +66 6 12 6.79 1.83 8.75 3.88 0.50 1.38 2.50 1.33 4.04 5.58 5.00 11.71 +66 6 13 8.46 4.71 10.41 3.58 2.58 3.29 2.29 0.75 2.58 2.37 4.92 10.29 +66 6 14 12.29 10.92 10.46 7.33 7.92 6.21 5.17 4.38 6.38 7.87 10.25 9.04 +66 6 15 16.96 17.25 11.87 11.17 13.75 9.33 8.67 10.25 10.04 12.71 12.92 15.37 +66 6 16 16.17 13.54 12.38 10.25 14.21 10.67 10.34 10.41 10.92 12.96 12.79 18.21 +66 6 17 12.79 10.71 11.58 7.29 6.83 7.04 8.63 8.54 7.38 10.34 16.00 14.12 +66 6 18 9.17 8.75 11.42 4.83 8.00 6.50 5.58 7.08 6.46 9.00 13.29 8.04 +66 6 19 8.63 8.04 8.87 5.04 6.50 5.66 6.34 3.88 4.75 7.41 8.42 7.17 +66 6 20 7.50 9.42 7.17 2.58 5.66 3.46 4.21 2.37 3.79 5.25 8.21 8.25 +66 6 21 6.50 6.38 9.33 2.46 4.63 2.46 4.71 2.00 4.29 3.25 9.08 4.50 +66 6 22 7.75 5.75 5.79 3.58 3.46 3.42 3.63 1.58 3.46 2.92 5.66 6.50 +66 6 23 6.71 6.83 10.17 5.09 9.00 5.88 8.92 4.38 6.83 6.54 7.54 8.12 +66 6 24 15.12 11.67 11.34 9.38 13.83 11.00 14.42 10.21 12.08 11.87 13.25 15.67 +66 6 25 10.83 9.67 9.87 5.37 11.50 8.50 9.71 7.87 9.42 9.59 13.75 12.38 +66 6 26 12.33 13.67 13.37 7.41 14.79 9.75 10.75 8.12 9.25 11.08 16.88 13.50 +66 6 27 20.50 14.25 15.21 10.63 16.92 11.87 17.00 11.25 13.59 15.67 16.66 21.62 +66 6 28 9.21 5.41 9.33 6.08 8.29 6.46 11.12 4.04 9.42 11.29 9.17 13.50 +66 6 29 7.75 4.00 7.41 2.58 6.21 2.67 4.46 2.21 4.58 3.25 11.29 6.96 +66 6 30 5.83 5.04 6.21 4.04 8.25 5.37 6.42 4.54 6.63 6.54 11.87 14.67 +66 7 1 9.42 5.91 7.41 3.54 7.12 4.17 3.71 5.29 5.33 6.87 13.33 15.87 +66 7 2 9.25 7.25 8.12 4.12 6.83 4.29 4.83 3.29 6.42 7.21 9.00 13.33 +66 7 3 8.21 3.71 6.00 3.54 3.17 0.58 2.88 1.00 2.04 2.83 8.63 6.25 +66 7 4 2.58 4.08 6.25 1.42 4.12 1.08 1.46 0.96 3.37 3.00 7.67 10.63 +66 7 5 14.83 11.21 4.42 5.00 11.75 5.00 1.63 4.25 5.91 5.75 10.96 11.92 +66 7 6 10.08 10.92 9.46 6.54 7.71 5.66 6.96 4.08 7.33 9.17 9.33 12.00 +66 7 7 8.33 4.21 8.21 4.75 8.33 5.13 6.79 4.29 7.21 6.83 8.38 12.92 +66 7 8 7.92 8.50 7.79 3.79 8.00 4.63 5.83 5.63 6.50 7.33 11.50 12.58 +66 7 9 6.71 6.92 6.96 5.09 10.21 6.08 7.67 6.29 7.21 7.12 14.50 15.75 +66 7 10 15.54 13.70 11.04 7.62 13.42 9.87 7.50 11.38 8.67 11.08 16.00 15.37 +66 7 11 11.42 7.50 12.04 6.54 8.79 5.83 7.58 6.58 7.92 6.54 12.04 13.29 +66 7 12 10.25 10.17 10.34 8.87 16.04 10.29 13.79 10.63 12.29 10.83 17.21 20.58 +66 7 13 18.91 15.00 12.21 10.88 17.83 11.63 14.83 12.58 13.75 14.58 18.25 21.34 +66 7 14 14.25 9.46 10.54 8.46 12.62 8.54 10.08 8.08 10.13 9.92 13.79 15.54 +66 7 15 18.75 13.29 11.34 9.54 15.79 10.46 10.25 10.92 10.37 10.96 15.37 12.83 +66 7 16 18.08 12.83 8.96 8.83 13.17 9.04 6.17 8.08 8.33 7.75 12.42 10.83 +66 7 17 12.71 10.08 9.04 6.29 7.50 4.75 4.75 6.38 6.29 7.38 9.62 10.67 +66 7 18 6.29 4.21 7.29 2.21 5.04 1.00 1.38 1.67 2.08 1.83 5.33 2.96 +66 7 19 10.17 7.33 13.88 5.54 9.54 3.83 5.46 5.75 5.50 5.88 6.92 5.63 +66 7 20 13.50 9.46 23.00 9.71 11.83 6.58 9.38 9.13 8.67 8.58 13.59 12.29 +66 7 21 10.96 8.17 17.33 8.08 8.38 6.38 7.17 8.75 7.41 8.96 13.25 9.00 +66 7 22 12.17 6.54 7.21 7.04 10.92 6.42 7.79 7.71 7.92 7.75 11.38 17.16 +66 7 23 9.50 9.79 10.37 7.96 16.42 9.59 13.21 8.54 12.21 10.46 14.71 18.71 +66 7 24 22.34 14.12 14.25 10.46 18.66 10.04 12.46 9.79 11.50 11.92 14.83 16.46 +66 7 25 12.17 10.50 9.83 6.96 13.29 7.62 9.42 8.46 9.46 8.33 14.21 12.00 +66 7 26 16.92 14.50 11.17 8.79 15.41 7.83 10.04 12.00 10.08 11.00 16.25 18.29 +66 7 27 9.29 6.96 8.63 4.88 7.50 4.17 5.46 6.34 6.42 6.00 10.54 14.04 +66 7 28 14.00 10.79 10.13 7.79 16.04 10.25 11.21 12.75 10.92 11.71 14.33 17.58 +66 7 29 17.92 12.29 9.13 9.46 15.67 10.71 10.71 11.46 13.25 10.88 15.67 16.71 +66 7 30 18.66 12.04 9.96 11.38 16.66 10.37 13.17 9.83 11.96 11.79 12.79 21.75 +66 7 31 8.54 7.25 5.88 3.13 6.25 1.75 3.33 1.42 3.63 2.21 4.33 6.87 +66 8 1 6.54 7.29 8.33 3.83 4.79 2.17 5.41 1.67 4.88 5.96 5.09 10.37 +66 8 2 15.46 11.50 13.29 6.04 10.79 6.00 5.41 6.42 5.66 4.96 10.25 10.08 +66 8 3 10.00 8.42 9.46 6.46 8.38 4.29 7.08 7.04 7.25 7.67 7.96 9.46 +66 8 4 14.46 7.50 9.04 7.96 11.79 7.12 10.63 9.21 10.63 9.04 11.54 14.17 +66 8 5 8.50 6.50 9.13 5.96 9.46 6.92 9.50 8.33 8.00 7.29 9.54 12.12 +66 8 6 6.13 6.00 6.96 1.71 5.63 1.79 3.17 1.83 2.17 2.71 5.09 5.91 +66 8 7 10.29 6.50 6.54 5.71 7.96 3.92 5.83 4.17 5.71 2.54 9.33 4.17 +66 8 8 9.96 10.71 9.54 3.88 12.29 6.83 8.25 8.58 8.29 7.54 13.21 10.34 +66 8 9 20.08 17.46 16.38 9.79 18.79 12.92 12.79 14.88 12.29 13.13 18.12 20.00 +66 8 10 14.42 10.25 15.12 7.92 15.29 9.33 17.46 11.42 13.46 13.21 17.67 27.54 +66 8 11 13.21 9.75 12.25 7.41 10.13 6.34 8.58 4.79 5.46 3.54 7.75 9.46 +66 8 12 6.46 3.54 4.42 3.46 6.75 2.42 6.54 3.75 3.83 2.67 6.63 7.08 +66 8 13 12.87 5.33 9.96 6.79 8.58 3.04 9.67 5.29 6.21 5.09 11.42 10.83 +66 8 14 12.25 8.17 6.04 2.96 10.92 2.46 2.88 5.66 3.29 1.92 8.63 8.79 +66 8 15 6.75 6.29 7.50 2.79 4.21 1.87 4.17 3.50 2.96 2.08 11.21 5.09 +66 8 16 9.04 14.96 12.42 5.25 9.92 6.96 8.87 11.83 7.25 9.29 21.46 19.50 +66 8 17 8.38 9.92 10.79 4.71 6.34 4.29 7.00 3.67 5.21 4.00 9.08 7.83 +66 8 18 4.75 4.08 3.58 2.42 3.21 0.37 3.08 1.58 0.96 1.29 9.96 8.29 +66 8 19 4.08 7.41 5.50 4.04 4.54 3.29 4.63 4.33 5.00 6.08 8.00 9.25 +66 8 20 7.29 8.00 8.04 3.21 8.25 3.88 3.46 5.88 4.38 6.46 11.83 10.83 +66 8 21 9.87 10.08 17.37 6.58 9.25 5.91 8.46 8.79 6.46 8.63 14.58 11.21 +66 8 22 9.83 6.46 18.41 4.92 6.96 4.38 6.58 3.79 5.75 6.71 10.67 7.29 +66 8 23 4.96 4.25 8.71 1.87 4.75 0.71 3.21 2.00 1.67 3.67 4.08 5.21 +66 8 24 4.00 10.46 3.58 2.58 7.67 3.13 5.09 1.79 2.08 4.38 8.54 9.38 +66 8 25 10.58 12.96 7.33 4.12 10.21 3.79 6.38 7.29 7.21 8.00 12.92 12.21 +66 8 26 13.29 12.17 11.00 5.96 14.00 6.54 9.17 10.17 8.83 10.17 12.75 17.46 +66 8 27 16.13 15.09 11.12 7.33 15.34 9.00 8.17 11.50 8.75 9.33 13.67 18.00 +66 8 28 15.46 12.12 11.08 6.79 13.96 8.96 8.96 9.62 9.46 10.34 12.00 17.92 +66 8 29 11.42 7.83 11.71 8.29 11.96 9.04 10.25 12.25 9.38 10.13 14.04 18.66 +66 8 30 16.92 12.46 11.25 7.75 11.83 5.50 6.58 8.33 5.79 7.00 12.25 10.04 +66 8 31 14.33 8.25 8.63 7.54 9.67 5.25 6.13 5.29 6.04 6.00 8.79 10.25 +66 9 1 17.41 16.54 15.04 7.83 11.83 7.62 7.62 10.96 6.67 7.00 13.54 11.12 +66 9 2 14.71 11.83 12.96 10.88 16.66 9.96 12.50 10.08 10.88 8.54 11.75 12.29 +66 9 3 19.00 18.84 15.12 10.46 15.96 11.38 14.37 12.21 10.25 14.21 19.41 18.91 +66 9 4 16.46 13.42 15.79 10.29 17.00 11.08 14.67 12.21 11.87 13.50 18.66 24.08 +66 9 5 17.04 16.66 16.38 9.75 16.54 11.63 15.67 15.46 12.83 15.50 24.17 24.83 +66 9 6 10.04 8.96 9.71 7.71 15.75 10.34 16.38 11.63 14.00 13.17 20.25 30.34 +66 9 7 5.63 4.42 2.29 1.96 6.42 3.71 6.75 4.17 4.92 6.75 9.59 16.96 +66 9 8 6.17 6.71 6.75 3.17 4.83 1.29 3.83 0.92 2.54 4.08 7.62 9.42 +66 9 9 10.96 12.62 10.04 6.63 12.25 8.58 7.96 10.71 7.58 10.29 17.83 14.42 +66 9 10 16.88 12.04 14.88 7.04 11.17 8.25 11.96 9.79 7.79 12.21 15.41 11.54 +66 9 11 10.34 5.41 12.58 5.04 6.00 3.54 3.96 6.21 3.54 4.17 15.16 11.63 +66 9 12 15.63 17.04 14.62 8.96 18.29 11.00 13.04 11.34 11.83 12.17 17.79 16.96 +66 9 13 16.50 13.13 9.83 9.00 16.46 10.50 15.41 11.71 11.75 11.25 16.42 19.12 +66 9 14 18.16 16.58 17.50 10.04 20.62 12.33 18.21 16.08 14.04 15.96 22.92 26.92 +66 9 15 17.96 14.96 13.13 11.17 13.88 9.75 16.29 11.67 11.17 15.04 16.25 24.96 +66 9 16 7.75 7.08 6.38 2.62 5.83 4.46 6.13 8.58 5.00 8.38 15.83 16.42 +66 9 17 6.13 7.38 7.08 3.33 8.04 4.92 2.04 5.71 3.71 6.46 10.83 10.34 +66 9 18 8.63 6.21 8.42 1.79 4.67 1.50 1.71 0.63 1.29 1.75 4.92 4.58 +66 9 19 8.00 5.25 5.09 1.63 5.04 1.83 1.21 1.67 0.75 2.25 6.38 8.58 +66 9 20 5.09 3.00 4.00 0.46 3.46 0.58 1.71 0.37 0.79 2.42 6.25 9.04 +66 9 21 5.71 1.83 11.17 0.75 3.37 1.21 1.83 1.17 2.08 3.08 5.25 6.25 +66 9 22 13.00 4.96 13.00 1.50 4.54 1.92 2.71 5.54 6.04 4.38 9.62 4.83 +66 9 23 8.54 9.92 5.91 1.42 7.50 2.33 3.63 3.71 4.50 5.25 7.79 6.34 +66 9 24 6.50 9.54 4.79 2.54 8.12 1.92 2.33 2.92 2.50 1.92 4.50 7.08 +66 9 25 10.96 9.83 5.71 1.83 7.87 2.96 3.88 4.71 4.29 5.13 6.67 7.83 +66 9 26 10.00 9.04 8.04 1.75 8.79 3.17 1.87 5.04 4.00 3.17 6.29 6.46 +66 9 27 12.04 8.38 7.96 2.58 8.75 2.37 4.79 3.75 3.42 4.38 6.17 7.67 +66 9 28 7.83 1.38 8.12 1.17 7.62 2.83 3.88 0.67 1.13 2.92 5.54 7.04 +66 9 29 3.37 3.29 4.38 0.96 5.91 2.25 0.42 1.87 1.50 3.67 7.87 7.50 +66 9 30 5.13 4.92 2.25 2.17 6.08 2.04 2.33 3.00 2.08 5.50 8.83 9.38 +66 10 1 8.00 3.63 9.17 4.04 7.29 2.33 4.25 0.42 2.17 2.00 5.04 6.71 +66 10 2 6.75 6.83 6.13 2.25 7.46 1.75 4.33 2.21 1.54 3.83 6.67 7.62 +66 10 3 16.96 24.17 12.33 12.46 23.38 13.13 21.29 15.79 14.62 17.41 25.25 26.34 +66 10 4 20.17 17.33 29.54 12.87 14.37 11.00 17.79 11.79 11.38 13.67 18.50 22.58 +66 10 5 11.79 9.25 11.12 4.12 9.33 4.83 7.58 7.58 6.04 10.00 12.96 16.25 +66 10 6 13.33 9.13 13.96 6.67 9.04 6.38 9.71 5.25 6.83 8.25 10.00 11.29 +66 10 7 8.92 7.04 7.87 1.79 7.50 3.04 2.00 2.21 2.71 2.75 6.58 7.83 +66 10 8 9.00 5.66 7.62 3.83 6.17 2.13 4.42 2.04 3.29 3.58 6.67 9.04 +66 10 9 11.25 10.46 8.50 3.71 10.71 5.83 3.79 5.71 4.21 6.42 12.08 11.71 +66 10 10 12.87 8.96 10.04 3.96 9.13 4.25 2.83 3.83 3.71 6.04 13.08 11.92 +66 10 11 7.71 10.79 8.83 4.25 10.54 6.21 7.12 7.08 5.50 7.87 14.12 15.12 +66 10 12 22.54 18.91 15.59 11.63 18.96 12.42 13.17 13.17 11.58 13.92 17.46 22.75 +66 10 13 13.67 9.50 9.54 5.04 9.75 5.50 4.75 6.75 5.09 5.00 10.25 12.92 +66 10 14 12.54 8.29 12.17 4.67 8.46 4.50 2.83 3.08 4.00 3.04 5.29 4.08 +66 10 15 11.79 6.38 15.04 7.17 8.04 2.58 5.79 5.17 4.96 6.21 8.79 12.83 +66 10 16 11.67 9.50 7.87 3.67 11.08 5.75 5.63 5.46 4.42 5.50 8.75 10.25 +66 10 17 17.67 12.29 16.42 7.08 14.92 9.33 11.96 10.96 8.29 9.96 15.00 14.37 +66 10 18 11.83 7.92 13.37 6.17 7.96 3.71 10.13 3.88 7.25 10.83 9.04 25.04 +66 10 19 13.79 9.83 8.75 8.00 8.38 6.17 5.88 5.21 5.50 8.17 9.42 15.92 +66 10 20 5.41 6.63 4.21 1.25 6.42 2.75 8.50 3.33 3.88 5.79 7.79 12.96 +66 10 21 8.75 5.88 6.50 3.79 7.75 5.58 9.67 5.33 7.29 7.29 12.96 19.38 +66 10 22 4.75 3.00 3.96 0.71 4.88 2.62 5.91 0.67 1.96 6.04 8.12 13.79 +66 10 23 9.04 6.58 7.58 3.58 5.79 2.79 8.12 2.83 5.58 7.79 10.25 19.79 +66 10 24 12.67 11.50 18.63 7.04 6.04 1.71 7.62 4.75 4.38 6.96 13.37 16.25 +66 10 25 12.29 6.87 14.33 5.83 7.08 1.96 6.00 2.46 3.92 3.75 8.83 13.75 +66 10 26 14.54 13.59 11.21 6.29 9.59 5.54 11.08 7.71 9.46 10.13 18.54 26.12 +66 10 27 19.75 17.16 22.54 12.62 12.87 9.29 14.79 9.67 9.79 14.21 19.62 25.96 +66 10 28 12.38 9.21 18.54 8.17 6.58 2.33 7.75 2.58 4.29 5.09 6.71 13.08 +66 10 29 9.08 2.96 10.46 4.75 5.63 1.08 5.88 1.08 4.00 5.46 3.83 10.34 +66 10 30 6.71 3.79 7.46 1.67 4.50 1.00 5.46 1.50 2.62 3.79 8.42 13.25 +66 10 31 9.71 8.38 8.38 4.42 9.67 6.50 9.92 7.79 7.38 8.63 15.41 23.21 +66 11 1 22.71 21.25 25.75 15.34 18.00 11.92 18.58 15.34 12.75 16.13 27.04 33.12 +66 11 2 16.38 13.75 27.37 10.96 11.38 7.38 13.79 7.79 6.63 8.79 10.37 13.42 +66 11 3 10.67 4.83 7.25 2.42 6.63 3.17 5.17 5.46 3.58 5.58 7.96 16.13 +66 11 4 7.75 11.17 10.75 1.96 9.17 5.04 5.63 6.04 4.75 8.54 8.33 21.50 +66 11 5 13.08 17.67 18.12 9.67 14.88 10.79 17.67 16.29 11.54 14.33 25.08 33.79 +66 11 6 21.09 19.41 26.83 14.00 13.42 13.46 19.87 14.67 10.79 15.75 25.25 30.84 +66 11 7 13.70 10.00 10.37 5.79 7.71 4.96 6.17 5.71 4.46 8.25 11.75 12.12 +66 11 8 7.83 4.21 5.91 2.50 6.50 3.29 7.38 2.79 4.29 5.58 10.58 14.79 +66 11 9 9.00 7.67 6.96 3.17 7.79 4.33 8.71 3.71 7.83 7.38 12.04 21.42 +66 11 10 4.29 5.09 4.42 0.63 5.54 3.54 6.75 1.54 3.33 4.71 6.83 13.59 +66 11 11 13.50 11.46 10.75 3.75 9.79 7.62 7.96 11.17 6.63 10.96 18.91 19.95 +66 11 12 14.58 8.21 12.12 5.17 6.67 6.96 11.17 8.38 6.87 10.17 8.54 10.79 +66 11 13 11.50 8.58 11.96 5.63 7.92 7.50 11.42 7.83 7.33 11.67 16.33 20.12 +66 11 14 12.08 13.08 7.96 6.13 13.88 8.38 12.12 8.71 9.92 10.63 17.62 22.54 +66 11 15 25.62 21.67 17.46 18.12 27.58 18.12 23.09 21.29 20.33 22.88 31.96 36.71 +66 11 16 28.33 24.41 27.04 19.04 23.00 18.12 21.87 19.21 20.46 23.83 27.12 40.41 +66 11 17 22.92 16.83 20.75 12.17 13.04 9.71 13.92 9.59 12.46 15.37 18.75 30.29 +66 11 18 12.96 8.75 16.62 8.08 6.50 0.79 8.42 2.92 5.25 6.38 7.17 11.58 +66 11 19 7.46 4.33 9.54 2.29 4.46 0.17 2.92 1.21 2.79 4.08 6.54 10.00 +66 11 20 10.21 12.75 9.08 3.67 7.62 2.42 3.54 4.92 3.04 4.46 9.50 11.12 +66 11 21 12.00 7.96 12.50 4.46 6.46 1.87 6.71 5.41 5.83 6.87 14.25 21.04 +66 11 22 11.58 3.92 13.46 5.88 6.08 0.67 8.17 1.13 4.21 3.13 5.83 9.59 +66 11 23 4.79 6.92 5.83 0.25 7.83 0.00 5.33 0.96 0.71 1.04 12.00 10.79 +66 11 24 8.75 6.54 7.33 2.67 6.96 1.46 7.96 3.33 5.13 6.08 12.04 14.50 +66 11 25 10.37 10.41 7.17 5.41 10.46 7.25 12.12 8.00 8.25 8.92 14.17 17.33 +66 11 26 8.83 9.59 8.71 6.25 11.17 8.67 14.79 9.42 11.46 10.75 16.42 20.04 +66 11 27 17.33 15.92 12.46 8.42 14.12 10.50 16.75 11.42 12.17 14.09 20.38 26.71 +66 11 28 17.25 13.29 11.96 10.54 11.12 9.25 15.37 8.04 13.08 13.33 19.92 31.71 +66 11 29 16.58 14.12 14.09 7.92 14.33 11.08 19.38 11.04 13.13 14.21 22.04 22.71 +66 11 30 21.29 19.58 13.75 14.54 18.71 13.13 21.75 13.25 15.50 14.88 22.29 29.50 +66 12 1 34.37 33.37 24.04 23.54 33.63 26.04 30.37 31.08 25.62 24.41 42.38 31.08 +66 12 2 28.21 27.37 22.54 20.62 22.08 16.13 28.16 17.29 22.50 23.16 25.88 42.54 +66 12 3 14.29 12.25 12.08 8.75 11.29 7.29 14.50 6.17 10.08 7.75 14.29 24.54 +66 12 4 8.00 5.58 6.96 1.38 8.63 4.92 11.75 4.50 6.21 6.34 15.46 17.41 +66 12 5 10.37 11.38 11.96 5.66 13.04 9.04 14.96 11.58 9.62 12.50 18.91 19.92 +66 12 6 11.29 9.54 5.91 5.37 10.83 5.75 12.21 5.66 7.87 7.29 15.71 20.54 +66 12 7 10.46 11.25 10.50 5.33 12.29 9.79 15.09 11.79 9.87 11.75 20.21 20.58 +66 12 8 22.54 21.42 14.12 13.42 21.84 16.38 25.12 17.08 19.62 18.25 28.16 31.49 +66 12 9 21.25 21.00 14.62 17.37 23.91 17.33 23.75 21.00 19.33 11.92 25.33 23.67 +66 12 10 20.75 17.50 13.62 13.59 18.46 12.12 14.58 11.83 13.25 9.13 16.71 19.75 +66 12 11 11.67 15.12 10.13 5.50 13.96 9.50 11.21 9.17 8.38 8.96 16.13 15.25 +66 12 12 26.75 22.21 16.42 17.62 24.79 17.75 20.04 19.70 18.63 10.79 26.08 11.46 +66 12 13 15.79 12.50 15.12 11.08 11.83 9.13 13.33 8.29 11.79 5.54 15.67 10.75 +66 12 14 7.08 11.46 6.63 1.04 10.08 5.46 9.87 5.63 4.83 4.67 13.33 12.92 +66 12 15 20.83 16.88 14.62 9.92 14.58 10.63 11.29 12.58 11.17 12.92 19.55 21.34 +66 12 16 10.79 10.75 6.79 4.00 10.67 7.33 14.25 7.96 8.29 10.08 17.88 19.87 +66 12 17 18.29 18.88 19.50 11.87 20.67 17.75 26.00 19.70 19.83 21.75 29.17 34.92 +66 12 18 14.83 11.67 12.71 9.83 13.04 10.08 18.50 9.29 12.75 13.00 15.92 25.12 +66 12 19 15.59 16.38 15.29 12.04 22.58 15.59 23.04 13.70 19.00 13.50 23.25 21.87 +66 12 20 14.29 11.38 13.29 8.87 9.46 7.96 12.58 7.12 8.96 8.71 12.92 22.50 +66 12 21 16.38 11.25 8.17 7.21 15.00 8.29 17.16 12.25 12.83 11.08 17.54 21.62 +66 12 22 18.66 14.79 10.67 11.83 17.96 12.42 17.37 15.92 14.46 12.75 17.71 20.21 +66 12 23 15.75 16.71 10.50 10.41 18.00 11.83 16.88 12.54 14.09 14.17 15.50 26.96 +66 12 24 15.92 13.54 11.67 10.17 15.75 9.67 10.67 8.87 10.92 7.38 11.63 18.08 +66 12 25 10.67 7.21 8.42 4.21 10.79 5.63 4.96 6.13 5.17 6.21 14.33 15.16 +66 12 26 19.92 16.00 17.25 13.54 15.59 11.58 10.41 13.08 12.83 16.13 21.09 25.08 +66 12 27 11.17 10.88 7.54 4.38 10.50 6.63 9.67 5.17 6.67 6.87 13.46 12.33 +66 12 28 15.25 12.71 11.79 4.58 12.00 8.54 9.62 7.50 8.38 11.63 12.75 17.21 +66 12 29 19.79 17.62 16.33 10.79 18.50 10.75 16.50 7.83 11.12 7.75 10.79 13.25 +66 12 30 5.25 4.25 8.21 1.25 6.42 3.37 5.25 3.67 4.29 3.79 11.67 16.71 +66 12 31 13.00 11.46 10.13 6.34 11.87 7.50 13.50 8.46 11.00 10.04 17.29 22.46 +67 1 1 6.46 4.46 6.50 3.21 6.67 3.79 11.38 3.83 7.71 9.08 10.67 20.91 +67 1 2 8.29 6.34 8.54 1.75 3.33 0.33 8.29 0.58 3.92 5.04 2.75 17.46 +67 1 3 5.09 4.29 8.71 0.46 3.21 0.50 5.66 0.25 2.50 5.09 2.54 15.96 +67 1 4 10.75 13.29 8.21 1.33 8.63 0.79 5.63 0.71 1.87 2.88 3.37 11.92 +67 1 5 10.92 4.33 12.67 5.41 6.25 2.62 6.87 1.67 4.88 6.50 4.54 11.67 +67 1 6 11.08 8.67 7.33 3.63 8.92 6.25 10.63 4.42 7.75 8.00 9.92 12.92 +67 1 7 12.12 13.54 12.87 6.13 9.87 6.13 8.63 7.71 7.75 8.25 15.79 17.75 +67 1 8 9.79 6.42 10.25 4.29 6.96 2.54 6.34 3.92 3.96 3.37 9.00 12.04 +67 1 9 8.33 3.33 7.21 2.17 4.17 1.42 7.33 0.37 2.75 2.75 4.04 7.96 +67 1 10 11.34 5.09 7.29 3.33 6.00 4.96 11.00 7.29 7.87 7.79 12.33 14.58 +67 1 11 17.33 9.38 9.62 8.46 6.34 5.63 9.59 6.83 7.71 11.79 10.21 15.54 +67 1 12 8.38 4.17 5.83 5.66 7.41 4.29 9.54 4.58 7.96 7.41 8.96 15.71 +67 1 13 4.58 3.79 5.17 2.21 5.41 2.88 9.96 1.25 5.41 6.00 10.21 16.21 +67 1 14 10.13 10.13 5.13 3.21 8.17 4.21 6.21 6.63 3.96 7.46 14.62 11.75 +67 1 15 18.84 16.58 11.63 10.75 14.62 9.00 3.92 11.50 8.63 11.67 22.63 17.16 +67 1 16 21.29 18.41 15.83 14.04 16.29 10.41 7.75 12.67 9.38 14.67 17.96 20.88 +67 1 17 18.29 13.04 17.25 11.12 12.21 10.37 14.79 11.92 12.00 15.50 13.62 20.71 +67 1 18 13.79 11.50 12.08 6.42 12.33 8.96 9.00 7.67 7.08 7.54 11.54 19.87 +67 1 19 16.33 12.50 18.29 10.34 11.79 8.17 13.67 7.96 8.46 11.63 12.71 17.54 +67 1 20 10.96 8.75 14.42 7.21 9.92 6.46 10.21 7.17 6.63 10.04 10.37 15.79 +67 1 21 12.46 12.00 9.08 6.67 13.92 7.62 13.54 6.63 8.92 10.00 18.08 17.41 +67 1 22 18.38 13.92 14.04 8.12 14.33 10.08 13.29 10.21 9.33 11.25 15.12 17.54 +67 1 23 22.88 19.79 15.25 10.25 17.83 10.21 10.08 11.92 9.54 13.00 15.67 23.67 +67 1 24 16.92 13.59 10.54 6.13 11.29 5.66 6.71 5.41 4.67 9.33 9.42 14.67 +67 1 25 15.54 13.75 14.58 9.29 13.46 8.92 11.79 10.00 9.67 12.25 17.25 17.16 +67 1 26 7.08 10.13 8.00 3.29 9.59 7.08 7.75 6.50 5.71 8.04 12.67 14.29 +67 1 27 24.30 23.75 19.38 16.25 20.25 13.83 12.38 17.62 13.29 19.58 28.75 27.21 +67 1 28 20.33 19.70 14.29 10.88 15.41 8.83 9.25 11.79 8.38 15.16 22.58 19.29 +67 1 29 26.54 23.79 20.71 17.92 21.59 15.04 13.13 18.38 15.54 20.54 25.92 22.95 +67 1 30 15.92 15.25 14.17 8.67 14.96 11.25 12.92 14.58 11.17 17.46 25.37 21.34 +67 1 31 11.38 11.92 12.79 6.17 14.71 10.41 16.17 9.75 12.04 16.17 18.58 21.00 +67 2 1 13.59 13.54 12.58 7.62 12.17 9.50 14.67 10.96 11.54 13.88 17.50 16.54 +67 2 2 16.38 17.08 17.21 10.37 18.84 14.12 16.88 16.21 14.29 18.91 24.04 23.54 +67 2 3 12.54 11.42 11.21 9.33 13.67 11.50 20.12 14.25 14.54 15.04 21.17 26.79 +67 2 4 6.38 4.42 5.96 3.33 8.54 5.00 10.00 5.37 6.71 8.46 11.58 16.04 +67 2 5 5.58 7.00 6.54 2.71 8.58 6.13 9.96 7.67 6.75 11.12 16.88 21.71 +67 2 6 8.08 10.08 7.12 4.33 8.92 5.58 10.41 5.46 6.46 9.21 14.50 17.21 +67 2 7 7.12 8.50 16.71 5.71 9.17 4.75 7.96 5.17 4.75 8.58 9.46 12.62 +67 2 8 8.29 5.09 10.13 3.29 4.46 0.13 6.25 0.67 3.21 5.83 2.04 10.25 +67 2 9 2.79 4.12 4.79 1.71 6.79 1.79 5.66 3.79 4.12 6.67 10.79 14.29 +67 2 10 7.92 10.88 4.21 2.83 8.96 4.50 4.50 6.63 4.33 6.87 17.08 13.17 +67 2 11 17.71 15.75 15.75 8.67 13.29 6.71 9.38 10.17 8.50 12.00 14.54 14.42 +67 2 12 15.96 12.33 16.58 7.08 13.88 8.04 11.00 8.83 7.21 8.83 10.71 12.46 +67 2 13 15.54 14.42 15.54 7.62 13.62 9.08 12.54 10.21 8.29 11.92 15.54 14.04 +67 2 14 18.46 17.58 16.96 8.08 20.58 11.87 14.62 11.79 9.38 13.21 17.54 23.04 +67 2 15 26.08 21.54 27.00 16.71 21.46 20.25 26.54 20.46 16.83 22.42 23.75 34.62 +67 2 16 10.13 11.17 10.08 4.12 10.83 5.46 7.17 9.25 6.21 11.92 16.25 19.04 +67 2 17 3.13 7.12 4.67 1.58 7.38 2.88 4.54 4.38 2.50 3.25 11.12 8.08 +67 2 18 18.79 17.46 16.92 8.67 15.67 10.13 10.50 10.04 9.79 13.92 16.17 20.00 +67 2 19 23.63 24.21 18.75 13.50 21.29 14.25 19.08 14.17 13.92 17.67 24.21 24.58 +67 2 20 13.92 12.12 13.00 9.29 15.21 9.59 14.83 13.50 11.83 14.62 24.04 30.13 +67 2 21 15.46 17.04 13.96 13.62 19.08 12.12 16.17 13.25 13.50 16.96 24.33 28.67 +67 2 22 18.58 11.83 16.04 6.50 13.92 9.25 11.34 6.71 9.33 10.79 9.50 11.29 +67 2 23 18.16 13.96 13.13 10.71 14.17 9.46 16.33 11.04 11.21 14.79 19.00 23.63 +67 2 24 24.41 19.17 20.96 14.79 18.63 13.54 15.09 14.67 13.83 18.84 21.71 26.00 +67 2 25 18.25 13.33 17.96 12.29 14.17 11.87 12.04 12.62 11.96 17.29 14.71 19.33 +67 2 26 11.25 12.96 8.71 7.33 13.88 8.46 13.75 9.87 9.87 11.38 14.75 16.54 +67 2 27 28.91 25.17 23.91 18.21 24.83 18.29 22.08 19.62 18.29 22.75 31.13 31.66 +67 2 28 19.25 22.54 14.71 16.17 24.37 16.75 23.04 17.16 18.16 18.46 27.29 29.79 +67 3 1 14.67 17.16 13.29 12.33 19.08 12.92 20.88 16.04 16.62 16.38 24.41 28.16 +67 3 2 13.42 12.87 11.00 10.29 16.50 15.21 21.92 15.37 16.96 16.79 23.29 30.63 +67 3 3 13.59 13.21 13.96 8.42 11.17 10.67 18.71 14.29 12.17 14.25 21.34 24.30 +67 3 4 15.92 13.21 14.96 11.38 10.79 11.79 14.71 14.88 11.79 16.17 21.04 21.12 +67 3 5 19.55 19.58 15.79 12.75 17.33 13.08 15.46 21.62 12.75 18.21 29.38 26.54 +67 3 6 20.41 18.58 19.38 13.29 16.83 14.79 19.17 15.96 16.00 18.05 26.46 28.42 +67 3 7 24.92 16.54 21.87 17.75 17.75 14.37 16.75 15.79 15.87 20.62 24.92 28.04 +67 3 8 9.00 8.58 11.12 4.67 8.63 6.17 9.25 7.33 8.42 9.87 8.33 16.42 +67 3 9 19.12 12.46 19.00 9.25 11.25 6.67 13.50 5.17 8.96 8.42 8.33 18.66 +67 3 10 19.58 23.25 17.46 13.00 23.09 15.25 22.83 16.25 15.37 17.92 28.21 27.04 +67 3 11 21.09 24.62 15.16 16.75 24.67 16.75 26.54 20.38 20.50 20.50 28.84 37.59 +67 3 12 5.88 9.08 5.88 2.42 9.00 5.00 11.92 6.96 7.04 9.08 16.33 17.00 +67 3 13 17.58 16.33 11.83 10.67 17.21 9.92 16.71 12.71 13.54 12.33 22.21 22.83 +67 3 14 22.34 20.00 20.08 14.12 21.09 16.00 22.29 21.54 17.50 21.00 30.75 31.96 +67 3 15 15.09 11.12 10.88 9.87 13.79 10.58 17.92 12.42 15.09 13.46 19.67 25.84 +67 3 16 11.42 10.13 10.08 6.21 10.71 8.17 14.71 13.17 9.62 12.83 20.50 21.12 +67 3 17 19.79 12.87 17.33 12.92 19.25 16.42 25.25 19.33 21.12 20.46 23.58 31.88 +67 3 18 21.21 8.75 10.54 11.63 13.42 11.58 17.08 12.67 13.29 11.71 15.71 20.91 +67 3 19 17.83 7.83 13.00 11.34 12.33 9.33 19.95 11.71 14.96 16.13 16.21 22.42 +67 3 20 8.50 8.25 9.42 6.46 13.37 9.87 17.21 10.46 14.25 12.50 19.00 24.17 +67 3 21 9.71 8.04 9.50 6.13 10.21 10.25 20.38 12.25 14.83 13.04 19.41 23.13 +67 3 22 13.83 10.92 9.46 7.83 13.59 11.83 17.04 12.46 14.37 12.00 16.62 19.12 +67 3 23 12.46 9.59 8.17 7.92 12.38 8.83 15.04 9.83 10.96 11.92 17.37 21.04 +67 3 24 17.83 16.29 16.46 10.96 14.09 10.96 16.29 14.29 12.33 15.09 22.25 23.67 +67 3 25 20.79 15.37 17.75 12.71 15.16 12.67 17.12 14.25 13.59 14.92 20.50 23.91 +67 3 26 18.29 15.46 12.62 11.38 18.38 11.75 20.38 12.92 14.54 13.83 24.17 27.79 +67 3 27 16.08 15.34 11.17 10.75 17.46 12.08 19.62 11.04 15.16 13.70 19.46 22.13 +67 3 28 15.16 10.13 11.17 12.29 14.00 11.00 18.16 9.50 13.75 11.38 17.71 27.84 +67 3 29 12.79 5.29 9.08 8.08 9.67 5.96 15.09 6.79 11.42 10.34 12.79 22.58 +67 3 30 12.38 5.04 7.75 7.21 7.79 4.67 11.50 3.71 8.12 7.21 10.79 12.75 +67 3 31 9.79 7.29 8.25 4.50 5.75 1.38 6.96 2.13 3.79 5.88 5.83 9.29 +67 4 1 22.25 17.92 16.54 11.42 16.96 12.71 11.87 11.87 12.75 14.50 21.04 25.88 +67 4 2 13.08 12.46 9.59 9.71 14.96 9.96 15.09 11.25 12.46 9.87 16.42 18.41 +67 4 3 12.62 11.21 9.04 9.62 14.37 9.87 13.54 10.34 11.21 10.92 15.46 17.96 +67 4 4 10.08 9.83 7.87 7.92 12.62 9.00 15.83 10.58 12.62 13.59 17.92 23.50 +67 4 5 20.50 12.54 13.62 13.67 15.83 11.46 19.67 13.08 15.92 18.25 16.79 27.71 +67 4 6 20.12 15.54 22.00 14.04 14.54 11.92 18.54 13.83 13.92 16.38 21.04 31.13 +67 4 7 14.37 14.42 25.54 11.42 11.42 8.21 15.92 10.63 9.71 13.88 21.92 26.08 +67 4 8 13.50 11.67 23.79 11.46 11.87 6.38 15.16 9.13 9.17 10.88 11.42 16.29 +67 4 9 13.79 13.88 26.34 11.58 13.75 10.58 18.05 11.63 11.50 14.42 18.00 14.92 +67 4 10 14.42 12.67 30.54 12.17 10.25 9.04 17.12 9.21 10.13 11.46 15.00 12.38 +67 4 11 11.67 13.96 19.67 9.67 10.58 7.25 11.83 7.92 7.50 10.54 12.33 15.67 +67 4 12 7.71 7.50 15.21 6.13 8.08 2.42 7.79 4.96 4.38 6.17 10.92 11.96 +67 4 13 6.29 5.54 15.79 6.42 8.42 2.62 8.71 3.37 3.83 4.21 5.46 8.63 +67 4 14 6.83 5.71 14.83 4.33 7.21 2.08 4.54 1.25 2.29 1.75 4.88 6.08 +67 4 15 10.37 5.91 5.21 4.54 8.46 2.75 9.38 4.33 6.13 6.38 8.87 12.04 +67 4 16 8.71 6.67 4.71 4.21 8.79 3.25 6.29 4.00 6.08 9.25 7.33 15.16 +67 4 17 11.12 7.58 6.38 6.04 8.87 4.42 12.79 4.63 8.46 10.41 8.75 17.75 +67 4 18 9.08 6.71 10.54 5.37 5.46 4.29 7.08 3.96 4.92 7.04 8.71 11.42 +67 4 19 12.58 10.88 14.17 9.67 14.83 11.17 17.71 12.83 14.58 14.71 20.50 26.34 +67 4 20 19.92 16.08 12.17 13.54 20.67 14.12 18.12 15.41 16.38 15.54 22.58 22.50 +67 4 21 18.05 12.25 14.29 10.13 13.92 8.75 12.33 7.71 11.50 12.00 12.96 19.83 +67 4 22 11.54 11.29 9.59 6.87 12.54 8.38 10.88 9.59 9.08 10.83 15.00 15.41 +67 4 23 9.83 6.04 6.17 4.38 6.13 3.17 7.50 4.46 4.29 4.83 10.75 11.21 +67 4 24 14.09 13.00 11.38 8.54 12.00 10.37 10.71 10.83 10.50 11.63 17.04 16.42 +67 4 25 8.71 6.17 6.71 4.75 6.54 3.88 6.83 2.17 5.88 4.92 10.21 7.83 +67 4 26 8.54 10.08 7.87 4.67 9.62 6.42 9.38 9.54 7.87 9.08 15.83 15.25 +67 4 27 8.25 6.83 13.59 6.54 6.96 4.29 7.38 5.96 5.13 6.13 5.88 8.54 +67 4 28 5.66 5.29 8.87 6.92 7.87 5.37 6.46 5.75 5.71 5.71 5.04 11.54 +67 4 29 7.58 6.38 9.25 7.96 8.67 3.79 5.58 2.88 6.75 6.17 6.50 12.58 +67 4 30 18.88 12.46 9.46 8.92 14.54 8.75 13.13 11.08 12.04 11.46 17.12 22.00 +67 5 1 20.46 15.71 13.92 11.42 16.75 12.00 13.83 13.08 12.46 12.08 19.50 22.13 +67 5 2 16.58 9.54 10.00 7.17 11.67 7.54 8.75 7.00 6.71 8.12 11.21 13.96 +67 5 3 16.88 14.42 15.75 10.00 16.21 12.38 16.46 12.38 11.34 13.62 18.38 25.12 +67 5 4 13.21 11.46 19.00 11.08 12.54 10.88 17.58 10.58 12.54 14.29 12.33 27.33 +67 5 5 13.21 15.25 16.04 12.00 15.29 11.46 15.29 12.71 14.17 16.50 18.63 26.79 +67 5 6 14.42 12.50 10.04 8.75 12.25 8.17 9.21 9.04 6.71 7.87 12.33 16.79 +67 5 7 17.96 15.87 14.12 9.21 12.04 8.29 9.29 7.92 9.67 8.08 10.54 15.25 +67 5 8 15.12 11.67 15.96 8.46 12.62 8.87 10.71 6.25 8.21 5.83 6.96 7.62 +67 5 9 5.09 4.75 7.17 4.42 4.75 3.63 6.46 2.88 4.38 4.38 6.38 8.50 +67 5 10 4.17 4.38 8.12 2.17 2.83 0.13 2.29 1.38 1.13 2.37 7.00 4.79 +67 5 11 10.00 13.59 22.83 8.12 10.96 6.58 9.50 10.08 6.71 6.58 12.83 11.29 +67 5 12 14.67 16.79 22.42 10.25 11.42 7.75 12.71 10.13 9.00 8.08 16.38 15.46 +67 5 13 10.79 14.04 18.05 6.42 11.46 9.08 12.67 9.38 8.25 6.63 17.04 11.00 +67 5 14 9.17 10.46 17.54 6.38 7.92 6.25 9.83 6.08 6.25 6.83 11.87 15.04 +67 5 15 11.87 11.42 23.25 9.67 9.00 8.25 15.09 11.63 8.79 8.83 18.05 17.71 +67 5 16 11.46 11.34 11.87 5.88 9.79 3.71 7.79 10.00 5.13 6.04 15.34 12.46 +67 5 17 11.63 10.25 11.50 5.37 11.71 6.17 8.50 9.38 6.92 8.79 16.50 20.46 +67 5 18 11.08 10.13 10.63 5.58 7.87 5.21 9.50 7.08 5.37 6.04 15.54 13.46 +67 5 19 22.75 18.91 15.92 11.25 18.54 12.08 15.09 11.96 12.46 11.38 18.08 17.88 +67 5 20 22.08 18.38 19.46 11.67 21.87 13.67 18.58 14.83 16.54 17.41 21.75 25.25 +67 5 21 24.62 19.21 19.92 13.62 17.58 11.75 14.62 13.08 11.92 15.96 19.70 19.50 +67 5 22 24.83 20.96 21.54 15.41 21.17 13.62 16.83 11.29 14.96 15.46 15.87 16.62 +67 5 23 17.58 16.29 14.12 8.83 17.16 9.04 11.34 9.71 9.25 10.63 13.37 13.33 +67 5 24 15.63 12.54 15.16 9.92 17.00 10.96 12.79 11.21 10.67 9.96 10.08 10.79 +67 5 25 6.08 8.08 8.08 5.41 12.46 7.00 8.83 11.00 7.04 7.92 13.00 14.33 +67 5 26 12.50 12.04 12.71 6.29 13.62 6.67 9.00 14.54 6.71 12.75 19.41 13.92 +67 5 27 5.63 5.96 4.29 2.08 7.38 3.58 3.63 8.63 3.21 6.67 12.75 11.96 +67 5 28 10.17 6.08 7.83 3.88 5.96 2.42 4.25 5.41 2.62 2.75 5.83 6.00 +67 5 29 5.96 8.21 8.79 4.75 6.38 2.88 6.29 8.12 3.67 5.58 8.92 6.83 +67 5 30 3.96 4.42 4.08 2.08 5.71 1.21 2.83 6.50 2.46 5.29 6.17 6.34 +67 5 31 7.12 8.58 5.91 2.62 6.34 1.87 4.79 5.41 1.92 3.08 10.17 7.54 +67 6 1 10.88 9.50 8.92 5.79 10.92 5.58 3.88 9.21 6.04 6.13 11.08 6.75 +67 6 2 5.50 6.42 8.04 4.67 5.66 4.00 5.09 11.34 5.17 8.29 14.42 11.63 +67 6 3 7.92 9.17 13.08 4.33 7.96 6.25 10.00 15.00 9.38 12.38 18.63 16.50 +67 6 4 3.13 5.63 7.25 4.42 8.87 6.17 8.75 9.79 7.87 8.92 10.41 15.79 +67 6 5 8.38 12.58 11.17 7.00 13.75 8.71 10.88 11.75 10.13 8.42 17.79 17.16 +67 6 6 14.96 11.42 15.92 9.42 17.37 11.34 16.38 13.29 12.87 13.25 17.54 22.67 +67 6 7 14.25 9.54 8.04 6.71 13.75 6.34 8.67 10.25 9.08 10.92 12.71 15.63 +67 6 8 7.17 6.00 7.04 4.21 7.29 3.54 6.13 6.54 4.92 6.29 6.96 10.71 +67 6 9 7.79 4.25 6.54 2.83 6.00 3.21 8.17 3.79 5.09 3.92 9.21 12.79 +67 6 10 4.08 2.67 3.88 2.00 5.58 0.00 3.92 1.67 1.54 3.83 4.04 3.83 +67 6 11 4.21 3.63 4.58 2.08 5.00 0.92 5.00 1.58 3.29 3.29 5.21 7.08 +67 6 12 5.29 5.09 5.88 2.96 6.50 3.08 4.96 6.25 4.29 5.37 5.37 11.92 +67 6 13 4.75 8.25 2.37 1.50 7.29 3.75 2.75 5.46 3.17 3.25 6.42 6.50 +67 6 14 6.13 3.75 4.96 2.29 4.29 2.04 4.67 2.92 1.71 1.46 7.87 5.21 +67 6 15 6.13 3.00 6.29 2.71 4.63 1.75 1.79 5.09 2.71 2.37 9.17 4.67 +67 6 16 6.25 4.54 9.29 3.29 4.12 1.50 2.46 4.42 2.96 4.42 5.88 6.34 +67 6 17 5.41 5.96 7.29 2.42 6.50 2.13 3.04 5.17 1.79 3.04 6.00 5.54 +67 6 18 11.50 9.21 5.00 4.42 8.79 3.79 2.79 6.79 4.25 5.71 8.67 8.17 +67 6 19 9.67 10.04 8.96 4.38 12.08 6.50 8.63 10.13 7.87 8.29 16.00 13.59 +67 6 20 18.34 12.25 13.21 11.50 18.46 13.59 15.16 16.25 13.21 13.50 18.46 23.87 +67 6 21 13.04 12.62 13.25 8.67 14.67 8.67 11.34 10.63 9.46 10.41 14.67 17.50 +67 6 22 12.62 9.38 11.46 6.38 9.33 4.00 8.33 6.25 5.83 7.38 11.21 15.09 +67 6 23 11.46 7.38 11.71 3.75 8.38 2.83 6.08 6.08 4.63 4.83 8.17 11.63 +67 6 24 14.37 17.75 10.50 7.92 16.83 9.04 7.92 12.50 9.00 8.58 10.00 14.83 +67 6 25 13.04 6.54 14.46 6.79 13.08 8.58 6.21 9.59 5.66 6.71 13.62 8.96 +67 6 26 14.83 6.92 14.96 5.83 11.63 3.46 3.54 9.04 4.33 3.88 8.87 8.83 +67 6 27 9.46 5.50 6.92 3.58 9.00 3.29 5.37 7.54 5.37 5.63 12.33 9.79 +67 6 28 14.71 11.34 16.13 8.58 13.83 11.17 14.42 15.34 12.79 14.12 21.79 25.17 +67 6 29 10.17 6.21 8.08 7.12 13.00 9.17 12.17 12.12 9.38 10.46 15.41 23.16 +67 6 30 4.42 4.54 5.25 1.92 5.37 2.33 6.50 6.21 3.42 4.00 11.79 11.42 +67 7 1 8.79 9.46 9.96 4.71 10.75 7.04 6.00 8.79 6.79 7.46 15.92 14.67 +67 7 2 11.75 11.29 9.62 6.75 14.46 8.58 11.58 11.21 10.50 9.87 18.63 19.08 +67 7 3 12.62 10.34 9.62 9.46 16.04 10.88 13.29 13.08 12.71 10.92 15.92 22.25 +67 7 4 6.79 4.96 8.12 2.71 7.92 3.92 4.96 4.38 4.96 4.25 9.13 13.33 +67 7 5 5.96 8.04 8.33 5.37 7.83 5.00 5.83 10.46 5.09 7.12 17.96 10.79 +67 7 6 10.71 12.87 11.67 6.96 10.50 8.08 8.46 11.34 7.79 8.92 15.59 15.67 +67 7 7 15.75 11.92 11.79 8.33 12.38 9.21 9.25 11.38 10.13 10.37 12.33 14.50 +67 7 8 16.13 12.71 11.04 9.29 16.17 10.54 12.58 14.09 11.21 10.92 16.33 22.75 +67 7 9 11.38 10.79 10.88 5.41 13.00 7.38 10.00 14.75 9.13 10.17 22.00 19.75 +67 7 10 9.08 8.25 11.87 3.54 10.88 7.21 8.25 12.54 9.75 10.08 15.96 17.37 +67 7 11 4.79 3.75 3.96 1.87 6.21 2.21 4.25 3.00 3.04 1.08 5.58 9.83 +67 7 12 3.13 3.29 8.12 2.71 5.17 1.46 3.46 4.88 5.79 6.63 5.58 8.42 +67 7 13 5.33 5.75 5.33 2.17 6.96 2.00 5.50 7.17 5.37 10.00 8.71 21.04 +67 7 14 12.29 10.37 10.58 4.42 11.12 3.79 5.00 5.37 4.00 6.17 5.17 24.46 +67 7 15 8.83 12.96 8.29 4.67 10.58 4.42 5.50 7.87 4.71 7.87 12.00 13.96 +67 7 16 16.38 17.79 15.12 11.42 16.42 10.29 7.04 14.33 11.79 15.92 20.75 18.00 +67 7 17 10.29 13.83 9.17 7.25 12.83 8.08 4.71 14.33 8.54 13.25 20.00 18.38 +67 7 18 11.50 9.13 12.62 7.38 10.34 6.87 7.12 7.79 6.79 10.63 12.04 8.83 +67 7 19 7.17 5.88 10.17 3.96 10.37 6.63 6.63 7.75 7.33 9.71 12.33 16.46 +67 7 20 5.41 4.29 6.96 2.79 7.38 4.04 6.25 4.42 5.04 5.46 8.00 12.75 +67 7 21 4.63 4.50 4.46 1.96 4.29 0.25 4.04 1.25 2.37 3.08 4.08 7.00 +67 7 22 6.00 7.54 15.04 2.67 5.71 2.67 3.21 5.25 3.33 4.46 7.21 4.83 +67 7 23 12.17 9.92 9.13 3.67 10.29 5.04 3.54 11.12 5.09 7.71 14.17 12.12 +67 7 24 13.04 10.37 13.37 6.00 12.96 8.79 11.29 10.29 8.33 11.34 12.87 19.55 +67 7 25 11.34 11.17 10.63 4.71 11.17 6.42 7.12 10.54 7.33 9.25 16.25 16.25 +67 7 26 12.46 11.42 14.00 7.96 13.33 9.54 10.71 15.41 10.96 14.54 18.05 19.62 +67 7 27 5.04 5.33 5.66 3.83 8.87 5.25 6.25 6.42 5.66 5.88 11.63 14.58 +67 7 28 9.54 8.58 7.83 4.38 10.00 5.66 7.58 8.08 7.67 8.12 13.83 15.71 +67 7 29 14.04 12.83 14.88 6.34 9.50 7.46 8.08 11.50 7.79 9.29 17.54 14.50 +67 7 30 13.25 9.38 12.62 6.04 9.96 7.83 8.12 12.21 8.42 11.75 18.96 15.71 +67 7 31 7.04 4.46 6.58 4.33 5.88 4.83 3.83 8.04 6.00 7.54 15.83 14.46 +67 8 1 10.34 6.92 8.54 4.63 9.42 5.33 7.62 8.54 7.21 6.08 17.75 13.54 +67 8 2 4.63 10.29 5.37 4.12 10.67 7.12 5.50 8.50 7.12 6.87 15.16 16.54 +67 8 3 14.71 12.54 7.08 6.13 12.54 7.87 11.46 10.67 10.58 10.92 17.37 22.50 +67 8 4 13.13 10.21 8.04 7.71 10.37 7.67 11.71 9.29 10.50 11.38 12.50 19.08 +67 8 5 7.58 10.58 9.87 4.79 10.29 7.38 6.71 7.58 6.75 8.42 13.04 13.67 +67 8 6 18.34 15.04 12.46 9.59 12.87 9.25 6.42 10.63 8.21 10.96 10.29 9.59 +67 8 7 16.25 9.54 12.96 9.29 15.75 14.71 11.63 14.25 11.58 10.37 12.96 17.71 +67 8 8 10.63 6.50 11.04 7.46 11.63 9.71 7.38 12.50 10.17 8.71 15.71 21.84 +67 8 9 10.25 9.00 8.38 5.54 9.67 6.42 4.50 8.79 7.54 5.79 12.04 12.75 +67 8 10 8.29 5.41 7.71 4.33 9.50 4.83 4.88 2.46 3.71 2.21 5.58 6.71 +67 8 11 15.25 10.41 7.75 8.71 15.16 8.96 11.50 11.00 10.17 8.58 13.75 16.92 +67 8 12 18.71 11.67 10.46 10.41 15.87 11.08 15.71 12.54 13.29 16.13 15.00 24.96 +67 8 13 10.79 10.04 9.29 5.96 9.46 6.50 9.21 6.67 5.96 6.29 7.54 10.34 +67 8 14 15.29 10.54 11.12 9.42 16.46 10.50 15.50 13.33 11.87 11.25 13.67 16.21 +67 8 15 9.87 8.42 9.46 5.71 11.38 6.96 11.54 9.50 5.88 8.46 13.17 10.17 +67 8 16 14.42 11.79 12.75 7.96 17.29 9.08 10.96 8.75 9.17 8.38 10.67 11.04 +67 8 17 13.88 10.71 12.29 6.79 11.96 6.08 8.75 7.04 5.96 6.50 10.25 7.21 +67 8 18 13.88 9.83 13.96 8.29 12.25 7.83 9.83 8.67 8.04 5.37 12.71 14.37 +67 8 19 4.42 5.96 13.62 3.92 6.34 2.83 4.33 6.71 4.21 3.92 6.58 8.17 +67 8 20 8.67 3.08 9.46 2.42 6.08 2.46 3.37 2.50 1.92 1.13 4.38 6.75 +67 8 21 8.12 8.67 4.96 2.96 10.88 4.88 5.17 6.29 4.54 5.50 5.54 8.67 +67 8 22 3.83 6.79 5.46 2.37 6.29 3.17 3.54 3.75 2.71 3.29 7.75 8.04 +67 8 23 4.33 5.21 4.25 1.42 4.04 1.33 3.92 4.75 1.87 1.25 10.08 4.12 +67 8 24 8.54 11.34 7.08 4.71 9.13 4.33 2.83 7.67 3.21 3.54 10.08 6.38 +67 8 25 11.21 9.87 10.13 8.08 10.37 8.08 3.79 9.71 8.00 8.79 15.75 12.29 +67 8 26 8.00 6.71 7.50 2.04 7.41 2.62 4.54 5.79 4.25 5.75 7.08 9.54 +67 8 27 4.17 2.50 6.00 2.13 4.12 1.13 4.71 3.13 3.92 3.13 4.54 9.04 +67 8 28 8.33 7.04 5.33 2.29 8.04 4.17 5.71 9.00 4.58 4.79 14.42 12.33 +67 8 29 10.83 7.33 7.17 5.00 11.46 7.17 10.54 8.29 8.46 8.79 14.37 16.54 +67 8 30 10.37 8.75 9.25 5.88 14.79 8.21 12.96 10.92 10.37 10.25 16.92 22.04 +67 8 31 6.21 6.17 9.46 3.50 7.25 4.25 3.96 4.04 3.63 4.42 6.71 12.46 +67 9 1 10.71 9.33 9.92 6.29 11.00 7.50 8.87 9.04 7.79 6.71 12.92 15.59 +67 9 2 14.04 12.92 12.17 9.17 17.21 12.12 15.00 14.62 11.87 10.83 19.62 25.58 +67 9 3 23.38 23.54 17.96 14.67 25.04 16.46 19.67 17.00 16.62 14.79 26.46 24.04 +67 9 4 22.58 19.92 16.46 12.08 16.62 12.38 14.54 13.70 12.38 13.21 19.25 18.38 +67 9 5 27.63 22.79 20.04 16.46 23.71 17.33 22.34 18.16 19.12 18.71 23.79 25.54 +67 9 6 12.79 11.34 8.12 7.71 11.17 8.54 12.75 9.25 11.12 8.96 16.17 18.54 +67 9 7 5.66 4.63 4.54 2.75 5.09 2.96 5.41 3.71 4.67 3.58 8.00 6.67 +67 9 8 3.92 5.21 4.71 1.58 1.29 0.54 4.54 3.42 2.29 1.87 11.04 8.75 +67 9 9 4.67 11.75 7.00 2.54 3.58 3.79 5.79 6.21 3.33 4.17 16.13 9.46 +67 9 10 8.75 3.00 7.29 3.50 6.21 4.50 3.50 6.17 5.29 5.79 6.17 10.96 +67 9 11 20.30 10.75 10.50 8.79 13.17 8.71 9.46 11.50 10.54 10.29 13.50 18.41 +67 9 12 15.00 10.21 18.46 8.12 10.34 6.67 8.58 10.04 6.46 7.46 10.88 10.41 +67 9 13 4.25 2.17 9.87 1.87 2.21 0.96 3.67 1.50 2.33 1.54 2.54 3.54 +67 9 14 3.71 5.17 7.33 1.29 3.37 1.13 1.83 2.54 2.54 3.17 6.71 8.58 +67 9 15 4.63 7.04 4.88 0.58 2.58 0.21 2.96 2.58 0.87 1.46 13.08 4.83 +67 9 16 7.71 4.12 6.96 3.00 8.12 6.29 4.25 4.88 3.71 4.08 6.29 10.37 +67 9 17 16.38 7.67 10.37 6.75 9.13 6.21 9.62 5.66 8.50 7.33 10.04 11.87 +67 9 18 16.17 13.88 13.46 8.12 12.42 9.17 10.08 10.37 9.59 10.34 18.71 15.00 +67 9 19 13.04 14.62 10.00 5.79 15.21 7.83 11.46 9.21 8.29 7.17 17.25 13.08 +67 9 20 9.08 8.33 8.08 5.91 9.04 5.17 9.33 6.75 8.21 6.25 10.34 7.67 +67 9 21 11.67 4.00 8.75 4.25 5.66 2.37 7.83 6.54 4.38 5.37 8.87 12.67 +67 9 22 7.17 7.96 6.25 3.04 8.00 3.46 4.92 3.88 1.92 1.71 5.46 6.38 +67 9 23 14.79 12.67 13.25 6.92 13.21 8.50 10.08 11.58 7.46 7.25 13.29 14.09 +67 9 24 18.66 16.54 14.71 9.71 14.54 10.92 11.00 15.04 10.79 12.42 20.33 18.84 +67 9 25 16.92 13.67 15.21 9.75 11.58 9.46 11.75 10.83 10.29 12.58 15.21 16.08 +67 9 26 21.04 15.92 14.88 9.87 15.25 10.21 9.54 14.62 10.25 9.79 20.71 17.21 +67 9 27 18.63 15.54 15.67 11.04 12.38 9.46 9.33 12.71 9.92 11.63 16.54 15.29 +67 9 28 18.12 18.41 15.79 10.17 14.12 9.75 11.21 12.96 8.71 10.21 19.04 19.55 +67 9 29 16.54 15.00 13.75 7.62 12.17 9.00 7.21 12.62 8.38 10.75 21.59 16.62 +67 9 30 16.54 16.17 14.83 9.33 18.16 11.25 17.83 14.62 14.29 12.67 23.67 25.54 +67 10 1 20.08 18.05 18.63 9.38 14.37 11.71 15.34 14.37 11.75 15.92 22.79 20.83 +67 10 2 15.21 15.21 11.71 7.96 16.33 9.54 15.92 12.08 12.00 13.70 22.29 24.58 +67 10 3 19.79 20.54 17.21 11.58 18.38 12.46 18.00 16.17 14.00 14.12 24.30 22.25 +67 10 4 20.91 13.96 15.21 11.54 16.04 11.04 15.09 14.25 14.00 13.83 18.21 23.33 +67 10 5 8.54 11.67 10.37 4.67 9.38 6.71 6.83 7.75 7.38 8.04 12.71 12.46 +67 10 6 16.62 19.62 16.13 7.50 12.50 10.13 13.46 16.46 11.00 14.09 24.08 20.04 +67 10 7 16.75 18.84 16.04 8.96 17.50 10.79 15.50 12.79 12.29 13.59 22.17 22.83 +67 10 8 14.71 14.75 15.71 5.54 9.92 7.29 11.38 8.96 7.00 9.67 15.25 14.75 +67 10 9 18.58 16.13 18.66 9.59 13.25 9.87 14.58 13.04 11.46 13.17 18.05 18.50 +67 10 10 7.71 8.58 7.62 2.71 7.41 2.75 4.42 5.50 2.92 5.37 14.00 11.54 +67 10 11 10.21 12.33 10.21 4.38 14.37 7.71 10.00 11.12 8.63 11.83 21.92 19.70 +67 10 12 16.13 12.25 12.21 5.29 13.33 7.87 8.38 9.83 7.54 11.87 16.17 19.25 +67 10 13 20.62 19.92 18.41 10.75 18.54 12.50 15.67 14.17 12.79 13.96 24.83 23.38 +67 10 14 24.50 21.62 22.08 12.12 22.04 14.17 19.33 15.87 15.21 16.79 26.42 26.30 +67 10 15 13.70 13.17 12.25 6.08 12.79 6.92 13.25 8.67 8.42 9.62 14.79 17.67 +67 10 16 10.54 15.29 10.13 4.71 12.87 7.08 9.42 6.83 6.71 6.08 6.96 13.79 +67 10 17 19.75 13.50 13.96 11.25 15.46 11.58 16.21 12.42 14.75 11.96 19.67 27.08 +67 10 18 18.00 17.00 13.46 7.38 14.58 9.00 10.04 9.13 7.87 8.04 15.41 16.58 +67 10 19 22.13 20.75 22.42 14.54 20.62 14.33 14.29 20.79 15.21 18.34 31.42 25.70 +67 10 20 16.50 11.96 15.16 8.79 15.46 10.83 14.42 14.33 11.25 14.67 24.33 25.66 +67 10 21 4.38 2.71 3.79 1.67 7.21 3.13 7.38 4.67 4.04 5.09 8.87 14.58 +67 10 22 7.67 6.50 6.63 2.92 7.21 3.96 7.25 7.71 4.21 7.67 14.54 14.21 +67 10 23 13.25 9.33 11.42 6.13 12.83 8.79 11.71 8.92 9.13 10.46 20.58 21.75 +67 10 24 13.70 13.29 10.41 6.87 11.50 8.71 10.34 11.25 8.83 10.25 21.54 19.50 +67 10 25 29.08 26.71 24.87 18.25 25.92 19.08 21.29 26.08 17.08 23.75 38.96 34.54 +67 10 26 19.87 16.25 19.38 12.33 19.92 12.87 22.00 14.46 15.96 16.08 23.96 28.88 +67 10 27 18.00 18.25 12.83 7.04 14.67 7.12 7.75 7.83 7.79 8.08 11.46 13.88 +67 10 28 16.88 15.71 10.96 8.79 11.08 6.42 11.79 7.54 8.25 8.75 15.87 21.79 +67 10 29 14.21 11.34 8.67 7.67 11.96 7.58 10.04 8.21 9.21 6.96 14.75 19.79 +67 10 30 16.25 15.25 9.75 4.25 14.09 7.92 8.29 9.87 7.54 8.08 15.16 13.37 +67 10 31 21.59 14.21 18.71 13.50 16.62 11.04 14.46 9.08 12.42 11.54 15.29 18.63 +67 11 1 23.42 22.79 15.34 8.79 17.00 12.33 11.29 10.96 10.17 8.87 15.46 26.16 +67 11 2 30.09 21.09 19.67 18.63 21.21 14.79 19.12 16.66 16.79 19.58 25.33 35.41 +67 11 3 5.58 4.17 5.75 5.09 5.96 4.00 10.67 3.13 6.04 7.71 8.21 20.91 +67 11 4 11.96 8.67 14.58 4.79 5.79 1.58 7.17 3.88 3.75 3.29 9.50 13.08 +67 11 5 20.21 12.50 16.92 10.50 12.50 7.12 12.79 9.33 11.38 10.71 18.34 25.50 +67 11 6 13.33 8.17 10.41 7.79 10.37 6.50 10.34 7.25 8.25 5.50 12.25 19.87 +67 11 7 12.21 14.17 16.54 8.29 10.92 5.33 5.91 7.87 4.21 1.96 20.91 15.25 +67 11 8 6.58 5.21 9.00 3.67 4.67 1.71 4.46 5.46 3.33 3.46 11.75 12.62 +67 11 9 8.38 7.38 8.42 4.83 8.42 5.79 10.83 8.17 8.71 8.54 13.67 20.00 +67 11 10 8.75 10.58 10.92 5.96 11.63 9.04 12.54 10.92 9.00 11.34 20.41 21.87 +67 11 11 13.96 11.79 12.25 8.42 14.71 10.83 17.62 14.96 14.09 14.17 20.88 28.04 +67 11 12 7.54 10.08 8.67 5.17 7.96 5.54 5.50 7.71 5.75 7.87 15.63 16.50 +67 11 13 13.88 13.83 15.71 10.37 13.50 10.54 12.38 12.38 9.67 14.04 21.09 21.50 +67 11 14 10.63 13.92 9.46 6.29 12.75 7.08 14.92 10.79 9.50 12.08 22.37 28.21 +67 11 15 18.84 13.08 12.96 10.21 12.50 8.63 14.58 14.42 12.33 12.46 21.79 32.50 +67 11 16 10.34 3.96 13.13 4.08 5.75 2.42 6.54 3.54 4.29 6.71 9.08 15.83 +67 11 17 5.37 2.71 8.46 0.79 4.38 0.83 2.17 3.96 1.42 2.88 11.92 14.96 +67 11 18 10.41 2.25 14.75 3.17 3.71 0.83 3.04 4.63 5.33 4.08 7.12 7.71 +67 11 19 9.08 2.96 6.58 1.29 4.25 1.67 2.71 3.58 3.75 3.83 3.75 7.79 +67 11 20 2.92 1.63 6.34 1.50 5.83 1.21 0.58 2.67 1.08 1.29 5.91 8.33 +67 11 21 8.00 4.42 15.50 4.88 5.91 2.88 3.83 4.54 4.71 5.25 5.66 5.58 +67 11 22 9.21 7.00 9.83 2.88 7.83 3.37 4.25 7.12 5.13 4.00 7.00 8.71 +67 11 23 2.75 3.25 5.41 0.75 6.04 1.29 0.54 3.21 0.29 1.21 9.59 9.21 +67 11 24 8.96 11.50 6.58 4.54 9.54 4.75 3.42 8.25 6.17 7.96 15.34 18.29 +67 11 25 13.37 10.71 11.00 6.42 8.96 4.42 8.87 4.25 8.42 5.75 13.67 17.88 +67 11 26 9.62 8.54 8.38 4.42 7.25 3.71 9.29 5.21 7.62 6.34 12.87 15.41 +67 11 27 9.42 12.17 9.79 6.63 14.79 8.17 11.08 9.83 12.33 9.71 16.38 17.08 +67 11 28 17.62 20.25 13.70 11.58 21.25 12.62 17.88 14.79 16.29 12.08 22.29 22.71 +67 11 29 11.83 14.04 10.96 7.46 14.29 7.04 13.88 9.13 9.54 8.46 17.16 17.29 +67 11 30 10.37 5.63 6.29 5.66 10.58 5.21 11.29 9.79 8.50 5.75 12.83 17.83 +67 12 1 5.21 1.46 6.46 1.83 3.83 0.87 5.88 1.87 2.33 2.75 6.79 7.92 +67 12 2 8.67 8.63 5.91 3.67 7.58 5.00 4.83 8.58 5.17 7.12 16.13 16.17 +67 12 3 5.25 2.33 5.58 3.13 6.71 3.33 10.17 3.92 7.50 6.34 12.54 22.54 +67 12 4 4.12 7.00 7.04 3.29 10.00 7.04 16.62 8.38 11.42 12.67 20.04 27.12 +67 12 5 12.08 11.54 10.79 10.54 17.62 13.08 19.75 13.17 16.50 11.00 18.66 16.00 +67 12 6 18.25 14.88 13.67 10.79 14.09 7.21 12.25 10.41 10.25 7.29 18.46 26.50 +67 12 7 11.63 8.12 8.04 8.00 8.33 6.04 12.62 7.92 9.92 5.37 17.29 25.25 +67 12 8 21.25 15.12 18.63 12.29 13.50 9.17 15.79 11.42 13.00 7.58 21.75 25.46 +67 12 9 17.83 13.75 19.04 8.42 9.25 5.04 12.29 9.54 8.92 5.83 19.75 23.45 +67 12 10 10.17 4.67 14.46 4.42 5.46 0.50 8.83 3.13 4.58 3.21 10.96 15.75 +67 12 11 12.62 7.38 8.83 4.38 8.71 4.75 12.83 6.92 9.33 7.75 13.70 19.87 +67 12 12 12.58 5.33 9.33 6.04 6.34 2.75 10.29 4.67 7.38 4.83 8.79 13.96 +67 12 13 3.13 0.75 5.29 2.25 4.71 0.75 6.67 1.83 3.04 3.33 9.54 12.42 +67 12 14 3.29 6.67 2.83 2.29 7.17 4.54 9.21 9.13 6.71 8.46 17.92 18.71 +67 12 15 7.50 6.63 9.54 5.63 9.62 8.08 16.21 9.50 11.71 11.04 15.67 21.75 +67 12 16 6.63 1.92 9.08 3.13 5.46 0.75 6.13 2.33 1.87 2.13 5.79 14.21 +67 12 17 3.71 6.67 3.63 0.42 8.54 1.29 1.63 3.04 0.63 0.71 5.50 9.67 +67 12 18 8.33 8.92 7.79 2.08 9.21 5.50 8.04 6.34 4.96 4.00 6.54 10.41 +67 12 19 8.17 4.08 17.46 2.96 8.38 6.34 10.34 8.00 7.41 5.54 10.46 14.00 +67 12 20 17.92 16.62 17.58 11.04 16.46 11.58 10.58 11.21 11.54 10.58 17.08 22.75 +67 12 21 16.54 15.41 16.25 8.67 13.54 8.54 14.88 14.92 10.08 10.71 23.13 20.62 +67 12 22 20.21 20.00 17.75 10.79 17.00 11.87 18.41 16.54 12.21 14.67 25.37 20.75 +67 12 23 18.12 16.54 16.58 11.34 18.96 11.42 18.88 13.00 16.38 14.12 20.79 22.00 +67 12 24 19.25 16.96 11.46 10.83 17.83 8.75 14.17 12.04 12.17 10.46 17.33 16.66 +67 12 25 26.50 18.96 18.96 16.00 21.21 13.70 19.25 17.96 18.79 17.79 23.13 33.45 +67 12 26 9.71 4.92 8.54 6.00 8.46 4.67 10.08 5.46 7.75 7.83 9.59 15.79 +67 12 27 12.67 9.17 9.50 8.92 14.33 8.63 16.13 11.87 12.87 12.96 17.37 21.87 +67 12 28 19.25 14.29 13.17 9.46 15.16 7.87 16.25 12.71 15.09 15.34 22.88 33.84 +67 12 29 18.29 12.58 15.96 8.92 10.71 5.17 10.63 8.67 10.08 10.13 15.29 22.71 +67 12 30 13.62 13.83 9.92 8.00 12.67 7.12 14.58 11.29 13.33 9.62 17.79 24.30 +67 12 31 16.88 13.75 11.34 9.08 13.54 7.71 11.75 11.83 11.83 11.75 17.25 22.63 +68 1 1 30.04 17.88 16.25 16.25 21.79 12.54 18.16 16.62 18.75 17.62 22.25 27.29 +68 1 2 12.92 12.75 13.21 10.54 13.83 8.63 12.67 10.21 11.04 9.59 15.25 22.04 +68 1 3 18.91 13.37 13.46 12.50 14.83 10.58 17.00 11.17 14.88 13.00 16.29 27.42 +68 1 4 9.25 10.17 7.87 3.58 11.96 7.25 7.71 7.00 5.96 5.71 13.08 13.42 +68 1 5 15.79 15.96 11.29 5.79 11.67 4.58 9.75 5.83 7.79 6.71 9.21 13.42 +68 1 6 12.92 12.50 13.42 7.25 11.92 5.13 9.87 5.54 5.66 5.46 6.50 13.92 +68 1 7 8.67 7.79 9.54 3.96 8.08 2.33 7.12 3.88 3.75 2.58 5.96 12.92 +68 1 8 16.54 15.87 18.29 9.33 14.96 11.50 18.00 9.17 11.29 12.46 14.46 28.08 +68 1 9 17.67 16.62 20.17 10.13 14.71 7.92 14.88 10.37 10.96 8.54 11.42 23.58 +68 1 10 5.29 6.17 7.17 1.58 4.63 2.62 10.96 2.21 4.67 5.46 7.25 16.88 +68 1 11 5.04 4.71 5.37 0.75 7.50 1.79 4.42 4.38 0.71 1.96 6.29 10.92 +68 1 12 12.12 9.96 13.59 6.58 11.79 9.62 10.00 8.08 9.33 10.00 10.88 21.54 +68 1 13 15.92 13.67 16.92 6.96 9.87 6.29 10.00 8.46 7.17 9.25 14.67 19.58 +68 1 14 30.29 22.21 24.00 14.50 22.54 14.00 22.04 20.58 15.46 18.66 24.96 23.16 +68 1 15 15.41 15.63 12.79 11.58 16.42 10.71 19.41 13.83 15.50 14.25 19.70 29.04 +68 1 16 24.92 22.25 21.00 14.37 17.29 12.50 15.54 14.37 12.04 10.58 16.66 14.96 +68 1 17 15.54 15.50 11.50 12.21 17.37 10.63 20.12 13.17 15.59 13.33 17.71 23.13 +68 1 18 14.54 14.71 13.75 8.75 17.96 10.21 16.42 12.50 14.17 11.04 20.79 20.08 +68 1 19 9.79 14.09 10.25 4.88 10.75 6.42 8.08 11.79 7.25 9.42 23.04 17.96 +68 1 20 7.58 8.63 7.21 1.21 6.25 2.29 3.46 5.21 1.00 2.58 12.17 13.37 +68 1 21 4.96 5.25 3.00 0.08 4.63 0.04 0.46 0.58 0.46 1.33 1.87 4.79 +68 1 22 7.21 4.67 3.08 0.92 4.21 0.17 0.54 1.33 0.67 2.04 6.58 6.17 +68 1 23 8.00 7.21 6.42 3.92 4.75 2.62 8.75 4.58 5.83 6.21 11.96 21.04 +68 1 24 17.41 9.83 7.83 9.08 10.08 6.00 13.04 9.17 10.41 11.00 13.70 23.50 +68 1 25 25.12 12.04 14.75 12.83 14.88 7.46 19.79 14.75 16.71 12.87 17.33 22.58 +68 1 26 14.17 9.96 9.00 8.08 11.12 7.79 14.50 10.17 11.25 10.21 16.38 20.75 +68 1 27 13.83 11.34 11.12 6.34 12.38 6.38 12.29 6.71 10.41 9.50 15.34 20.00 +68 1 28 7.79 7.21 8.33 4.00 6.63 2.92 8.75 4.25 5.75 6.38 13.50 17.62 +68 1 29 15.75 16.83 13.79 7.87 13.00 9.96 17.62 13.59 12.08 13.25 23.09 25.84 +68 1 30 22.67 21.92 18.75 14.29 14.88 9.67 16.92 11.83 12.42 13.92 15.09 11.71 +68 1 31 20.67 21.00 18.00 13.21 17.46 10.58 16.00 14.67 12.92 12.00 17.25 25.25 +68 2 1 16.08 17.21 10.17 8.29 14.88 8.12 15.59 9.83 12.21 9.75 18.75 24.83 +68 2 2 14.62 16.29 8.92 8.04 12.38 6.34 13.46 8.25 12.21 6.79 16.04 15.59 +68 2 3 13.33 12.21 9.59 6.13 8.33 4.42 9.29 6.00 7.25 5.54 13.46 15.25 +68 2 4 21.75 22.08 15.67 11.67 17.46 11.54 15.04 14.33 14.25 15.29 22.54 26.71 +68 2 5 10.21 10.41 5.79 3.00 11.50 4.21 6.67 6.50 3.67 5.00 10.21 13.37 +68 2 6 11.21 6.71 7.79 4.67 6.71 2.37 8.71 5.29 5.83 4.79 6.92 16.08 +68 2 7 8.42 5.41 4.04 0.96 4.29 0.46 5.63 4.04 1.58 2.37 7.71 9.83 +68 2 8 6.50 3.42 5.83 3.00 3.50 0.46 1.75 2.37 0.71 1.38 7.38 17.04 +68 2 9 6.29 3.04 9.75 1.79 5.00 1.46 3.88 3.71 2.50 2.79 8.63 15.59 +68 2 10 17.46 19.62 17.00 9.08 17.16 10.63 10.04 11.50 9.33 7.12 13.70 16.62 +68 2 11 24.25 30.96 21.25 12.50 22.67 13.88 14.71 16.33 14.58 11.75 16.38 23.04 +68 2 12 8.50 7.75 10.54 2.54 8.46 5.41 6.42 4.17 2.46 3.17 7.25 13.29 +68 2 13 17.46 11.79 12.50 7.00 11.00 6.38 9.92 10.21 8.46 6.79 12.79 23.75 +68 2 14 17.08 14.71 15.41 8.21 12.92 8.17 14.71 13.08 10.25 4.83 13.13 13.46 +68 2 15 7.87 5.75 11.58 4.50 7.04 2.08 5.71 3.42 1.96 0.83 3.00 9.33 +68 2 16 3.92 2.67 4.79 0.79 2.96 1.04 6.17 1.87 2.92 1.13 2.67 10.37 +68 2 17 4.25 7.21 3.50 0.92 3.25 0.67 7.58 3.25 1.92 4.83 5.83 9.42 +68 2 18 10.34 8.33 7.17 2.13 6.08 1.04 3.63 2.62 0.83 3.50 5.58 6.25 +68 2 19 11.96 7.08 13.88 2.83 7.62 1.79 3.00 4.04 1.63 4.92 3.92 5.46 +68 2 20 9.62 6.00 9.38 2.83 5.00 0.29 2.37 2.25 1.08 5.41 4.25 16.79 +68 2 21 12.92 9.83 15.46 5.96 10.25 6.96 12.12 9.62 8.71 11.46 11.17 16.13 +68 2 22 15.34 14.50 27.33 10.75 14.79 6.67 14.92 9.83 9.71 9.83 12.25 14.21 +68 2 23 11.71 9.33 21.92 6.83 8.12 3.08 8.46 4.21 3.71 4.29 2.17 8.08 +68 2 24 8.42 5.88 8.75 3.25 7.21 2.04 8.29 5.54 3.42 8.96 10.17 13.88 +68 2 25 14.17 9.71 16.38 5.00 8.17 3.79 9.87 5.66 6.63 6.00 8.21 7.41 +68 2 26 11.08 6.04 14.09 3.71 6.29 1.17 4.83 4.83 5.00 7.04 7.17 8.00 +68 2 27 10.67 12.17 7.96 4.08 9.21 4.33 6.21 7.21 4.21 7.38 11.92 12.87 +68 2 28 21.04 20.25 15.41 10.83 18.66 11.92 11.83 11.67 11.79 13.42 19.55 24.25 +68 2 29 10.08 6.92 8.67 4.12 9.62 3.71 5.54 5.66 5.21 6.87 7.21 12.67 +68 3 1 8.67 6.21 9.59 3.88 4.67 0.58 4.63 3.17 1.17 3.42 5.29 4.46 +68 3 2 10.54 8.29 6.50 4.71 6.25 2.88 7.08 4.17 5.04 6.96 8.54 10.46 +68 3 3 8.75 5.66 7.12 3.54 6.04 1.54 7.54 4.71 4.04 7.87 7.21 14.00 +68 3 4 9.04 4.33 6.00 3.96 7.41 5.09 10.75 5.09 7.41 9.54 12.29 16.21 +68 3 5 16.54 9.25 10.04 10.37 13.33 9.00 16.92 11.46 14.25 17.25 16.66 22.75 +68 3 6 20.38 15.25 19.12 14.21 14.04 9.38 16.92 13.70 11.00 15.04 14.25 26.00 +68 3 7 14.00 12.54 26.12 8.04 8.96 3.71 10.75 7.38 4.33 7.71 13.33 13.96 +68 3 8 10.00 7.12 9.29 6.13 6.25 3.71 5.79 5.66 4.46 9.67 8.58 12.54 +68 3 9 8.63 7.54 5.54 6.00 6.87 4.25 8.12 5.91 5.88 9.96 8.42 12.04 +68 3 10 16.46 7.92 10.46 9.17 9.62 8.71 11.08 9.00 11.71 14.21 11.17 16.08 +68 3 11 14.25 7.29 9.25 8.67 7.96 6.71 11.34 6.75 9.54 12.62 7.46 14.67 +68 3 12 5.96 3.29 4.29 4.21 5.83 3.83 6.25 4.92 4.54 8.12 10.75 14.00 +68 3 13 15.09 9.67 11.75 9.42 14.04 10.08 15.71 12.58 12.83 15.00 16.17 19.87 +68 3 14 14.96 13.54 10.71 9.67 15.67 9.46 13.04 12.71 10.58 14.21 18.71 19.70 +68 3 15 19.70 17.04 13.17 11.04 18.63 10.08 14.50 14.33 13.25 13.13 20.25 20.12 +68 3 16 18.79 18.71 15.37 11.75 21.92 14.83 19.95 20.17 15.79 18.96 26.71 29.71 +68 3 17 25.25 28.46 17.21 19.50 29.54 19.75 24.50 28.21 22.67 21.79 34.92 40.37 +68 3 18 17.33 18.46 12.38 12.83 19.29 11.75 21.09 14.54 17.46 17.71 23.63 26.83 +68 3 19 23.83 19.79 20.50 10.54 18.91 12.62 18.66 12.67 13.59 15.16 23.42 23.63 +68 3 20 15.34 11.58 12.54 8.29 11.67 8.29 11.25 9.13 8.75 11.17 11.17 12.50 +68 3 21 9.92 10.75 5.33 4.96 11.92 5.83 7.67 7.00 4.50 6.83 10.58 10.41 +68 3 22 17.25 17.16 12.25 8.17 16.08 10.71 13.29 12.00 9.83 11.08 20.00 17.58 +68 3 23 22.17 9.62 24.17 12.58 10.46 7.41 13.62 8.21 6.87 8.17 12.25 13.67 +68 3 24 8.33 6.67 5.09 4.58 9.87 6.00 4.00 10.50 4.33 8.87 17.54 14.83 +68 3 25 13.83 11.79 12.17 8.46 17.00 11.75 13.67 14.62 12.29 16.62 21.67 22.79 +68 3 26 18.96 19.67 16.92 12.29 18.58 15.34 20.50 19.04 14.00 18.00 28.21 29.50 +68 3 27 17.37 20.67 17.71 9.92 16.58 12.33 19.79 21.62 12.87 23.29 32.21 28.62 +68 3 28 7.12 8.08 6.42 4.88 10.08 7.87 6.04 7.33 6.00 10.21 17.25 7.67 +68 3 29 15.59 13.04 7.58 6.00 10.46 5.37 6.38 8.04 5.66 8.50 12.33 12.08 +68 3 30 9.83 6.67 7.04 5.58 10.67 6.63 8.50 8.17 7.46 9.00 13.04 15.41 +68 3 31 14.12 13.04 11.71 9.54 17.67 11.58 16.71 13.21 14.54 13.17 20.17 13.13 +68 4 1 19.70 17.04 16.54 13.21 19.12 13.59 21.12 16.25 15.79 17.54 21.29 19.55 +68 4 2 23.83 19.58 18.58 15.04 18.00 11.92 17.00 14.12 14.58 16.38 25.50 32.50 +68 4 3 17.41 9.54 10.29 9.38 12.00 7.17 13.29 8.54 9.75 12.00 15.16 19.41 +68 4 4 7.25 7.58 7.38 4.71 6.04 3.25 6.58 8.25 4.21 9.08 10.88 17.58 +68 4 5 13.79 7.38 8.75 6.63 9.13 6.42 10.08 9.21 7.21 8.38 10.41 17.88 +68 4 6 6.46 4.71 6.50 3.71 7.29 3.92 9.33 6.42 5.21 8.21 9.00 15.75 +68 4 7 7.17 4.38 14.21 4.17 6.92 3.71 5.71 2.92 2.46 3.75 4.12 8.54 +68 4 8 4.42 7.46 4.12 1.25 6.42 2.83 4.63 5.58 2.37 3.92 11.71 11.21 +68 4 9 5.13 7.54 1.75 2.17 7.12 1.46 4.96 3.42 1.46 2.08 7.71 5.37 +68 4 10 7.54 8.79 5.75 3.17 6.92 3.17 4.83 4.79 3.00 6.75 8.92 10.37 +68 4 11 9.83 9.17 9.33 3.67 8.67 4.71 5.75 7.12 4.42 5.71 8.08 12.04 +68 4 12 13.29 14.04 10.63 7.33 14.88 8.50 8.50 10.25 6.79 9.83 14.58 12.92 +68 4 13 10.67 12.46 11.34 4.63 9.54 4.63 7.38 9.17 6.79 7.46 11.25 11.63 +68 4 14 15.25 10.96 16.17 7.79 11.04 8.96 11.75 10.67 9.21 8.21 11.50 14.83 +68 4 15 16.08 14.25 10.63 8.75 14.37 9.71 11.17 12.96 9.96 10.29 13.67 18.38 +68 4 16 16.29 14.46 11.96 9.42 14.54 10.41 11.00 13.37 9.29 10.54 14.46 27.12 +68 4 17 20.91 17.83 18.66 15.75 20.30 17.16 14.29 17.58 14.17 14.79 18.91 24.67 +68 4 18 18.34 19.33 13.96 13.67 20.67 13.67 11.46 16.46 13.04 14.09 18.88 20.83 +68 4 19 15.04 14.29 14.92 10.37 13.83 10.54 10.58 10.63 9.29 11.12 13.62 14.54 +68 4 20 11.21 12.29 9.59 8.08 11.50 9.04 8.38 9.17 7.29 7.96 13.42 8.83 +68 4 21 5.83 8.42 8.92 3.83 8.38 2.79 3.17 5.41 1.50 1.92 3.46 7.54 +68 4 22 16.92 13.62 13.62 12.17 16.08 12.83 7.96 11.87 10.54 12.21 15.54 15.09 +68 4 23 9.42 6.58 11.46 7.12 12.04 7.38 7.58 9.08 5.75 8.71 9.00 11.71 +68 4 24 5.96 11.25 6.34 4.12 8.46 4.04 6.17 5.79 2.75 4.96 13.42 8.08 +68 4 25 13.54 18.34 10.04 10.50 17.08 12.67 5.66 12.87 10.41 11.46 16.92 15.92 +68 4 26 17.83 14.71 16.83 12.83 19.00 13.88 12.62 11.67 13.83 14.17 18.54 23.33 +68 4 27 10.58 6.75 9.75 7.87 10.75 8.79 8.17 6.87 8.63 11.08 7.46 18.96 +68 4 28 9.79 5.79 9.38 5.79 10.13 6.38 9.29 6.00 5.17 7.29 7.00 12.71 +68 4 29 8.21 3.79 5.63 2.75 8.83 2.42 4.17 5.25 2.58 4.38 8.04 13.79 +68 4 30 12.83 8.04 7.75 6.42 10.04 4.75 6.21 8.75 3.83 7.21 11.92 9.08 +68 5 1 6.96 6.00 6.25 3.88 9.00 3.63 3.88 5.66 0.67 2.46 8.87 5.50 +68 5 2 9.79 6.34 6.17 2.29 8.21 1.46 3.17 5.79 1.17 3.13 13.29 12.62 +68 5 3 10.83 8.21 8.71 5.88 9.75 5.25 6.96 5.13 6.46 6.38 8.21 10.08 +68 5 4 10.13 13.33 6.21 3.83 9.62 2.00 3.63 8.17 2.67 4.29 17.96 11.58 +68 5 5 15.46 17.67 8.00 6.50 14.50 6.42 6.92 13.37 6.13 7.62 26.12 28.75 +68 5 6 25.80 17.67 19.46 14.29 18.29 13.13 15.96 13.46 14.00 16.08 19.67 26.34 +68 5 7 14.09 10.88 11.21 6.54 9.75 4.29 7.33 5.37 4.96 3.63 11.42 9.08 +68 5 8 16.46 14.88 24.08 10.96 11.96 8.54 13.50 10.83 8.12 7.17 15.87 14.12 +68 5 9 12.83 13.79 13.33 7.41 15.00 7.79 9.96 10.50 7.38 10.41 18.91 18.29 +68 5 10 17.41 17.25 13.96 9.96 19.67 11.42 16.25 13.96 13.54 10.34 17.16 14.67 +68 5 11 20.08 13.25 12.21 12.04 15.04 10.41 12.00 13.59 11.17 12.96 18.75 19.08 +68 5 12 16.50 12.58 14.75 7.04 10.88 7.46 11.83 9.25 9.17 8.50 13.08 18.38 +68 5 13 5.75 4.54 8.21 2.88 5.58 2.08 5.58 4.00 3.46 5.79 8.75 14.42 +68 5 14 8.71 9.21 11.08 4.21 10.21 5.79 6.92 9.38 5.96 4.83 14.58 10.54 +68 5 15 13.00 8.42 11.08 9.62 14.00 10.63 16.58 13.33 12.83 11.29 14.71 19.62 +68 5 16 11.63 6.96 8.04 7.87 10.00 5.21 8.79 6.50 6.38 8.08 6.34 11.87 +68 5 17 9.83 6.00 7.41 4.29 9.17 4.00 4.46 6.54 3.67 4.50 10.54 10.71 +68 5 18 7.17 8.71 16.00 5.17 6.75 2.33 5.37 6.17 3.29 2.46 9.00 8.33 +68 5 19 6.04 3.92 7.04 1.79 6.13 2.00 3.33 6.04 1.75 5.41 9.96 11.54 +68 5 20 10.34 6.21 6.17 5.88 7.87 4.04 5.29 6.75 4.75 5.88 9.75 12.96 +68 5 21 5.58 4.25 5.75 2.54 4.71 0.54 3.92 2.54 2.00 2.75 6.46 7.17 +68 5 22 4.12 5.50 8.83 1.79 5.91 2.58 4.12 6.00 4.25 4.33 5.13 10.79 +68 5 23 11.92 14.46 9.08 5.21 14.42 6.71 5.04 8.87 4.92 7.41 11.58 15.46 +68 5 24 15.16 13.37 15.67 8.71 17.04 12.92 10.08 13.83 10.21 12.46 16.29 19.62 +68 5 25 6.58 4.33 7.41 3.58 5.91 1.08 3.46 5.04 1.92 4.12 6.79 17.37 +68 5 26 8.63 7.50 7.83 4.38 5.83 2.79 3.67 3.00 1.50 2.75 8.25 15.29 +68 5 27 5.33 3.63 7.96 2.54 5.46 1.38 3.29 4.04 1.21 1.67 4.63 6.58 +68 5 28 5.17 5.96 4.50 3.42 5.83 1.63 3.00 4.04 0.96 2.21 11.21 2.67 +68 5 29 4.38 9.83 5.13 3.17 8.54 1.75 4.25 3.83 1.13 3.00 10.58 5.04 +68 5 30 8.50 14.79 5.96 7.71 13.79 8.42 4.63 10.17 6.67 10.13 16.88 15.12 +68 5 31 8.54 10.88 5.33 8.50 7.50 7.79 3.04 9.04 6.92 9.71 18.16 13.13 +68 6 1 8.33 10.17 4.33 5.75 10.04 4.46 4.96 8.46 3.88 5.41 13.67 11.50 +68 6 2 15.54 7.79 7.29 6.46 9.62 3.75 4.54 6.29 3.71 4.29 4.58 4.08 +68 6 3 10.96 9.83 8.08 5.04 8.46 3.58 3.29 6.29 3.83 3.13 14.46 5.00 +68 6 4 9.96 10.25 7.71 5.88 12.67 6.54 7.83 9.33 7.33 7.08 17.04 15.67 +68 6 5 6.58 8.92 6.21 4.38 11.00 6.13 6.13 7.50 6.87 6.63 17.67 17.62 +68 6 6 10.00 10.79 8.00 7.50 13.29 7.92 11.08 10.00 9.50 7.25 16.17 19.00 +68 6 7 6.38 10.29 8.17 5.96 8.71 4.46 6.50 4.63 3.50 2.46 9.50 11.29 +68 6 8 4.71 6.63 4.17 3.67 8.67 4.04 3.54 6.08 3.13 4.38 9.83 6.00 +68 6 9 3.92 3.17 3.33 1.38 5.91 0.75 2.96 3.29 0.67 0.87 7.12 6.50 +68 6 10 3.79 6.38 1.87 3.37 5.50 3.08 1.87 3.46 2.33 2.04 3.08 7.71 +68 6 11 4.54 6.63 5.04 3.71 3.08 1.92 4.67 2.71 4.00 5.00 4.58 5.88 +68 6 12 3.88 3.63 3.17 2.42 5.58 1.96 3.67 3.58 1.96 3.50 7.87 7.33 +68 6 13 4.25 2.17 9.75 2.58 5.96 2.50 3.33 2.88 3.25 2.37 5.88 3.63 +68 6 14 5.79 4.83 16.88 6.50 7.04 2.04 5.33 6.63 2.46 2.13 11.58 8.25 +68 6 15 6.34 2.37 11.12 5.91 7.00 2.00 3.42 3.63 2.54 2.13 12.08 7.00 +68 6 16 4.92 6.96 5.33 3.79 5.33 2.96 3.13 5.00 1.75 3.54 10.71 7.79 +68 6 17 6.75 8.54 8.38 3.29 6.34 2.17 5.13 7.54 1.83 4.50 16.29 4.83 +68 6 18 6.25 6.17 8.12 4.29 10.75 3.79 5.96 5.46 4.46 3.75 12.12 11.46 +68 6 19 9.75 9.13 8.33 5.04 12.38 4.38 5.41 6.87 4.46 3.88 12.00 8.46 +68 6 20 10.88 12.62 9.04 7.17 14.17 7.25 9.38 9.21 7.54 7.00 13.50 13.59 +68 6 21 10.29 10.08 12.21 8.46 13.13 6.17 10.41 7.54 7.58 5.29 11.42 14.75 +68 6 22 7.92 9.50 7.71 6.83 11.25 5.46 6.00 7.08 4.46 4.12 14.33 10.96 +68 6 23 17.00 12.62 11.54 11.79 17.54 11.38 13.75 12.04 11.96 10.29 17.83 17.04 +68 6 24 9.00 9.96 8.83 5.88 9.50 5.79 8.00 7.04 5.33 6.75 10.17 14.25 +68 6 25 18.75 16.21 18.08 11.58 19.41 10.25 11.75 12.08 11.87 10.63 17.54 16.75 +68 6 26 10.37 8.00 10.50 7.41 8.46 4.29 7.12 6.21 4.50 5.13 10.04 15.50 +68 6 27 8.75 5.75 7.83 5.13 7.54 2.54 5.37 5.88 2.58 5.66 8.33 7.46 +68 6 28 10.63 8.08 11.04 4.50 9.08 3.54 8.21 9.00 7.41 5.46 13.00 11.17 +68 6 29 12.00 16.25 12.96 9.75 16.08 9.75 9.13 11.67 9.79 9.59 18.96 15.79 +68 6 30 13.54 15.09 13.62 10.29 16.04 11.67 12.00 12.79 11.71 12.83 24.71 19.04 +68 7 1 7.17 5.29 8.29 3.04 8.42 3.42 2.71 6.42 3.29 4.92 14.75 8.29 +68 7 2 18.54 11.34 13.62 10.46 16.13 9.75 12.38 10.50 12.08 13.25 14.62 20.17 +68 7 3 11.00 9.08 10.92 7.92 15.50 10.46 15.67 10.96 14.25 11.96 16.42 20.75 +68 7 4 6.58 3.50 8.46 4.04 10.00 4.67 7.96 6.58 7.41 6.25 9.42 17.92 +68 7 5 2.71 2.75 3.92 1.92 4.46 0.50 3.13 1.63 1.29 1.63 4.75 9.62 +68 7 6 3.33 1.17 3.54 1.29 3.88 1.04 2.42 3.29 2.92 1.71 6.92 6.34 +68 7 7 7.58 8.50 11.08 2.46 8.92 4.21 4.12 7.62 3.08 2.25 13.70 10.83 +68 7 8 4.75 6.54 8.75 3.42 7.00 1.63 3.79 4.04 3.25 2.33 6.13 6.87 +68 7 9 4.92 3.29 3.92 1.87 3.96 0.29 3.46 3.71 1.29 0.87 10.67 7.75 +68 7 10 5.83 8.25 17.58 7.04 9.29 5.63 10.17 8.46 6.75 5.75 13.92 11.34 +68 7 11 13.13 8.29 10.00 7.08 10.29 5.50 6.67 5.75 6.96 5.96 9.46 9.17 +68 7 12 3.75 5.41 4.25 2.13 4.83 1.38 5.25 3.13 1.67 2.50 7.83 7.08 +68 7 13 11.79 10.79 9.67 6.83 11.96 6.34 8.08 7.21 7.62 4.63 13.59 11.67 +68 7 14 12.58 15.09 12.08 9.33 15.09 8.96 12.12 12.62 10.41 11.50 16.58 13.79 +68 7 15 13.17 8.04 8.96 9.50 11.08 8.00 11.08 8.21 9.71 9.29 10.37 10.88 +68 7 16 14.00 9.54 8.46 7.17 10.79 6.87 10.04 8.38 8.21 9.87 13.67 18.05 +68 7 17 8.87 4.25 7.96 4.12 4.96 1.67 4.58 4.75 5.00 4.42 7.62 11.96 +68 7 18 7.67 4.17 5.17 2.67 3.46 0.96 2.46 2.29 2.13 0.67 8.17 6.50 +68 7 19 5.54 4.25 4.08 3.50 6.54 3.67 5.37 5.83 4.50 3.75 9.67 11.00 +68 7 20 5.25 2.88 3.71 2.79 5.88 1.87 4.46 2.58 3.13 2.71 8.04 12.87 +68 7 21 4.92 2.13 5.71 2.29 3.63 0.25 2.83 2.00 1.17 0.37 4.71 6.71 +68 7 22 7.46 4.88 7.12 5.41 8.21 4.54 8.87 5.58 7.38 5.54 10.13 14.29 +68 7 23 8.83 6.87 13.59 6.71 8.83 5.25 7.04 7.46 6.21 8.58 11.92 13.42 +68 7 24 5.66 3.37 6.63 4.38 4.92 2.00 2.42 1.92 1.79 3.75 6.34 8.50 +68 7 25 3.46 2.42 3.42 2.54 4.00 1.54 2.25 1.75 1.04 1.33 6.96 5.04 +68 7 26 3.71 2.46 5.13 2.92 5.75 1.00 4.54 3.17 1.87 2.54 4.38 6.75 +68 7 27 2.92 3.13 2.54 1.87 4.83 1.00 2.13 3.08 2.21 1.50 4.08 3.50 +68 7 28 5.09 2.08 15.16 3.21 4.38 1.96 3.04 3.42 2.37 2.29 5.79 6.67 +68 7 29 5.58 3.75 10.34 2.92 3.92 2.21 5.96 4.00 5.58 3.08 3.46 9.13 +68 7 30 2.79 5.63 8.08 1.63 5.71 0.75 2.96 1.13 2.08 1.04 8.08 3.92 +68 7 31 4.58 7.58 9.71 3.50 6.63 0.92 2.37 4.67 1.54 0.67 10.96 4.00 +68 8 1 4.33 2.00 10.88 3.92 6.08 1.42 3.63 1.92 2.88 1.38 7.50 3.37 +68 8 2 3.88 2.37 6.04 2.46 3.75 1.38 2.58 2.21 1.75 1.58 9.13 5.54 +68 8 3 3.50 1.71 5.83 2.50 3.25 1.04 2.42 2.25 3.37 1.67 5.13 5.58 +68 8 4 3.63 0.71 11.38 2.62 3.67 1.96 2.71 1.79 2.88 1.58 4.42 7.29 +68 8 5 4.79 2.88 14.17 4.75 4.21 3.42 6.13 2.92 5.29 2.42 8.00 8.12 +68 8 6 6.42 4.92 18.54 5.33 6.75 4.75 7.04 2.33 5.13 3.21 8.63 4.29 +68 8 7 9.50 4.25 20.83 7.54 8.54 4.33 7.87 5.50 5.29 3.58 10.00 5.63 +68 8 8 8.25 5.63 20.67 7.62 7.00 2.54 8.83 6.04 4.46 3.25 13.67 5.46 +68 8 9 6.00 4.75 21.62 7.12 7.46 3.00 7.38 3.79 4.96 2.54 10.67 3.04 +68 8 10 5.91 2.83 9.71 4.33 5.41 1.67 2.83 4.12 2.92 1.54 6.75 5.83 +68 8 11 7.54 4.46 6.50 2.21 3.08 1.75 5.29 1.96 2.42 1.17 6.21 5.54 +68 8 12 14.50 10.34 11.87 6.42 12.58 6.75 5.96 7.41 5.66 4.42 10.21 11.04 +68 8 13 17.12 16.04 11.46 11.92 19.38 13.33 13.33 16.29 14.33 8.63 19.17 12.12 +68 8 14 18.66 11.42 13.62 11.21 16.83 10.46 10.37 10.83 11.12 8.83 10.58 12.33 +68 8 15 13.75 9.79 10.13 6.13 13.42 5.46 6.46 6.83 7.04 4.50 7.83 10.88 +68 8 16 6.50 6.42 6.21 3.21 6.96 2.33 4.88 3.67 2.62 1.92 6.13 6.71 +68 8 17 11.25 9.83 8.67 6.67 10.58 5.91 7.41 8.21 6.71 4.38 10.92 13.79 +68 8 18 9.33 6.04 8.00 3.96 8.42 4.42 9.33 6.34 7.00 6.21 9.50 12.79 +68 8 19 18.34 18.84 16.79 9.21 14.29 9.33 10.46 12.25 9.33 8.42 18.46 16.25 +68 8 20 13.08 13.13 12.87 6.71 12.79 7.92 10.00 13.67 9.25 10.46 19.38 18.58 +68 8 21 11.29 16.50 12.08 8.83 13.88 9.25 6.38 12.17 8.96 11.58 23.38 18.29 +68 8 22 12.54 8.00 11.08 10.29 9.54 7.87 6.08 10.08 9.00 9.67 16.21 15.00 +68 8 23 10.71 5.25 8.17 5.37 6.96 2.25 4.46 4.33 3.21 4.21 5.41 7.41 +68 8 24 9.04 7.04 18.75 7.17 7.46 4.12 8.46 6.08 6.38 4.75 9.13 7.38 +68 8 25 9.62 1.83 16.92 4.96 6.54 5.83 7.25 6.75 6.34 3.46 7.46 8.92 +68 8 26 7.46 4.17 19.08 4.79 7.96 5.21 7.46 6.50 6.71 4.96 7.71 11.25 +68 8 27 4.46 3.96 19.92 6.38 6.96 4.25 6.25 4.21 4.67 4.17 8.75 6.21 +68 8 28 6.00 4.83 15.75 7.41 10.34 2.62 5.13 7.46 4.08 2.96 14.04 10.96 +68 8 29 8.21 5.00 19.33 6.04 9.00 2.37 6.00 5.21 2.96 2.42 10.25 10.37 +68 8 30 10.17 9.00 9.29 5.83 11.54 6.42 8.54 8.08 7.38 8.33 16.13 17.88 +68 8 31 10.41 9.04 9.17 5.41 12.96 6.54 8.42 8.12 8.25 8.54 13.83 16.54 +68 9 1 5.41 3.46 7.46 3.08 6.42 2.17 4.00 3.96 2.04 3.04 7.41 7.67 +68 9 2 5.17 3.46 5.29 3.25 5.58 2.29 6.42 2.46 4.00 4.63 5.50 6.71 +68 9 3 12.67 4.25 4.50 4.00 9.71 3.83 7.38 7.38 7.33 7.54 10.96 16.21 +68 9 4 8.92 10.34 6.79 3.88 7.96 3.04 5.50 4.83 4.71 4.08 8.38 8.79 +68 9 5 15.04 12.21 13.42 8.83 13.33 6.71 10.41 10.67 7.83 10.04 16.54 17.04 +68 9 6 3.25 7.08 3.42 1.54 6.29 2.50 5.75 5.75 3.08 3.33 11.71 8.75 +68 9 7 13.92 14.96 8.42 5.96 14.92 7.62 7.38 11.17 7.79 9.71 15.67 16.79 +68 9 8 8.50 5.25 11.96 8.08 6.87 6.58 10.13 5.88 8.58 8.00 10.17 15.83 +68 9 9 15.00 16.71 15.54 12.54 18.38 12.92 13.42 13.59 15.04 15.09 18.00 23.79 +68 9 10 11.38 13.83 8.67 6.79 12.67 6.46 4.92 10.63 7.50 9.59 18.41 16.29 +68 9 11 5.21 7.54 6.83 1.67 6.17 2.33 3.46 4.63 2.37 2.62 11.12 9.54 +68 9 12 3.42 2.58 5.46 1.38 6.17 2.04 2.46 1.92 0.46 0.58 5.21 6.42 +68 9 13 3.83 4.96 4.21 1.58 4.21 1.04 1.42 2.83 1.21 1.96 4.67 10.17 +68 9 14 13.17 11.25 22.71 9.62 12.79 8.29 11.04 9.83 8.67 8.96 14.00 14.54 +68 9 15 14.62 12.29 31.63 10.21 10.29 6.34 14.96 10.08 9.13 9.59 13.70 17.25 +68 9 16 14.79 8.83 22.54 8.83 8.54 3.88 10.79 6.50 7.54 7.12 10.00 6.42 +68 9 17 6.34 3.08 14.92 3.58 2.96 1.46 4.17 2.21 3.92 2.21 4.42 6.79 +68 9 18 13.29 15.00 9.83 5.09 12.54 6.63 5.13 9.67 5.75 7.04 13.04 12.54 +68 9 19 14.46 7.62 16.50 8.87 11.46 10.21 13.29 9.25 8.96 10.34 11.67 17.96 +68 9 20 22.88 19.67 17.25 13.42 17.79 10.83 18.75 12.54 13.04 9.29 13.96 16.04 +68 9 21 12.38 8.42 9.42 7.29 12.83 6.54 13.59 8.38 9.79 5.91 9.96 9.79 +68 9 22 15.21 15.16 11.04 5.46 12.46 6.79 8.29 8.21 7.04 6.29 13.96 7.96 +68 9 23 16.08 21.25 12.04 8.75 19.17 9.50 14.37 11.67 11.21 8.83 18.05 10.63 +68 9 24 11.67 9.83 6.34 6.08 12.08 4.71 8.96 7.92 7.79 4.17 11.63 9.46 +68 9 25 14.04 11.96 12.46 5.71 11.87 7.79 8.00 9.08 7.58 8.12 12.92 13.88 +68 9 26 10.00 11.21 9.38 6.17 11.54 7.21 9.67 8.42 7.71 7.08 13.75 15.25 +68 9 27 25.41 23.45 20.54 14.00 21.21 14.54 16.92 17.12 14.58 17.50 27.58 24.50 +68 9 28 18.05 19.38 17.58 11.50 18.84 10.92 17.33 14.58 15.41 13.37 21.29 21.46 +68 9 29 15.46 14.96 11.67 9.67 16.96 9.29 13.54 12.50 11.00 11.08 17.58 18.63 +68 9 30 14.54 14.83 12.42 9.75 19.55 10.46 12.83 11.46 12.38 10.41 15.75 20.41 +68 10 1 14.25 16.79 16.00 8.38 17.79 10.67 17.33 16.21 15.12 14.12 23.83 20.46 +68 10 2 14.83 14.75 15.75 7.25 10.79 7.62 14.00 10.71 10.79 9.00 13.29 15.63 +68 10 3 10.71 11.34 12.83 5.04 7.08 3.50 5.46 9.46 5.71 6.34 10.21 5.21 +68 10 4 13.33 15.34 9.79 7.87 12.62 6.79 4.79 9.87 8.17 8.38 11.08 13.29 +68 10 5 6.25 8.96 8.38 3.83 6.67 3.42 2.04 4.75 4.83 3.75 9.79 7.67 +68 10 6 2.37 5.46 4.54 0.92 2.08 0.33 4.46 0.33 0.92 1.87 3.13 7.87 +68 10 7 4.00 3.46 2.37 0.71 3.96 0.63 1.75 1.54 0.71 1.33 4.08 10.34 +68 10 8 7.92 5.83 12.46 2.67 4.00 1.13 3.21 5.50 2.08 2.54 9.33 7.17 +68 10 9 17.29 15.09 15.00 8.67 12.50 7.87 8.17 11.08 9.38 12.04 17.37 19.12 +68 10 10 18.46 15.96 16.42 9.79 14.75 9.42 12.58 11.83 10.88 11.04 19.92 19.04 +68 10 11 24.83 22.83 21.17 14.00 21.42 13.67 14.42 20.91 15.21 19.17 33.21 27.58 +68 10 12 24.92 22.67 20.17 14.62 27.04 17.50 20.41 20.96 19.55 20.12 34.54 34.46 +68 10 13 15.16 11.79 12.08 7.92 16.29 9.17 16.46 11.54 11.87 10.75 19.87 27.67 +68 10 14 5.50 8.00 5.54 3.96 9.96 5.25 9.71 6.71 6.63 5.25 12.58 17.08 +68 10 15 13.70 15.09 10.54 6.13 15.37 7.21 11.08 11.42 10.34 10.21 21.75 23.16 +68 10 16 11.67 9.46 8.75 6.50 12.92 7.12 12.08 12.46 10.71 9.96 17.62 27.16 +68 10 17 9.62 11.08 7.46 3.67 9.92 5.54 7.62 6.96 6.38 3.13 8.96 12.79 +68 10 18 15.63 17.50 16.08 9.54 17.88 12.83 15.59 15.87 11.96 14.54 21.50 26.96 +68 10 19 19.41 16.54 20.46 14.17 16.46 10.46 13.88 11.75 14.04 15.37 21.09 21.17 +68 10 20 9.87 11.04 9.46 4.75 9.13 6.87 7.50 12.04 7.46 10.96 23.16 18.84 +68 10 21 6.25 5.83 2.17 2.00 6.08 3.00 3.04 5.00 2.83 2.79 6.08 9.13 +68 10 22 5.66 10.04 3.58 3.58 8.67 2.79 1.21 4.75 3.25 2.54 8.92 9.46 +68 10 23 14.37 19.50 9.92 7.67 14.67 9.79 8.96 9.17 7.54 4.88 13.17 11.00 +68 10 24 11.71 7.96 13.46 4.38 7.83 3.71 6.04 7.41 6.25 3.83 10.25 9.67 +68 10 25 5.04 1.58 5.29 1.04 4.50 0.37 1.13 2.21 2.00 1.71 5.83 7.71 +68 10 26 12.21 10.21 8.58 6.17 9.29 5.54 3.54 7.12 5.63 5.29 9.00 12.46 +68 10 27 11.83 8.87 11.87 5.88 10.54 5.37 4.63 6.46 6.67 5.63 8.92 12.17 +68 10 28 18.29 12.87 15.00 7.96 13.37 8.79 9.29 11.87 11.34 14.04 16.38 16.54 +68 10 29 16.33 13.62 12.58 6.96 12.21 6.79 9.04 10.00 9.38 10.13 16.25 16.13 +68 10 30 15.63 9.96 11.96 9.00 11.42 7.96 6.42 7.08 9.75 11.21 8.38 15.34 +68 10 31 11.12 5.00 8.63 4.42 5.63 2.08 3.25 10.00 3.79 7.58 21.54 25.75 +68 11 1 13.70 16.50 11.29 5.50 13.33 5.29 8.92 23.58 11.46 21.75 35.30 37.59 +68 11 2 17.75 21.21 26.34 12.96 19.25 12.79 20.33 16.33 14.58 16.13 24.30 27.92 +68 11 3 11.42 6.63 18.21 6.50 6.04 1.00 9.59 4.54 4.83 4.63 8.08 15.12 +68 11 4 15.83 18.96 12.04 4.67 12.62 7.00 6.38 10.29 4.92 7.75 14.54 12.50 +68 11 5 21.34 21.54 19.55 11.00 17.83 12.83 15.12 12.96 10.79 14.62 18.71 21.17 +68 11 6 23.29 21.04 21.37 7.92 21.25 10.92 16.75 14.29 10.96 12.04 16.54 23.87 +68 11 7 12.75 15.83 15.92 6.00 14.00 7.54 17.67 13.13 10.58 11.17 16.00 31.25 +68 11 8 10.92 9.87 12.12 3.88 10.29 5.88 9.71 9.92 7.58 7.83 12.87 17.75 +68 11 9 19.50 18.50 14.62 7.62 17.71 14.88 9.87 15.63 10.63 11.00 18.88 21.25 +68 11 10 17.67 12.87 17.79 11.87 14.33 13.37 17.96 11.46 14.50 18.41 13.75 29.58 +68 11 11 16.71 17.08 13.13 7.41 12.67 8.87 7.38 12.00 8.75 10.92 15.96 18.08 +68 11 12 23.79 26.25 23.79 15.92 26.08 16.00 17.75 19.55 18.00 19.29 24.30 30.25 +68 11 13 11.46 7.58 19.00 8.46 11.50 13.13 16.33 11.63 10.25 11.50 13.33 22.79 +68 11 14 21.17 21.34 20.21 10.34 20.79 12.46 14.12 14.37 12.58 12.33 15.83 23.33 +68 11 15 22.37 22.34 18.46 9.17 20.25 12.67 12.58 14.50 12.25 15.29 15.75 23.04 +68 11 16 11.75 10.75 8.92 2.33 12.83 4.42 4.04 7.00 3.33 5.83 10.58 19.00 +68 11 17 6.25 10.41 5.25 1.63 9.71 2.79 3.83 7.38 1.96 3.67 8.54 10.96 +68 11 18 8.38 12.38 3.75 1.25 10.71 3.04 1.54 7.92 2.88 2.62 9.25 10.21 +68 11 19 16.46 16.08 13.75 8.12 15.87 12.71 9.08 13.79 10.46 10.54 16.17 17.88 +68 11 20 9.75 12.08 12.96 5.54 7.21 4.25 11.96 6.04 5.46 7.62 9.04 15.63 +68 11 21 19.58 8.75 18.66 12.21 11.83 11.21 10.88 7.29 14.00 15.16 17.67 21.34 +68 11 22 12.83 11.54 13.50 5.75 9.29 6.54 10.08 8.00 8.79 10.37 15.37 14.71 +68 11 23 13.29 13.62 12.67 5.71 12.25 5.66 12.38 8.38 10.17 11.50 16.92 20.91 +68 11 24 13.29 15.87 10.25 5.91 12.54 6.13 11.83 9.62 8.79 11.67 19.38 21.17 +68 11 25 19.29 19.95 18.29 12.50 18.71 10.88 14.09 17.12 13.13 18.25 28.46 28.21 +68 11 26 4.12 3.96 7.25 0.96 6.87 2.37 4.04 6.13 3.96 5.33 13.13 18.63 +68 11 27 8.42 9.83 8.25 2.96 7.92 3.00 5.50 7.75 6.25 7.04 11.58 12.54 +68 11 28 12.17 8.04 8.58 2.42 4.58 3.92 5.09 7.96 5.63 6.83 12.50 10.34 +68 11 29 12.33 7.17 15.41 4.83 6.79 6.21 10.92 10.25 10.54 8.50 12.33 17.37 +68 11 30 10.54 9.75 11.34 3.50 6.34 2.50 8.67 7.62 7.25 7.46 9.50 15.00 +68 12 1 15.29 14.58 14.00 6.29 12.62 7.96 12.42 10.71 9.67 10.67 12.96 22.95 +68 12 2 12.00 9.96 14.25 8.75 9.67 7.67 10.04 9.04 10.92 12.00 9.87 20.88 +68 12 3 14.71 10.29 16.54 10.54 10.67 7.00 11.63 10.50 10.00 13.88 14.79 19.50 +68 12 4 1.21 9.59 5.25 0.46 6.79 1.29 1.63 4.50 1.79 3.42 12.33 10.63 +68 12 5 10.63 13.54 16.33 7.29 8.46 5.29 8.29 6.17 7.50 7.29 8.83 10.79 +68 12 6 17.08 16.25 15.16 6.63 13.83 8.96 8.96 9.46 6.04 8.71 10.13 16.21 +68 12 7 9.25 7.50 12.75 2.33 6.75 1.04 6.46 2.75 3.04 5.41 7.29 11.38 +68 12 8 3.92 4.46 10.34 4.12 4.79 2.96 5.83 3.08 4.58 6.21 9.29 14.58 +68 12 9 7.96 12.12 13.04 4.63 9.50 6.50 10.63 9.29 9.62 13.25 13.33 22.63 +68 12 10 5.91 6.71 9.83 2.71 7.21 2.75 6.71 6.17 5.91 5.91 7.83 12.33 +68 12 11 1.96 5.83 6.29 0.75 4.17 1.87 2.29 2.42 0.75 1.33 9.08 9.96 +68 12 12 15.59 13.96 14.75 9.67 12.12 10.25 7.50 11.08 11.96 14.09 18.16 26.58 +68 12 13 21.46 11.63 19.50 6.96 5.91 2.62 12.04 2.71 7.04 9.13 6.13 6.79 +68 12 14 13.37 13.04 6.50 3.13 9.29 3.75 1.96 7.58 4.25 5.50 11.42 17.25 +68 12 15 11.54 12.21 9.59 5.83 10.83 6.34 10.29 5.54 7.83 12.46 12.42 20.38 +68 12 16 14.50 9.87 9.54 3.75 11.42 5.88 4.50 7.17 6.38 5.41 11.75 8.83 +68 12 17 19.75 17.12 13.62 10.79 15.63 10.92 20.88 15.16 15.37 18.12 18.29 26.20 +68 12 18 22.08 16.29 27.54 13.37 13.59 9.92 17.37 9.62 12.42 14.79 12.58 24.67 +68 12 19 15.96 9.42 13.25 5.46 9.33 5.75 6.87 8.29 7.46 9.79 15.54 20.17 +68 12 20 15.75 8.87 13.08 5.54 6.92 3.88 7.50 2.04 6.04 5.66 9.29 16.71 +68 12 21 17.12 17.37 13.83 8.63 12.96 9.21 9.42 10.67 9.54 10.71 14.09 17.54 +68 12 22 28.71 29.38 22.67 17.46 28.04 16.21 24.62 21.09 20.54 22.34 30.84 30.71 +68 12 23 8.17 7.71 6.17 3.21 7.00 2.88 9.25 4.38 6.87 7.00 9.62 20.33 +68 12 24 13.59 18.00 9.83 3.42 13.46 5.91 9.42 8.79 8.08 7.29 13.00 19.17 +68 12 25 10.88 12.54 11.29 5.75 10.00 4.08 9.59 8.04 7.67 8.87 10.21 20.21 +68 12 26 9.54 10.00 15.21 5.33 4.63 0.46 7.83 3.29 5.00 4.67 6.83 22.75 +68 12 27 12.21 3.96 15.71 5.83 6.67 3.42 9.87 5.46 7.21 8.29 12.12 25.00 +68 12 28 16.96 7.75 18.00 7.79 9.17 5.88 10.46 4.25 9.25 9.08 18.58 30.16 +68 12 29 16.62 5.96 16.88 5.00 8.83 5.41 10.83 5.54 10.88 10.00 13.08 26.25 +68 12 30 12.96 7.08 12.25 4.25 5.63 2.25 7.58 4.12 7.54 8.67 8.17 19.04 +68 12 31 9.13 2.13 7.38 2.50 4.04 0.50 6.83 2.54 3.54 5.50 5.71 12.42 +69 1 1 6.13 1.63 5.41 1.08 2.54 1.00 8.50 2.42 4.58 6.34 9.17 16.71 +69 1 2 2.62 0.54 6.71 2.88 5.63 1.13 7.75 1.87 5.83 5.41 8.17 13.29 +69 1 3 4.17 2.37 6.29 1.67 4.00 2.37 7.96 5.41 5.04 7.25 11.96 16.17 +69 1 4 6.00 6.87 7.67 4.63 9.50 5.04 11.25 6.87 8.58 11.17 16.08 17.25 +69 1 5 10.50 8.38 7.71 3.50 5.41 2.42 7.67 5.37 4.17 5.63 12.17 17.12 +69 1 6 14.25 11.12 19.50 7.17 11.08 5.04 10.63 6.92 7.50 8.92 6.08 12.50 +69 1 7 22.34 18.16 18.21 8.83 15.00 7.25 13.46 13.21 10.96 13.21 17.33 26.54 +69 1 8 11.79 13.46 8.46 5.21 10.71 5.50 8.38 6.13 7.87 8.29 12.62 19.95 +69 1 9 22.25 16.00 20.91 11.29 18.21 13.04 14.92 14.54 13.67 15.75 18.84 26.75 +69 1 10 9.33 3.29 15.21 6.00 5.88 5.25 12.04 3.96 7.67 9.21 6.04 19.21 +69 1 11 13.29 18.50 9.33 3.71 12.62 5.09 4.42 8.38 5.91 5.66 11.00 10.04 +69 1 12 9.71 7.12 14.33 5.75 10.08 6.04 10.29 11.08 10.17 9.83 13.00 27.71 +69 1 13 4.50 1.50 4.63 2.13 3.54 0.42 3.00 0.46 2.54 4.25 2.62 11.46 +69 1 14 11.63 20.38 5.58 3.92 9.38 3.67 6.00 5.25 4.88 4.83 10.58 7.62 +69 1 15 18.91 18.88 12.33 8.79 13.33 9.08 4.12 14.33 6.04 4.75 19.46 7.75 +69 1 16 16.33 13.29 14.04 11.54 15.09 9.96 17.29 12.42 17.08 15.54 18.46 24.25 +69 1 17 25.08 25.17 17.79 10.50 16.96 11.04 14.04 11.83 10.71 13.08 14.37 22.83 +69 1 18 19.17 22.58 14.33 14.46 21.12 11.00 17.12 12.75 15.96 9.71 19.38 9.96 +69 1 19 9.59 13.37 6.75 3.08 8.71 2.58 8.42 4.67 6.34 6.54 10.50 15.87 +69 1 20 18.12 16.21 19.21 8.46 11.96 9.87 12.54 11.92 9.38 11.12 16.62 18.63 +69 1 21 10.25 5.13 11.79 5.04 3.54 3.17 5.04 6.42 2.62 6.92 12.54 12.00 +69 1 22 4.00 6.63 4.79 1.71 2.83 0.33 3.42 1.33 1.25 2.37 3.46 7.46 +69 1 23 11.67 17.08 10.83 6.71 13.25 7.38 3.42 10.67 8.12 8.25 17.41 15.71 +69 1 24 17.41 17.16 12.96 9.17 11.46 8.42 8.92 12.62 8.63 13.79 22.04 18.25 +69 1 25 19.08 20.25 14.83 9.75 15.04 11.25 14.09 15.67 12.29 17.71 21.34 19.62 +69 1 26 20.54 17.41 16.71 13.21 16.17 9.38 12.33 11.58 11.75 14.88 14.92 19.12 +69 1 27 18.29 13.59 15.34 11.12 11.87 7.58 12.46 9.13 9.17 14.04 10.13 14.00 +69 1 28 5.21 3.96 3.83 2.58 4.33 0.33 5.13 2.00 3.92 4.12 4.83 9.13 +69 1 29 9.75 6.54 6.00 6.17 8.87 3.25 9.92 6.63 8.92 8.83 12.58 13.62 +69 1 30 15.16 17.29 12.79 10.58 18.16 11.67 19.55 17.29 16.79 18.58 26.30 31.54 +69 1 31 10.50 11.67 9.25 7.33 11.00 4.17 12.29 6.50 11.38 9.00 15.71 23.63 +69 2 1 18.58 19.79 12.75 10.54 18.05 7.62 15.29 10.21 13.17 12.00 21.84 24.41 +69 2 2 17.08 10.58 14.96 8.46 8.79 4.67 11.50 7.00 9.71 8.83 18.91 25.66 +69 2 3 10.92 9.83 11.21 3.25 7.54 1.38 8.92 5.46 3.83 4.42 14.79 13.21 +69 2 4 5.17 2.54 6.63 2.50 5.17 1.13 6.75 4.83 5.04 5.50 11.04 13.08 +69 2 5 7.50 10.58 5.25 4.58 11.42 6.25 10.79 11.71 8.46 13.62 22.29 23.63 +69 2 6 21.50 18.38 15.50 13.42 20.21 9.13 17.50 12.67 16.25 9.83 22.75 17.50 +69 2 7 20.71 19.00 19.92 13.83 14.04 8.50 16.08 12.25 12.38 12.46 24.62 27.00 +69 2 8 11.46 3.42 11.58 8.38 6.75 4.50 11.71 5.00 9.59 6.42 14.12 21.25 +69 2 9 11.63 1.96 12.12 6.42 5.79 2.50 9.67 3.42 6.71 7.67 9.33 20.12 +69 2 10 12.75 6.17 6.79 2.67 11.58 1.54 8.67 5.91 5.41 4.42 12.54 12.83 +69 2 11 24.75 15.34 14.71 16.25 21.59 11.46 17.58 18.63 18.21 19.33 24.25 25.17 +69 2 12 18.54 14.00 17.33 8.17 13.04 4.58 12.17 8.96 8.83 8.29 14.71 17.83 +69 2 13 13.08 5.00 15.83 6.50 8.29 2.25 8.08 5.46 7.29 5.75 7.04 15.41 +69 2 14 15.71 10.58 12.92 6.46 10.54 4.75 7.08 5.66 8.04 10.25 18.75 20.30 +69 2 15 12.71 8.04 14.17 6.34 6.42 0.87 6.34 4.50 3.63 2.92 6.25 12.92 +69 2 16 13.59 8.38 12.87 3.46 9.54 1.21 4.58 2.79 2.75 4.08 5.88 10.37 +69 2 17 8.04 4.25 6.83 1.33 3.17 0.04 4.08 0.25 0.96 1.96 6.67 12.96 +69 2 18 20.08 14.92 19.41 7.33 12.58 6.21 10.88 8.75 8.42 8.17 10.21 15.75 +69 2 19 27.79 23.58 29.83 17.00 24.25 17.92 27.71 21.92 22.04 17.71 23.67 38.20 +69 2 20 14.37 14.04 32.71 13.62 18.58 13.21 21.67 17.75 16.13 17.88 22.79 33.63 +69 2 21 14.21 15.12 22.92 8.63 18.38 10.13 14.29 15.83 14.04 15.41 20.21 26.25 +69 2 22 14.92 12.75 19.38 10.92 12.04 11.54 17.21 16.38 15.12 14.67 21.67 34.05 +69 2 23 11.12 13.67 9.87 6.34 11.58 8.00 8.25 10.41 8.96 10.50 12.25 18.58 +69 2 24 5.50 4.12 5.29 1.87 6.58 2.42 5.91 8.33 6.50 8.08 11.12 18.38 +69 2 25 0.67 3.58 4.17 0.67 4.88 0.21 1.08 2.79 1.54 5.21 2.54 13.21 +69 2 26 4.50 4.21 11.71 3.25 6.63 3.25 4.92 3.92 5.50 4.21 4.75 8.00 +69 2 27 10.75 7.29 15.75 5.79 8.00 3.50 6.38 6.38 5.71 5.09 7.38 11.58 +69 2 28 10.50 10.83 16.33 7.17 11.38 4.75 12.46 7.75 7.62 9.59 9.00 22.75 +69 3 1 9.00 6.75 13.33 4.42 8.92 4.04 8.67 6.50 7.17 5.66 6.34 9.25 +69 3 2 9.08 7.46 17.62 6.13 7.12 2.92 7.62 4.54 5.29 5.75 4.21 4.75 +69 3 3 10.79 6.83 20.54 7.29 6.34 2.54 6.83 2.50 4.08 3.17 4.92 5.88 +69 3 4 12.58 9.08 22.25 7.62 10.67 6.08 11.21 8.54 8.83 6.92 7.71 7.50 +69 3 5 16.46 7.62 15.29 4.75 8.12 6.17 7.17 7.58 9.92 6.67 9.29 10.17 +69 3 6 7.96 3.04 7.87 2.21 5.13 0.71 2.62 3.46 3.92 3.54 4.83 4.17 +69 3 7 2.92 3.04 4.46 1.67 4.21 0.25 1.08 1.87 0.75 2.46 3.92 7.46 +69 3 8 2.29 7.21 6.17 1.54 5.04 1.42 7.96 4.71 4.25 5.91 9.79 17.71 +69 3 9 9.83 10.41 7.00 4.75 10.34 3.83 9.00 10.34 9.50 8.58 13.33 17.12 +69 3 10 10.13 9.08 12.50 4.92 10.34 3.71 3.92 10.13 7.41 8.58 12.87 20.83 +69 3 11 16.21 11.87 12.54 5.91 12.21 6.38 8.50 13.00 10.75 9.71 15.34 21.67 +69 3 12 9.29 8.92 12.04 7.83 11.21 6.04 11.58 14.79 12.00 13.46 17.04 29.17 +69 3 13 6.00 2.92 14.71 6.92 10.04 6.96 15.34 11.63 11.00 12.17 14.79 33.66 +69 3 14 7.12 3.96 4.00 2.29 8.08 1.71 5.33 6.75 5.13 5.33 11.00 21.46 +69 3 15 13.08 12.92 9.92 5.04 9.00 4.96 5.75 7.83 7.38 6.04 8.08 16.33 +69 3 16 21.12 17.62 18.66 11.25 14.88 9.21 16.17 18.75 16.29 15.71 18.05 30.71 +69 3 17 21.46 15.37 18.58 12.00 14.29 11.54 15.00 18.46 17.79 13.96 17.58 31.58 +69 3 18 9.38 4.50 15.12 11.12 11.67 10.88 14.67 20.00 16.33 14.62 17.00 37.99 +69 3 19 2.92 7.83 5.79 4.42 6.79 3.00 7.33 8.00 7.00 6.50 10.34 19.95 +69 3 20 6.87 11.04 7.71 4.96 8.96 5.50 4.08 6.38 5.58 7.79 10.54 18.84 +69 3 21 16.00 16.38 12.71 7.62 14.92 9.96 9.50 12.50 8.42 10.50 12.75 18.16 +69 3 22 16.25 14.88 17.79 9.00 14.00 9.25 14.92 12.00 12.71 12.08 14.54 19.70 +69 3 23 7.62 5.54 12.83 4.92 6.13 2.62 9.75 4.96 7.38 4.00 7.41 8.33 +69 3 24 3.58 2.83 8.38 5.04 4.58 1.75 7.04 2.75 3.21 4.79 4.92 12.83 +69 3 25 7.41 4.38 15.29 5.46 5.63 1.75 6.50 3.83 3.33 2.75 7.12 4.96 +69 3 26 6.21 3.00 14.46 4.88 4.88 2.33 5.37 2.67 4.08 2.92 4.29 7.83 +69 3 27 8.17 4.63 13.25 4.25 4.12 1.04 5.33 1.96 3.21 2.04 6.17 6.63 +69 3 28 6.34 4.88 5.50 2.67 7.79 2.42 10.54 6.13 6.79 6.79 10.25 13.59 +69 3 29 11.08 10.58 7.67 7.25 14.75 5.96 13.17 9.79 12.08 9.13 13.59 19.25 +69 3 30 12.87 13.50 10.54 9.92 15.83 8.54 14.54 11.83 13.54 11.63 12.38 14.92 +69 3 31 22.34 16.46 16.08 11.83 22.17 9.75 18.50 9.42 14.54 12.67 11.83 16.62 +69 4 1 12.79 9.79 11.34 7.08 9.08 4.33 9.42 7.46 8.04 10.75 8.67 16.54 +69 4 2 5.75 3.46 6.42 3.42 4.50 0.29 5.46 3.29 2.62 2.21 8.67 10.21 +69 4 3 4.17 3.21 3.04 1.63 4.33 0.29 4.96 3.46 1.17 3.17 12.29 11.00 +69 4 4 5.75 2.88 12.29 3.21 4.63 1.17 3.42 1.50 1.58 1.54 5.63 4.63 +69 4 5 11.21 3.79 16.92 5.91 7.29 4.88 7.87 5.33 7.83 5.25 7.50 7.83 +69 4 6 18.66 5.37 18.38 6.21 9.42 7.41 13.75 10.67 13.62 8.92 11.29 14.29 +69 4 7 12.62 1.63 8.17 3.71 6.79 2.58 6.38 5.33 8.17 6.54 6.71 13.08 +69 4 8 7.46 11.83 6.38 6.96 11.63 7.46 5.04 10.17 9.13 10.83 22.08 18.54 +69 4 9 16.29 9.25 16.13 9.71 8.33 5.96 14.37 7.83 8.58 9.59 11.12 13.75 +69 4 10 6.50 5.83 8.38 4.50 6.75 4.08 9.59 7.75 8.87 7.71 10.34 13.00 +69 4 11 22.88 20.62 18.12 12.12 22.88 12.25 17.62 15.12 17.83 11.71 22.50 21.50 +69 4 12 24.75 20.75 16.50 15.00 22.13 12.08 19.04 14.83 17.37 14.29 20.33 27.67 +69 4 13 11.63 6.46 7.96 6.54 11.08 5.00 9.96 7.92 10.04 8.54 9.62 10.17 +69 4 14 13.62 11.17 9.04 11.25 19.79 10.17 14.50 14.88 15.12 11.46 15.37 17.41 +69 4 15 18.16 12.38 11.54 11.83 17.00 9.75 17.16 11.75 16.50 12.08 14.04 17.96 +69 4 16 7.41 6.83 5.83 4.88 6.71 3.13 9.87 3.79 9.13 8.96 7.25 13.83 +69 4 17 8.04 5.83 9.75 3.08 6.34 2.25 3.71 3.37 4.50 2.88 5.50 9.38 +69 4 18 7.83 10.46 11.21 5.63 9.38 4.67 8.67 5.33 7.12 6.29 6.46 13.88 +69 4 19 16.33 14.21 8.71 5.88 14.33 6.25 6.92 8.75 8.54 10.50 11.63 15.92 +69 4 20 15.87 15.59 11.38 6.58 14.29 7.17 7.41 9.79 8.29 8.38 11.92 19.00 +69 4 21 13.33 12.04 15.34 7.71 13.00 7.71 12.83 13.13 10.08 13.17 19.62 32.05 +69 4 22 21.00 13.79 14.75 12.42 17.54 10.13 12.71 12.21 15.29 13.08 17.04 17.25 +69 4 23 10.04 8.21 11.50 7.54 8.96 5.04 8.67 7.83 9.00 8.75 12.71 10.37 +69 4 24 20.08 16.71 16.50 9.50 14.96 7.96 9.25 8.96 8.50 5.75 10.25 6.83 +69 4 25 14.62 13.29 15.75 7.58 15.96 8.12 14.29 11.54 13.62 13.29 15.21 11.42 +69 4 26 9.79 12.92 7.17 4.75 11.71 3.54 4.17 5.88 6.71 6.13 10.83 10.25 +69 4 27 13.83 13.83 9.42 8.12 15.50 6.38 10.25 10.34 13.17 10.25 15.92 15.16 +69 4 28 16.75 13.62 8.00 7.58 13.70 6.25 6.17 8.25 7.75 7.75 12.50 7.38 +69 4 29 6.00 4.25 4.63 3.96 5.63 0.71 4.71 4.46 4.83 6.71 9.04 13.75 +69 4 30 4.58 3.08 4.29 3.83 5.50 0.33 3.33 3.33 3.04 4.63 5.13 9.67 +69 5 1 5.41 2.96 6.21 2.29 3.46 0.63 4.08 1.33 3.29 4.54 6.13 9.54 +69 5 2 13.08 3.75 16.75 5.88 6.04 4.88 11.38 7.96 9.54 9.25 7.92 20.62 +69 5 3 8.08 4.67 5.58 3.79 6.50 2.00 5.71 3.29 3.46 6.50 5.33 27.88 +69 5 4 5.25 6.42 6.25 2.58 3.71 0.33 4.08 1.33 2.88 2.71 3.29 13.33 +69 5 5 6.46 8.08 2.29 1.67 6.79 0.29 2.83 1.96 2.00 5.04 4.88 4.46 +69 5 6 5.13 4.46 7.46 1.71 5.29 0.96 2.04 1.83 1.83 2.29 5.09 16.04 +69 5 7 5.83 5.79 9.71 2.71 7.29 1.33 4.71 4.50 2.13 4.08 10.00 6.79 +69 5 8 4.08 5.96 8.33 4.08 9.13 2.54 6.87 3.96 5.41 4.42 9.87 4.08 +69 5 9 13.13 10.96 11.34 6.79 12.46 6.63 9.42 6.46 9.87 5.83 10.41 10.00 +69 5 10 14.29 13.88 14.96 7.87 13.33 8.46 8.58 11.83 9.79 9.29 15.92 13.88 +69 5 11 8.04 9.83 12.12 3.67 8.21 3.92 2.29 8.00 3.96 4.50 14.88 8.83 +69 5 12 8.42 10.88 6.83 5.00 9.00 5.25 5.66 6.58 5.29 5.46 7.75 10.34 +69 5 13 6.34 5.71 8.87 4.71 6.58 3.96 5.46 5.41 4.21 7.17 11.12 11.29 +69 5 14 9.04 11.54 11.67 6.92 9.79 5.04 7.54 8.54 5.75 6.42 16.08 7.62 +69 5 15 7.00 7.92 7.71 3.88 7.25 3.75 4.21 6.08 2.58 3.63 9.13 5.71 +69 5 16 12.67 7.67 9.38 7.67 11.38 7.96 10.29 7.50 9.75 7.04 9.75 7.08 +69 5 17 12.67 12.75 9.75 6.75 11.58 6.87 6.71 6.17 6.25 8.71 12.08 15.04 +69 5 18 15.09 11.46 11.12 8.58 11.83 9.17 12.46 8.46 10.08 11.96 13.00 19.58 +69 5 19 5.00 5.13 6.21 4.17 6.38 3.17 3.92 1.79 4.42 5.41 6.04 7.75 +69 5 20 7.87 6.63 7.67 3.50 9.83 5.71 1.96 4.46 2.92 2.33 7.83 8.58 +69 5 21 3.54 5.21 5.50 2.75 4.46 1.38 4.17 2.04 1.63 2.13 5.09 5.41 +69 5 22 12.75 8.54 8.58 2.67 8.58 4.71 3.25 4.12 3.63 4.21 5.96 8.42 +69 5 23 15.79 10.96 15.96 7.75 12.50 12.62 7.96 11.38 11.12 10.34 11.83 17.41 +69 5 24 11.17 7.54 9.17 8.08 11.34 10.25 9.96 7.41 11.58 13.29 12.75 21.79 +69 5 25 11.38 7.62 10.13 6.83 8.96 9.42 7.12 6.38 7.50 8.00 8.46 13.42 +69 5 26 8.92 10.13 8.12 4.29 6.00 4.08 5.17 2.88 2.42 3.79 6.38 12.00 +69 5 27 13.70 12.96 8.79 6.50 13.17 10.46 7.62 8.21 8.38 8.75 10.92 13.54 +69 5 28 11.83 8.75 9.54 5.83 10.67 7.71 6.79 4.88 6.96 3.96 9.04 12.96 +69 5 29 5.83 5.13 11.92 6.21 8.12 8.87 8.29 9.38 9.33 6.75 11.67 10.79 +69 5 30 13.62 7.58 12.71 7.58 9.17 8.92 8.42 10.17 9.00 10.58 13.62 11.92 +69 5 31 10.58 5.33 7.62 6.54 8.38 5.88 6.63 4.04 6.17 7.46 7.08 9.54 +69 6 1 4.46 5.13 6.54 2.50 5.17 2.62 4.71 2.17 4.25 4.33 6.13 8.79 +69 6 2 12.83 12.71 11.92 6.34 12.29 10.00 9.62 9.25 9.42 7.46 14.83 11.63 +69 6 3 14.17 7.46 10.63 7.21 11.63 9.59 8.58 8.38 8.25 7.58 11.92 9.54 +69 6 4 6.58 4.67 12.00 2.62 4.25 3.71 3.42 1.71 4.17 3.13 7.12 10.34 +69 6 5 4.96 4.38 7.58 2.62 4.83 6.25 2.96 3.75 3.37 3.50 9.17 9.79 +69 6 6 2.50 4.21 3.67 0.71 2.25 2.67 0.21 4.08 0.50 1.83 13.54 8.21 +69 6 7 2.17 3.79 2.75 2.42 3.67 3.33 4.42 3.50 1.17 2.17 9.62 4.46 +69 6 8 6.46 3.46 8.75 3.25 2.71 3.71 2.88 2.62 4.38 3.33 5.29 2.21 +69 6 9 11.00 3.83 15.71 4.04 5.09 6.46 3.75 3.79 6.34 4.29 9.21 5.71 +69 6 10 12.58 5.33 16.58 5.58 7.29 9.04 6.50 4.75 6.96 3.04 7.58 6.67 +69 6 11 5.04 4.25 11.21 3.88 5.25 5.41 3.29 1.29 4.63 2.04 3.83 3.96 +69 6 12 4.42 2.88 4.12 2.54 4.42 3.63 2.92 2.62 2.79 2.92 6.46 5.33 +69 6 13 9.59 6.96 7.71 3.83 6.00 4.04 3.79 3.92 2.92 2.17 5.79 5.09 +69 6 14 7.92 8.12 8.42 4.00 7.71 6.50 4.63 3.54 7.41 5.96 5.71 14.04 +69 6 15 15.34 15.71 11.92 8.96 12.46 12.54 10.46 8.04 10.54 11.75 11.96 20.67 +69 6 16 21.96 16.83 10.88 9.33 16.50 13.42 10.37 10.46 9.75 9.92 12.87 14.21 +69 6 17 15.79 16.17 13.37 10.37 15.79 14.09 11.29 11.00 11.58 13.46 11.42 18.05 +69 6 18 11.21 14.79 8.87 7.12 14.29 11.96 8.29 8.46 9.79 7.41 16.25 11.96 +69 6 19 14.37 14.96 12.33 8.29 12.42 12.00 13.42 8.83 11.17 9.46 12.46 11.63 +69 6 20 18.34 14.83 12.00 9.25 15.75 13.92 11.04 10.08 12.08 8.50 16.17 13.21 +69 6 21 11.96 11.54 13.37 7.17 12.25 13.13 9.38 6.50 9.42 8.92 8.29 16.83 +69 6 22 9.17 8.50 10.67 5.00 7.67 7.33 4.17 5.66 5.41 5.79 10.25 13.04 +69 6 23 3.46 4.38 5.37 2.71 4.71 3.42 3.63 3.54 1.71 2.92 9.38 9.59 +69 6 24 6.29 6.29 7.17 3.08 6.71 7.00 7.00 4.67 5.33 4.38 10.34 9.87 +69 6 25 9.29 8.08 10.08 4.38 6.71 6.00 5.71 4.21 5.17 3.46 8.17 12.71 +69 6 26 12.62 13.79 13.04 8.63 13.33 11.29 9.83 11.67 11.75 11.38 19.58 21.54 +69 6 27 9.67 7.54 7.75 6.75 10.63 7.92 9.54 9.33 8.92 9.92 15.09 18.21 +69 6 28 4.96 5.50 7.00 3.67 5.50 3.63 5.37 6.17 4.21 4.00 14.33 12.71 +69 6 29 6.04 7.12 8.29 4.00 5.58 4.46 5.96 10.29 5.83 8.38 19.29 14.67 +69 6 30 5.66 8.50 7.83 2.71 7.46 5.46 6.25 9.75 8.71 7.87 15.46 10.92 +69 7 1 7.67 5.21 12.33 4.54 9.08 6.71 7.92 9.25 9.87 7.79 16.54 14.29 +69 7 2 5.54 6.92 4.63 4.58 7.38 4.46 6.00 3.75 6.96 6.79 9.46 13.04 +69 7 3 6.79 4.42 7.38 3.46 5.00 2.83 4.21 4.96 3.92 5.54 14.83 15.46 +69 7 4 10.13 9.83 10.41 5.37 12.38 9.96 12.96 11.79 12.42 12.87 19.08 26.08 +69 7 5 8.08 7.46 5.88 5.75 10.17 7.54 9.17 8.42 9.96 8.71 16.25 20.08 +69 7 6 13.25 9.75 6.29 5.88 12.17 6.50 7.08 8.08 9.50 8.58 14.46 17.00 +69 7 7 17.88 10.25 12.67 9.00 14.42 9.87 12.21 7.75 12.04 10.71 14.17 18.34 +69 7 8 12.62 6.42 8.33 6.83 10.17 7.50 8.17 6.29 8.96 9.75 10.37 16.79 +69 7 9 7.46 4.83 5.17 4.54 8.67 5.04 7.62 4.83 7.79 6.08 10.17 11.38 +69 7 10 7.92 4.29 7.12 5.63 10.67 8.38 12.38 6.13 10.67 8.38 14.29 20.50 +69 7 11 7.38 5.71 6.96 6.83 11.71 8.54 13.92 8.79 12.62 8.46 16.88 24.54 +69 7 12 6.71 3.46 6.83 4.46 7.75 6.04 8.92 4.83 9.67 7.00 14.67 17.75 +69 7 13 4.04 5.33 3.58 2.92 4.33 2.13 6.67 2.37 4.29 3.67 8.75 11.12 +69 7 14 3.88 5.83 3.96 4.50 6.87 7.12 2.42 4.08 5.33 4.63 10.92 8.21 +69 7 15 8.63 6.92 3.13 4.25 7.67 5.04 3.71 3.63 4.08 3.75 5.88 7.62 +69 7 16 11.42 10.34 8.12 6.38 12.12 7.50 9.00 8.50 9.13 8.33 13.04 15.75 +69 7 17 10.37 9.59 9.00 4.75 7.67 4.83 7.87 5.88 8.17 5.71 12.00 18.91 +69 7 18 18.84 18.54 16.29 8.50 14.75 11.42 12.25 13.88 11.87 13.37 24.41 20.04 +69 7 19 12.33 12.50 14.50 7.83 14.21 10.37 16.25 10.21 15.21 12.21 17.46 21.62 +69 7 20 9.13 9.92 10.79 4.83 8.04 6.92 9.59 10.96 10.41 9.00 17.79 17.16 +69 7 21 10.63 12.62 13.21 5.91 8.42 8.50 8.00 11.67 9.13 10.34 19.62 17.58 +69 7 22 12.83 10.21 13.17 6.87 7.21 8.04 10.71 7.50 8.46 9.46 13.96 14.62 +69 7 23 4.50 5.66 6.46 2.37 6.75 4.33 3.50 5.50 5.37 6.63 10.41 12.58 +69 7 24 5.37 6.25 7.21 2.62 2.71 1.71 2.71 2.50 2.21 1.83 8.42 6.46 +69 7 25 11.46 15.67 10.63 8.17 13.50 10.67 7.96 10.37 9.71 11.71 22.37 19.83 +69 7 26 7.17 5.25 8.71 3.37 4.33 2.08 1.50 2.54 2.62 1.96 9.92 5.58 +69 7 27 6.00 10.46 8.00 4.25 8.21 5.50 4.71 5.88 4.54 7.21 15.25 14.88 +69 7 28 11.87 8.83 6.54 4.04 9.42 4.79 3.42 2.71 6.17 4.63 6.58 5.66 +69 7 29 9.96 10.50 9.21 5.04 10.71 5.46 8.42 5.04 7.58 4.50 13.13 13.17 +69 7 30 14.12 17.79 9.54 7.33 13.79 10.04 7.21 11.29 9.08 10.83 21.67 17.67 +69 7 31 11.08 14.54 7.92 7.08 12.79 9.25 7.04 9.38 9.13 10.83 12.83 13.70 +69 8 1 10.13 6.50 4.29 3.33 10.04 5.54 2.50 4.71 3.50 3.92 6.50 10.96 +69 8 2 10.54 6.63 9.00 3.96 6.34 4.92 6.63 3.25 6.96 5.91 8.83 10.25 +69 8 3 14.37 14.83 11.50 5.29 12.33 8.04 8.00 6.96 8.42 8.17 13.70 10.46 +69 8 4 14.37 16.21 13.54 9.59 14.88 11.04 9.59 10.25 10.88 13.62 22.00 16.83 +69 8 5 12.29 11.25 11.58 6.25 12.50 9.08 7.12 9.50 10.21 11.00 18.25 18.66 +69 8 6 10.04 17.21 6.54 5.66 11.71 7.33 5.63 7.33 6.92 7.54 13.37 11.87 +69 8 7 12.17 17.62 11.38 8.25 16.25 9.79 8.21 8.54 10.92 11.25 16.88 19.50 +69 8 8 8.33 9.92 8.17 5.71 8.42 5.79 5.58 7.54 6.13 4.92 13.33 14.17 +69 8 9 4.54 8.96 5.17 2.37 3.08 1.29 1.54 3.46 2.58 1.42 10.46 3.63 +69 8 10 9.46 13.42 7.67 5.33 10.00 5.58 5.50 5.54 5.50 4.00 9.67 10.00 +69 8 11 10.67 9.08 7.96 5.37 12.25 7.67 6.17 10.92 9.25 10.83 22.13 21.71 +69 8 12 14.92 4.75 15.59 6.71 8.92 5.79 7.21 3.79 7.46 5.96 7.58 11.67 +69 8 13 8.67 2.79 6.58 3.00 2.50 3.33 2.79 1.50 3.88 1.21 1.58 4.88 +69 8 14 3.67 7.17 4.50 1.00 3.29 0.63 2.42 1.00 1.63 1.13 3.71 8.58 +69 8 15 4.54 3.67 2.92 0.83 2.04 1.54 0.71 3.75 1.29 1.21 5.46 2.50 +69 8 16 8.04 3.88 5.00 3.21 3.46 3.13 3.50 1.58 3.92 4.25 5.88 7.79 +69 8 17 9.04 10.13 8.00 3.83 5.17 5.00 3.96 5.88 4.33 5.75 17.71 12.46 +69 8 18 8.38 8.46 9.21 3.71 7.92 5.09 4.92 7.46 6.92 8.21 16.08 12.46 +69 8 19 12.87 11.42 9.75 5.79 14.25 9.25 10.08 7.96 11.00 10.08 19.75 18.46 +69 8 20 16.38 14.92 11.29 10.04 17.50 10.71 13.59 11.96 13.33 13.25 18.54 19.62 +69 8 21 16.42 9.79 9.46 9.04 11.00 8.54 10.21 6.38 10.41 12.17 11.42 19.46 +69 8 22 15.54 10.75 10.75 8.33 11.96 8.12 10.79 6.92 11.08 10.96 14.50 22.37 +69 8 23 16.79 9.96 11.17 8.92 10.41 7.33 9.54 5.29 8.71 10.21 9.17 16.92 +69 8 24 8.96 9.29 8.46 4.42 9.59 6.42 7.87 6.13 7.25 7.71 13.70 14.33 +69 8 25 20.08 10.50 12.21 6.87 12.58 8.58 12.17 8.75 11.71 11.12 14.62 20.62 +69 8 26 19.58 12.83 13.08 9.83 16.08 10.46 15.79 12.04 14.71 14.00 15.00 19.55 +69 8 27 18.63 9.33 11.00 8.46 13.08 8.67 13.00 8.46 12.21 13.88 11.79 20.75 +69 8 28 18.21 8.96 11.00 7.62 12.21 8.25 8.92 6.92 9.42 8.29 11.96 13.00 +69 8 29 7.96 7.17 9.04 5.09 6.96 4.04 5.91 4.54 4.83 6.34 5.29 10.29 +69 8 30 8.83 4.88 5.66 3.17 6.29 2.96 5.21 4.38 4.50 7.33 4.54 8.42 +69 8 31 4.17 7.08 13.50 4.54 6.67 4.71 4.12 4.67 4.75 6.17 7.12 13.00 +69 9 1 5.79 8.08 15.21 4.04 5.91 3.71 6.34 4.21 4.38 5.13 8.92 11.38 +69 9 2 3.37 2.88 11.79 3.83 5.54 2.79 2.08 2.54 2.75 1.92 5.79 6.58 +69 9 3 8.04 4.25 14.09 4.33 6.13 2.50 3.83 2.29 3.46 3.71 2.96 9.25 +69 9 4 4.71 4.21 4.92 3.54 5.17 1.25 3.50 1.50 2.62 3.50 6.42 10.83 +69 9 5 5.96 3.33 6.08 3.00 6.63 1.87 4.92 2.17 3.00 4.42 5.63 11.04 +69 9 6 3.17 1.00 10.58 1.83 4.33 1.08 2.17 0.67 0.83 0.13 7.12 6.00 +69 9 7 1.50 1.25 5.63 1.08 3.21 1.33 2.42 3.33 1.33 1.96 11.79 7.25 +69 9 8 5.96 7.50 5.83 2.13 5.09 2.92 4.00 7.08 3.13 5.83 12.38 12.38 +69 9 9 16.50 15.63 12.67 8.63 14.83 10.04 10.04 9.29 10.41 13.00 18.12 20.71 +69 9 10 12.17 4.96 11.58 5.21 6.75 2.62 5.25 3.33 3.04 3.46 6.54 11.17 +69 9 11 11.87 5.63 6.87 3.00 4.50 3.46 6.83 2.88 4.54 4.04 4.79 11.75 +69 9 12 7.58 7.87 4.54 2.04 6.71 3.25 1.92 6.34 3.17 3.25 13.21 9.62 +69 9 13 5.25 3.04 12.29 2.25 3.58 1.25 3.25 2.37 2.42 1.96 4.96 13.70 +69 9 14 4.25 3.33 14.83 3.50 6.25 5.29 9.21 8.25 6.71 5.25 7.41 13.29 +69 9 15 5.58 3.63 14.12 3.08 6.00 4.71 6.92 7.29 7.33 4.38 7.38 12.00 +69 9 16 10.71 9.21 10.54 4.29 11.83 6.29 7.71 10.29 8.67 6.04 11.25 18.05 +69 9 17 3.83 0.87 10.00 2.75 5.09 3.37 3.75 4.71 4.54 4.33 5.00 7.41 +69 9 18 7.50 5.21 13.25 4.08 6.46 4.17 3.79 5.91 4.96 3.29 6.34 10.17 +69 9 19 9.04 5.13 13.75 4.00 5.96 1.58 3.54 3.29 1.17 0.67 8.21 7.00 +69 9 20 8.83 9.13 10.04 4.25 11.34 7.29 10.50 10.04 9.50 8.04 13.00 15.83 +69 9 21 18.54 16.62 17.54 9.50 17.67 10.67 16.17 15.75 12.83 13.54 22.04 22.88 +69 9 22 7.87 6.29 8.25 3.25 9.42 4.71 7.38 7.29 6.21 6.87 13.88 20.75 +69 9 23 13.08 15.37 13.79 6.42 13.21 10.71 10.37 14.88 9.50 11.00 23.79 21.84 +69 9 24 12.58 11.54 11.46 5.66 11.54 8.58 10.13 10.34 8.92 11.21 15.41 17.88 +69 9 25 10.41 10.58 9.54 4.42 13.88 8.17 9.96 11.83 10.00 10.13 22.13 23.58 +69 9 26 15.83 15.75 14.46 9.00 20.30 11.08 17.12 11.71 14.88 14.04 19.95 23.00 +69 9 27 7.41 6.42 6.83 2.04 7.08 4.00 6.46 5.75 6.17 5.09 14.29 17.33 +69 9 28 16.17 15.34 14.96 8.08 15.63 10.96 16.92 16.38 13.59 15.75 24.75 33.63 +69 9 29 4.00 2.37 8.21 1.29 5.17 1.79 5.75 4.29 4.08 4.83 11.08 18.46 +69 9 30 8.83 7.96 7.29 4.33 11.63 6.58 11.38 9.17 8.54 9.33 15.41 24.41 +69 10 1 6.75 5.13 6.21 1.54 7.54 4.33 7.33 6.87 4.96 7.21 13.46 14.00 +69 10 2 15.09 15.16 13.42 7.00 15.34 10.79 16.42 11.50 13.42 11.25 21.42 23.00 +69 10 3 10.58 9.59 11.08 4.46 10.04 6.87 7.38 11.54 7.46 9.04 18.34 15.71 +69 10 4 12.54 11.25 11.71 7.96 11.58 6.96 8.08 9.75 8.17 7.41 16.00 13.25 +69 10 5 8.79 7.96 11.08 6.50 10.29 5.25 7.25 8.46 7.87 7.62 12.38 14.42 +69 10 6 11.75 14.09 10.92 7.79 13.88 9.13 8.04 11.29 9.67 9.83 21.29 17.71 +69 10 7 10.67 11.04 14.12 5.88 12.67 9.08 10.79 12.54 10.29 12.75 21.75 23.67 +69 10 8 20.08 21.29 18.50 12.12 18.54 11.83 14.00 15.29 10.92 13.25 19.50 18.16 +69 10 9 9.75 11.12 7.41 5.04 9.71 5.88 4.25 7.46 6.75 7.67 6.79 6.29 +69 10 10 4.67 3.17 5.96 1.25 7.08 1.58 1.17 4.21 4.17 1.75 4.71 5.88 +69 10 11 12.87 14.29 9.25 3.04 8.04 5.13 3.58 7.75 5.71 5.21 9.13 8.67 +69 10 12 18.79 21.59 16.17 9.62 16.21 11.12 10.63 13.96 10.92 11.54 16.04 20.00 +69 10 13 14.25 8.50 17.79 9.83 10.50 8.12 11.92 8.12 10.75 12.46 12.08 17.12 +69 10 14 15.63 16.04 13.46 7.46 13.33 9.00 11.50 13.00 10.37 11.71 22.46 21.21 +69 10 15 24.46 23.58 20.62 14.75 19.58 16.42 16.13 19.08 15.63 20.38 31.88 29.38 +69 10 16 19.46 18.79 18.91 13.46 17.00 14.54 9.87 16.29 13.37 16.62 25.58 24.67 +69 10 17 12.38 16.29 15.46 10.67 17.04 9.59 14.37 13.50 14.17 10.79 21.87 25.25 +69 10 18 9.96 4.54 9.38 3.33 11.17 6.34 4.33 7.58 4.71 3.58 4.04 11.29 +69 10 19 5.37 1.21 7.00 0.87 6.08 0.29 1.04 2.58 2.00 1.67 9.59 6.08 +69 10 20 2.42 3.08 2.83 0.29 7.50 2.25 1.38 2.25 2.58 1.71 4.83 6.17 +69 10 21 4.79 1.67 2.17 1.46 6.83 2.83 1.50 1.83 1.58 1.58 2.96 7.62 +69 10 22 9.96 8.29 7.46 3.88 8.25 5.58 3.33 6.25 6.34 5.91 10.75 12.54 +69 10 23 13.29 18.00 13.08 6.63 17.46 10.71 13.88 16.42 12.42 12.21 28.62 27.37 +69 10 24 10.34 12.96 9.33 6.29 15.37 8.21 13.42 12.38 12.42 10.71 20.41 26.34 +69 10 25 7.83 8.54 8.17 6.04 14.37 9.50 12.54 13.13 13.13 8.46 17.16 22.75 +69 10 26 2.62 2.88 6.67 4.08 9.00 5.09 9.29 8.63 9.25 6.04 12.17 15.46 +69 10 27 5.58 6.92 5.50 2.37 6.29 2.79 4.04 5.91 4.46 5.50 10.79 12.92 +69 10 28 9.04 9.17 9.62 5.09 11.00 6.13 8.25 9.67 7.92 9.96 16.54 20.58 +69 10 29 8.83 6.38 11.17 3.13 6.04 3.63 7.46 6.08 5.29 7.25 11.42 22.46 +69 10 30 7.04 3.88 6.75 4.58 10.46 4.58 11.58 10.46 9.59 8.50 16.21 25.17 +69 10 31 4.29 6.75 5.00 3.50 9.71 5.79 8.25 7.33 7.08 10.67 15.63 21.12 +69 11 1 10.63 9.21 11.83 4.75 12.50 9.04 13.37 11.63 12.33 13.62 20.25 20.83 +69 11 2 24.04 24.87 21.37 13.54 22.08 15.21 19.41 17.58 18.41 17.75 23.42 28.25 +69 11 3 22.63 12.38 17.62 5.25 6.42 3.58 4.75 5.71 5.96 5.91 8.63 13.88 +69 11 4 13.13 10.37 10.63 4.54 8.46 5.54 10.00 6.83 8.67 6.96 12.58 20.96 +69 11 5 5.50 6.17 6.38 2.00 7.46 7.00 9.67 6.04 8.33 7.62 14.42 19.12 +69 11 6 14.42 10.13 11.50 2.21 7.12 4.46 2.88 3.67 3.42 3.88 6.54 14.17 +69 11 7 13.59 16.29 12.33 6.67 14.25 8.04 11.29 9.96 9.71 9.08 20.88 23.29 +69 11 8 18.25 21.96 12.25 10.63 19.41 11.21 18.16 16.25 16.33 14.00 23.87 29.46 +69 11 9 21.75 27.33 11.71 9.00 18.00 9.83 10.71 10.88 10.79 8.50 17.46 18.29 +69 11 10 8.38 14.58 8.75 6.04 14.25 9.21 12.87 10.58 9.00 10.37 21.25 22.42 +69 11 11 9.08 6.08 10.67 3.96 5.66 2.83 5.79 2.21 3.42 2.46 5.83 9.75 +69 11 12 9.13 6.92 5.88 2.58 8.25 3.63 7.04 3.54 2.75 3.54 9.00 14.88 +69 11 13 4.79 3.75 2.21 1.17 5.09 2.71 5.41 3.13 2.42 5.46 7.54 17.58 +69 11 14 9.54 3.29 11.38 4.04 4.58 3.25 4.29 0.96 2.37 0.33 6.34 7.33 +69 11 15 12.38 10.71 10.50 6.17 7.79 5.79 9.79 6.17 8.17 5.54 11.00 15.41 +69 11 16 19.87 20.71 20.83 9.13 12.12 9.67 11.96 12.33 10.92 9.92 21.00 22.92 +69 11 17 11.29 9.38 13.67 5.63 6.38 6.46 10.25 6.42 8.92 7.46 11.50 15.34 +69 11 18 9.25 7.83 10.41 7.50 10.29 9.50 16.25 13.54 12.33 10.21 17.04 22.88 +69 11 19 11.79 15.00 12.38 9.04 14.25 12.08 19.25 16.62 16.38 14.96 22.54 30.04 +69 11 20 10.58 14.67 8.50 4.21 11.75 7.17 11.96 8.54 9.17 8.96 13.67 21.42 +69 11 21 3.46 2.75 5.75 2.17 5.75 4.00 2.96 9.42 5.33 7.41 14.17 20.83 +69 11 22 9.13 12.00 9.08 2.33 8.12 4.00 2.58 7.08 4.12 4.75 20.54 34.08 +69 11 23 20.04 19.46 28.21 9.04 16.96 12.04 14.96 13.67 12.62 9.79 17.67 18.75 +69 11 24 12.17 10.58 18.08 6.21 6.63 3.71 8.92 6.58 6.38 6.42 13.04 20.50 +69 11 25 13.33 5.83 17.04 4.67 6.00 3.21 9.50 5.17 6.87 8.12 10.67 18.88 +69 11 26 6.54 3.54 9.04 1.71 4.63 3.29 8.21 4.29 4.75 3.75 8.75 14.46 +69 11 27 12.79 11.63 8.87 6.46 11.25 7.92 13.17 9.42 13.08 9.08 17.41 24.79 +69 11 28 15.21 10.41 13.70 8.08 8.21 7.67 12.38 10.13 8.92 9.13 18.96 29.33 +69 11 29 13.92 8.46 17.00 4.88 5.91 4.75 9.50 4.50 6.58 6.21 14.29 19.46 +69 11 30 7.25 6.63 6.67 1.38 5.29 4.50 7.71 6.29 5.29 4.75 12.50 13.54 +69 12 1 9.62 7.87 7.04 4.42 8.67 5.83 8.96 6.58 8.92 6.71 13.42 20.17 +69 12 2 13.13 15.04 9.96 8.96 16.54 10.71 12.87 14.67 13.67 10.79 17.25 18.16 +69 12 3 19.58 16.96 12.67 9.83 12.67 8.21 12.21 9.42 12.79 8.92 13.92 21.59 +69 12 4 12.25 13.13 14.17 4.75 6.67 4.04 7.21 4.71 6.67 5.50 11.46 16.17 +69 12 5 9.46 12.92 8.33 3.37 9.29 5.75 8.00 8.25 6.67 5.66 11.79 18.79 +69 12 6 17.46 14.62 13.17 8.00 10.25 8.42 11.04 8.92 10.13 7.41 14.09 19.04 +69 12 7 23.04 12.12 13.67 8.58 14.79 9.87 15.54 14.79 16.58 12.33 17.96 21.42 +69 12 8 11.58 7.25 9.83 6.08 6.67 4.71 7.25 7.62 6.58 6.29 10.96 14.83 +69 12 9 5.66 5.75 4.63 1.75 6.63 4.92 5.50 6.96 5.00 5.71 15.12 14.92 +69 12 10 13.13 9.59 10.04 3.46 8.29 7.54 7.50 6.38 8.42 9.54 12.33 15.37 +69 12 11 6.71 3.37 8.33 0.25 4.29 3.33 5.66 1.79 1.54 1.96 7.83 8.75 +69 12 12 3.46 6.21 4.38 0.21 6.71 5.00 2.88 4.75 1.38 0.50 12.87 13.00 +69 12 13 22.67 16.88 16.25 5.21 13.08 10.54 11.34 11.83 9.87 13.21 19.50 22.29 +69 12 14 18.29 22.54 14.96 9.67 17.00 10.79 14.92 12.87 13.13 12.17 18.66 19.17 +69 12 15 17.16 20.12 12.25 7.71 12.79 7.08 12.92 6.79 11.96 5.75 15.87 15.16 +69 12 16 13.00 9.29 10.46 3.17 9.75 8.75 7.12 7.17 6.38 5.25 10.08 15.54 +69 12 17 6.17 4.46 21.37 6.00 3.29 7.04 17.67 7.58 8.87 10.50 12.75 26.83 +69 12 18 11.71 8.42 12.21 4.58 8.46 7.38 10.13 9.54 10.21 10.41 9.54 19.21 +69 12 19 7.62 10.67 13.79 5.21 9.79 9.04 11.79 9.08 10.00 8.63 15.79 22.21 +69 12 20 10.50 13.92 10.00 3.58 9.38 9.38 8.75 9.25 7.38 5.83 13.62 17.21 +69 12 21 24.41 20.41 19.70 11.92 15.50 13.62 14.46 13.96 14.37 14.17 20.50 19.46 +69 12 22 16.38 13.88 12.17 9.29 13.50 8.38 13.33 10.08 13.25 8.79 16.38 21.21 +69 12 23 12.83 13.37 9.79 5.41 11.00 9.25 10.50 11.63 11.00 9.50 16.62 15.00 +69 12 24 7.67 5.75 5.50 2.04 4.71 4.25 4.96 4.96 3.25 2.83 6.79 11.34 +69 12 25 12.83 12.58 8.46 4.17 5.41 4.67 6.21 5.41 5.17 3.92 13.88 10.96 +69 12 26 12.71 6.67 10.75 3.21 2.71 1.25 5.25 2.37 3.25 2.79 5.13 9.50 +69 12 27 6.71 6.21 5.29 0.42 5.96 4.17 3.04 5.25 2.17 3.75 12.46 13.21 +69 12 28 18.34 18.00 15.75 6.08 13.29 11.34 9.71 11.87 9.21 8.75 15.87 18.12 +69 12 29 18.66 15.96 19.38 6.38 13.54 10.08 14.29 11.46 10.58 9.59 13.75 25.04 +69 12 30 16.25 13.25 23.42 8.04 10.04 8.17 16.79 11.42 11.92 11.42 11.50 27.84 +69 12 31 14.42 13.83 27.71 7.08 12.08 10.00 14.58 11.00 12.54 7.12 11.17 17.41 +70 1 1 9.59 2.96 11.79 3.42 6.13 4.08 9.00 4.46 7.29 3.50 7.33 13.00 +70 1 2 9.00 4.29 6.75 4.58 5.79 6.58 8.58 6.21 9.59 6.04 10.17 16.96 +70 1 3 8.08 7.46 11.71 3.58 4.50 3.63 5.13 4.75 3.13 2.50 12.54 18.25 +70 1 4 11.21 7.38 11.58 2.13 3.29 1.13 8.92 4.92 5.54 5.71 7.58 15.54 +70 1 5 10.46 5.29 10.83 3.63 4.75 5.29 12.33 5.83 6.79 6.21 11.83 20.21 +70 1 6 7.92 3.50 8.12 3.79 2.50 4.29 10.34 4.00 6.63 6.08 7.04 16.66 +70 1 7 18.91 17.50 14.75 4.63 12.83 9.00 8.58 9.75 6.92 4.29 10.79 12.17 +70 1 8 22.92 20.75 24.08 10.34 17.96 17.29 19.08 15.54 14.17 11.46 17.12 25.62 +70 1 9 16.17 8.87 18.25 7.41 8.92 9.08 13.54 10.37 10.67 7.50 9.13 19.21 +70 1 10 7.96 5.41 8.25 1.79 3.92 3.50 4.63 2.29 4.50 2.54 1.71 8.50 +70 1 11 5.00 3.71 6.34 3.00 4.00 3.21 5.50 4.83 7.67 6.13 9.21 9.62 +70 1 12 7.96 7.50 6.08 2.79 4.46 4.75 6.13 3.42 4.63 2.62 6.63 8.04 +70 1 13 21.67 18.79 18.41 9.21 15.67 11.54 11.29 14.09 11.38 9.13 13.42 15.96 +70 1 14 8.46 11.58 9.38 4.33 10.00 8.12 9.62 11.34 7.71 7.46 14.33 19.92 +70 1 15 6.71 5.00 6.38 3.00 3.75 3.37 6.00 1.71 3.54 2.37 5.58 5.96 +70 1 16 7.29 10.29 6.17 0.75 6.83 2.54 3.83 4.88 3.75 3.42 7.08 15.75 +70 1 17 20.88 18.88 21.42 10.34 17.33 16.21 16.54 16.29 13.25 14.33 18.88 32.00 +70 1 18 14.42 15.67 15.16 7.87 12.00 10.04 12.87 10.92 12.58 14.37 15.37 21.79 +70 1 19 19.08 22.37 20.91 13.17 18.34 14.96 16.79 15.16 15.37 15.63 23.67 21.87 +70 1 20 22.63 23.67 14.71 11.75 18.16 14.25 9.96 17.71 15.71 17.92 28.12 25.37 +70 1 21 22.08 17.58 17.92 11.54 12.62 12.67 13.33 14.42 13.33 16.75 23.63 22.67 +70 1 22 15.25 15.41 13.13 7.25 13.25 11.38 8.54 10.63 8.25 5.91 12.87 14.75 +70 1 23 17.16 13.08 18.46 7.71 8.21 6.79 11.29 10.08 8.79 8.58 10.83 22.75 +70 1 24 13.88 14.33 13.37 5.54 10.21 9.71 11.08 11.04 9.17 10.63 15.29 21.67 +70 1 25 5.00 4.29 7.58 1.13 4.04 3.42 2.25 4.67 2.62 2.08 10.21 12.33 +70 1 26 4.79 2.17 4.42 0.75 3.21 2.46 7.04 2.21 2.71 2.67 5.91 10.83 +70 1 27 10.54 19.08 7.83 3.17 10.00 7.00 5.17 8.79 5.21 2.88 12.42 9.96 +70 1 28 17.50 17.67 17.83 8.58 17.37 14.62 13.75 14.88 11.42 12.50 18.79 21.25 +70 1 29 12.96 11.08 18.12 6.83 9.83 9.46 10.83 10.63 10.17 8.58 10.58 19.00 +70 1 30 9.79 6.63 14.96 3.17 5.54 3.21 5.66 2.79 2.67 2.17 4.50 8.54 +70 1 31 22.46 21.50 20.91 12.96 19.33 15.67 17.54 15.25 15.46 14.46 21.96 26.83 +70 2 1 22.08 21.79 17.83 13.46 19.75 15.41 18.25 17.41 17.12 17.83 24.08 25.08 +70 2 2 19.33 18.12 9.83 8.75 14.92 9.38 13.96 11.87 13.08 13.62 22.83 28.96 +70 2 3 10.92 11.54 10.46 5.46 10.63 8.71 14.29 10.63 11.63 11.38 19.08 26.83 +70 2 4 9.79 12.46 10.21 4.54 8.54 4.96 5.63 4.79 3.67 1.17 8.00 5.29 +70 2 5 8.38 8.33 14.12 4.63 3.67 2.75 5.33 4.25 4.25 2.17 6.54 13.37 +70 2 6 7.25 7.29 7.54 3.08 5.96 5.29 7.17 5.75 5.75 6.42 12.50 16.13 +70 2 7 18.21 22.25 12.87 11.46 20.08 10.71 17.54 13.46 15.37 12.12 23.25 23.25 +70 2 8 16.92 20.54 10.34 8.33 17.46 8.83 15.50 12.62 13.37 10.41 22.04 20.75 +70 2 9 19.87 26.75 13.13 9.42 20.41 10.34 17.00 13.08 15.75 12.46 23.71 19.70 +70 2 10 10.88 7.79 8.33 4.96 8.42 6.04 10.83 5.83 7.92 4.92 9.92 10.79 +70 2 11 10.79 6.83 7.08 1.96 6.00 2.67 6.50 3.46 3.71 3.04 4.29 9.25 +70 2 12 17.46 10.29 21.71 5.50 8.79 6.17 10.13 6.38 7.54 7.17 6.58 17.83 +70 2 13 17.79 15.83 21.25 7.17 11.83 8.21 8.75 11.04 10.04 7.25 14.71 21.59 +70 2 14 12.54 7.79 11.79 4.04 7.25 4.75 5.91 3.67 5.13 4.38 8.71 14.12 +70 2 15 11.63 11.29 9.33 3.58 4.29 2.71 5.41 2.67 4.67 4.54 10.08 14.71 +70 2 16 7.46 9.71 7.12 1.54 8.63 6.96 7.67 4.63 6.87 4.21 9.33 15.92 +70 2 17 20.91 15.29 14.00 10.54 13.83 9.46 15.79 10.71 15.87 10.58 19.08 25.41 +70 2 18 12.25 10.96 9.62 5.09 9.96 8.38 13.50 10.04 9.62 9.08 15.00 20.96 +70 2 19 19.38 19.83 15.59 10.00 18.21 12.92 16.54 12.58 14.33 12.00 15.04 16.13 +70 2 20 18.29 17.67 13.83 9.67 16.17 11.29 17.04 12.83 14.67 10.04 18.25 22.88 +70 2 21 21.84 20.83 18.96 13.75 24.96 16.33 21.96 16.58 20.41 13.13 22.63 18.12 +70 2 22 16.92 16.71 12.58 9.17 19.75 13.29 16.88 16.00 15.21 16.21 24.83 28.29 +70 2 23 10.13 9.42 9.38 5.54 10.58 8.87 15.29 10.71 13.08 11.75 17.54 27.25 +70 2 24 17.16 15.87 9.17 7.62 14.67 8.29 15.29 10.75 12.33 9.79 19.25 17.54 +70 2 25 23.29 14.96 13.25 10.58 13.25 9.17 10.88 9.92 11.58 8.54 17.88 13.70 +70 2 26 11.34 6.38 10.54 3.42 4.54 2.50 4.33 3.96 4.42 2.17 8.46 8.46 +70 2 27 12.21 10.83 17.88 5.00 5.91 4.92 7.67 8.00 7.12 6.08 9.00 10.41 +70 2 28 9.96 8.38 16.29 4.79 5.41 3.42 6.42 4.63 5.00 3.17 4.58 11.75 +70 3 1 13.13 6.04 8.96 4.63 10.58 7.67 14.62 10.50 11.83 10.17 14.46 22.21 +70 3 2 15.34 15.12 13.79 9.62 10.71 8.33 10.63 11.42 9.59 10.75 19.50 26.16 +70 3 3 15.29 10.34 13.62 5.63 10.13 7.12 10.25 8.21 8.58 6.87 15.54 17.12 +70 3 4 23.04 14.67 16.79 12.21 13.37 10.13 13.62 11.21 12.62 10.41 17.16 20.38 +70 3 5 7.87 5.29 9.13 2.21 6.79 2.92 8.83 3.79 6.34 7.17 8.33 13.79 +70 3 6 11.96 6.83 7.54 3.50 7.87 4.83 8.50 5.21 7.21 5.04 10.54 13.88 +70 3 7 20.38 10.79 9.71 7.54 10.29 8.29 10.29 8.38 11.29 6.46 17.25 20.50 +70 3 8 22.79 13.67 14.29 9.92 12.71 10.34 11.21 12.04 12.71 12.08 20.21 26.46 +70 3 9 12.08 8.63 6.00 4.21 8.29 5.37 7.25 6.00 6.38 7.87 10.71 20.12 +70 3 10 10.54 6.25 8.04 4.58 8.00 5.96 10.08 8.00 8.71 5.54 12.54 14.71 +70 3 11 19.12 17.96 10.71 9.08 17.79 11.17 16.88 14.37 16.33 14.96 21.12 27.67 +70 3 12 24.17 17.21 25.41 13.50 14.79 12.54 14.37 15.09 13.92 16.54 21.42 23.58 +70 3 13 16.50 13.67 31.83 9.96 12.42 9.83 16.75 13.21 11.83 10.96 14.04 15.75 +70 3 14 11.08 7.25 17.29 6.71 7.71 3.08 7.29 5.13 5.46 4.42 4.21 9.96 +70 3 15 12.54 8.42 8.92 5.46 7.21 5.41 8.33 6.34 8.04 7.29 9.87 12.75 +70 3 16 10.41 7.67 8.46 6.58 13.21 8.67 14.92 10.71 13.70 10.54 18.50 23.58 +70 3 17 17.25 16.66 13.08 10.79 19.38 14.62 22.04 18.08 20.71 15.54 20.67 24.37 +70 3 18 22.95 16.96 14.71 13.88 19.04 12.58 19.70 17.12 17.83 17.79 22.34 27.16 +70 3 19 12.17 8.92 11.71 5.91 9.54 8.04 12.25 10.34 11.29 7.71 15.75 17.71 +70 3 20 14.12 13.08 12.58 7.58 12.87 11.21 15.29 12.38 13.92 10.71 16.33 18.41 +70 3 21 7.58 6.63 5.50 2.71 8.29 6.08 7.38 7.38 5.88 5.96 11.67 12.50 +70 3 22 10.21 8.87 8.67 2.62 7.50 5.58 5.25 5.37 4.08 3.25 9.83 7.17 +70 3 23 13.62 17.08 21.17 8.29 11.46 8.71 11.34 10.54 8.92 8.75 12.67 10.08 +70 3 24 11.17 10.92 22.58 6.34 9.46 5.25 8.17 6.50 6.79 5.46 5.41 8.04 +70 3 25 6.38 3.37 6.46 1.87 5.13 3.46 4.25 5.66 4.75 5.00 12.29 16.08 +70 3 26 14.83 11.58 12.00 8.00 11.63 8.33 11.58 9.92 12.79 11.21 15.46 23.67 +70 3 27 13.70 9.83 12.58 7.87 8.96 8.33 11.92 7.71 10.58 10.71 13.33 24.79 +70 3 28 17.71 9.75 13.04 10.08 12.92 8.75 13.46 9.87 12.17 10.79 14.17 19.79 +70 3 29 14.96 13.67 13.29 8.87 15.67 10.17 16.38 14.50 15.37 11.54 19.38 22.42 +70 3 30 18.88 18.79 13.54 9.71 16.92 11.58 19.00 14.29 15.59 12.17 18.75 17.00 +70 3 31 21.42 20.46 17.21 12.46 15.37 11.17 15.16 13.29 13.83 17.37 22.83 34.08 +70 4 1 18.96 12.17 19.25 10.21 10.88 8.87 13.08 8.29 9.83 11.79 15.29 22.29 +70 4 2 12.42 7.00 10.92 6.96 8.96 5.21 10.83 5.91 10.46 8.75 9.67 16.17 +70 4 3 17.79 10.46 9.83 8.33 11.63 8.83 12.04 8.29 12.29 9.71 11.29 17.33 +70 4 4 17.46 9.79 12.00 8.87 10.46 6.67 11.34 6.75 10.21 9.71 9.17 13.92 +70 4 5 18.00 14.04 12.79 10.17 15.63 10.46 14.25 12.21 14.42 11.83 16.38 19.58 +70 4 6 14.88 14.54 23.75 8.75 9.87 9.21 14.42 11.42 9.50 11.21 15.25 23.67 +70 4 7 11.92 9.29 11.17 4.50 7.17 6.17 8.00 8.54 7.92 10.04 12.50 21.42 +70 4 8 12.83 9.33 12.54 6.21 7.46 6.50 7.46 8.12 6.38 10.17 15.09 25.12 +70 4 9 13.21 8.08 8.79 7.17 7.50 8.38 8.92 8.42 8.46 10.50 10.29 23.67 +70 4 10 6.71 3.92 6.75 2.92 4.21 4.17 6.25 5.09 5.71 3.04 6.71 11.63 +70 4 11 8.12 5.33 6.87 1.96 4.17 3.96 3.96 4.50 3.21 2.13 7.41 10.58 +70 4 12 19.79 9.29 17.33 9.79 9.38 8.83 14.58 8.79 10.46 10.96 10.75 17.41 +70 4 13 7.92 6.17 9.25 4.25 6.25 4.50 4.96 4.79 4.38 4.42 7.62 8.75 +70 4 14 9.71 12.87 11.08 5.58 8.67 8.29 5.66 9.59 6.25 10.29 17.46 17.54 +70 4 15 17.29 17.54 15.50 7.79 9.21 9.46 9.71 10.50 8.75 12.33 18.21 16.29 +70 4 16 15.71 17.00 16.66 7.46 10.54 11.17 13.17 11.00 9.67 12.75 15.50 12.58 +70 4 17 11.50 12.96 14.42 7.50 12.87 11.12 11.75 12.96 11.08 12.67 21.04 16.66 +70 4 18 11.46 8.46 9.38 5.17 10.92 8.58 11.00 8.87 10.08 12.12 13.00 14.04 +70 4 19 12.25 12.58 8.79 7.33 12.62 9.21 11.08 8.87 9.59 7.50 14.04 16.00 +70 4 20 15.75 16.25 12.87 8.33 15.00 10.41 15.41 8.63 11.38 10.75 14.42 16.96 +70 4 21 20.50 20.91 17.67 10.17 20.83 14.50 14.58 9.96 14.75 9.13 13.42 11.92 +70 4 22 26.83 23.16 23.00 12.21 18.25 14.71 19.55 18.66 15.59 18.00 25.29 22.29 +70 4 23 16.00 9.75 12.71 8.67 14.75 11.54 16.21 13.13 14.54 16.08 15.75 21.17 +70 4 24 11.71 13.29 8.83 4.08 9.79 6.38 6.92 7.58 8.00 6.21 8.17 11.67 +70 4 25 26.71 16.83 21.50 13.21 17.75 13.83 19.41 15.96 16.42 14.71 18.38 24.08 +70 4 26 19.12 13.00 13.88 8.96 12.08 10.13 12.12 9.04 11.42 13.83 11.96 19.79 +70 4 27 12.12 11.58 7.92 5.54 10.34 6.38 7.33 6.58 8.00 7.67 9.38 11.38 +70 4 28 12.75 10.17 8.63 7.41 13.59 9.50 13.83 11.25 14.04 10.92 12.75 18.46 +70 4 29 13.75 9.21 10.88 6.63 8.79 7.38 9.04 5.41 8.21 9.75 6.21 13.08 +70 4 30 8.83 10.34 6.38 3.37 8.58 6.87 8.29 8.38 9.13 6.38 14.71 11.54 +70 5 1 14.17 17.96 15.12 7.08 14.17 11.83 12.75 16.92 11.71 15.41 25.75 19.58 +70 5 2 16.75 18.91 16.00 10.71 17.67 13.62 16.66 16.88 14.00 15.09 27.50 17.58 +70 5 3 13.67 14.83 15.37 9.62 17.21 12.71 9.71 11.21 13.70 15.46 17.67 20.04 +70 5 4 13.50 11.42 9.71 7.58 13.88 9.17 9.25 9.87 9.38 12.42 14.33 17.88 +70 5 5 12.87 11.34 9.59 8.21 9.79 9.59 6.79 7.33 11.17 12.12 11.75 16.00 +70 5 6 11.71 7.08 5.58 5.71 9.79 6.71 3.37 5.46 7.67 5.54 9.46 11.79 +70 5 7 15.34 10.41 8.67 5.75 9.54 5.09 5.91 7.67 6.21 5.75 8.54 12.38 +70 5 8 7.87 8.58 7.96 3.79 8.46 6.46 7.92 6.42 8.83 9.29 5.58 17.08 +70 5 9 7.96 7.12 17.12 5.88 9.42 9.71 12.50 10.08 11.12 10.83 9.33 15.75 +70 5 10 11.71 7.96 17.00 6.79 8.79 10.58 10.21 10.67 10.75 9.54 12.79 17.41 +70 5 11 6.08 6.96 3.54 2.42 4.38 5.25 5.75 4.58 4.79 6.87 8.58 16.71 +70 5 12 6.25 4.08 15.63 4.12 4.25 7.04 7.25 5.75 7.33 5.79 10.25 9.17 +70 5 13 5.37 3.67 6.58 2.92 3.21 3.21 2.54 6.21 2.58 1.75 12.12 6.21 +70 5 14 3.33 5.63 5.17 1.21 4.25 1.71 3.25 6.42 4.54 4.25 9.71 4.12 +70 5 15 8.79 9.59 8.63 4.08 11.12 5.09 3.83 7.92 5.41 3.71 7.38 3.58 +70 5 16 10.92 6.67 6.96 4.88 6.67 6.08 7.17 4.75 5.91 6.08 8.50 12.29 +70 5 17 3.83 2.42 6.21 0.92 5.50 3.67 2.79 4.46 4.08 3.13 12.38 9.25 +70 5 18 5.71 4.33 8.54 2.83 6.42 5.33 8.54 8.96 8.04 7.04 16.88 15.75 +70 5 19 13.33 8.92 8.33 7.12 13.42 9.54 12.04 10.92 12.67 11.83 14.75 20.96 +70 5 20 11.63 12.42 11.00 8.12 17.25 12.21 15.83 12.04 16.42 12.25 19.50 26.25 +70 5 21 21.84 13.42 13.46 10.92 18.96 13.25 17.37 12.75 16.92 16.29 16.25 25.50 +70 5 22 9.46 5.71 8.75 4.83 8.79 6.79 8.87 6.29 9.04 7.08 10.46 14.75 +70 5 23 7.92 13.92 8.04 4.88 11.54 6.87 8.75 7.12 6.08 8.21 20.33 13.70 +70 5 24 13.46 13.59 12.87 6.42 14.25 8.42 10.08 10.79 10.63 11.04 20.96 19.25 +70 5 25 9.92 9.21 8.58 7.54 13.62 10.29 14.17 11.29 13.04 10.96 17.00 20.41 +70 5 26 6.92 6.92 6.63 5.25 10.54 7.71 13.37 8.12 11.17 6.96 14.17 19.58 +70 5 27 6.34 8.25 7.58 3.46 6.17 4.75 6.46 10.88 5.58 5.09 17.67 9.42 +70 5 28 10.67 7.92 6.83 4.50 10.00 5.79 5.33 6.08 7.17 6.17 10.79 11.96 +70 5 29 10.00 9.25 8.25 4.63 11.04 7.12 6.04 8.92 7.62 8.54 14.83 16.21 +70 5 30 10.50 7.62 7.96 5.66 11.79 9.21 10.58 10.83 11.04 8.04 13.92 17.08 +70 5 31 7.92 7.67 9.67 7.00 12.54 9.46 13.37 9.50 12.21 9.79 14.54 17.75 +70 6 1 6.34 5.88 8.54 4.38 8.79 4.75 4.12 6.08 5.96 3.71 11.38 9.83 +70 6 2 5.37 7.12 5.50 2.75 6.71 4.58 6.50 7.54 4.92 6.08 10.96 12.96 +70 6 3 11.92 18.58 8.00 6.96 13.83 8.17 6.75 9.71 8.71 9.13 14.12 15.29 +70 6 4 17.75 13.54 12.92 6.67 12.33 8.79 11.08 10.29 10.04 9.38 9.54 16.50 +70 6 5 14.29 9.38 14.17 6.34 9.71 8.00 8.33 7.75 9.50 7.29 8.17 13.92 +70 6 6 10.21 6.38 19.17 4.46 5.25 6.83 5.91 5.71 7.67 5.58 8.46 9.29 +70 6 7 4.96 3.83 15.21 3.71 4.71 4.54 5.04 3.67 6.21 4.50 7.29 6.63 +70 6 8 5.46 2.42 4.71 3.37 3.88 2.17 3.42 4.00 6.58 5.63 4.83 11.08 +70 6 9 2.21 2.54 5.33 1.96 3.17 0.71 1.46 3.29 2.00 2.13 5.33 8.54 +70 6 10 6.54 2.46 5.96 1.58 6.13 1.33 1.63 2.33 1.50 1.79 4.04 3.79 +70 6 11 6.92 2.58 7.54 1.71 4.54 1.63 2.42 1.63 2.37 0.71 3.21 5.17 +70 6 12 4.12 1.71 5.91 2.58 3.04 2.37 2.25 4.04 3.88 2.13 7.58 3.79 +70 6 13 2.71 3.08 6.79 1.50 2.46 2.75 3.13 2.92 3.37 1.96 7.62 8.75 +70 6 14 6.54 2.96 16.58 5.63 5.66 6.50 5.21 4.12 6.42 2.50 12.33 3.13 +70 6 15 6.58 5.83 6.71 2.46 4.79 3.46 1.75 5.88 3.00 3.63 9.25 7.75 +70 6 16 7.46 5.41 18.46 6.75 9.29 6.42 9.25 6.42 8.08 4.50 11.67 10.17 +70 6 17 11.50 5.58 11.75 4.38 10.71 5.66 11.96 8.54 10.79 8.21 11.12 16.38 +70 6 18 6.87 3.71 4.75 1.83 6.87 4.29 2.00 4.96 1.96 2.46 8.21 8.58 +70 6 19 11.08 6.71 7.29 1.92 3.37 1.50 2.42 3.96 1.92 0.79 7.58 3.08 +70 6 20 15.71 13.21 13.25 6.25 13.29 8.12 7.21 10.08 8.08 8.25 18.66 10.58 +70 6 21 22.71 13.04 17.41 14.83 17.71 14.17 15.41 12.75 16.75 17.83 13.29 27.33 +70 6 22 14.71 11.46 12.12 5.96 11.67 7.08 8.92 8.67 6.42 7.38 13.33 8.29 +70 6 23 13.04 11.87 12.83 5.41 12.21 8.29 8.33 9.54 8.79 9.21 14.09 14.04 +70 6 24 15.12 14.71 15.00 9.00 18.75 11.38 14.50 11.63 13.67 11.21 19.83 19.70 +70 6 25 10.50 9.17 10.96 6.00 10.46 7.54 9.29 9.04 10.58 9.92 16.00 20.54 +70 6 26 9.79 9.50 10.88 5.88 11.08 7.38 7.83 7.33 8.46 7.67 10.21 11.54 +70 6 27 6.38 7.08 8.67 3.75 11.04 6.79 4.79 7.29 6.63 7.83 10.21 9.79 +70 6 28 16.29 12.75 11.54 8.29 13.83 9.79 13.67 9.87 12.87 11.04 16.92 19.62 +70 6 29 16.04 12.04 12.71 10.25 14.92 11.79 15.92 10.00 13.79 14.50 15.46 22.21 +70 6 30 12.17 10.92 10.13 6.71 12.96 8.33 7.87 10.46 10.75 9.08 16.71 16.25 +70 7 1 20.79 17.12 12.50 11.67 20.30 13.54 19.95 14.92 17.41 15.37 23.00 29.63 +70 7 2 20.96 13.17 13.25 10.63 18.54 13.13 18.29 10.63 16.42 15.21 16.17 24.33 +70 7 3 8.92 4.12 9.17 4.75 10.00 6.46 9.42 5.88 9.71 7.62 12.08 14.04 +70 7 4 10.92 9.13 8.12 6.87 12.21 9.25 12.12 7.96 10.29 7.33 11.54 16.79 +70 7 5 10.71 8.83 10.92 5.13 8.83 8.12 9.00 9.13 8.87 9.04 19.12 19.08 +70 7 6 7.79 7.29 9.62 4.21 7.29 6.46 7.08 9.71 7.83 8.00 13.59 11.00 +70 7 7 4.50 5.50 4.67 2.67 2.25 3.25 3.21 6.46 3.46 5.00 14.50 8.17 +70 7 8 12.62 11.17 10.17 7.29 11.17 7.79 6.34 8.25 8.75 7.87 16.79 13.70 +70 7 9 13.92 10.17 11.42 7.92 13.42 10.41 12.62 10.96 12.46 11.46 14.83 19.87 +70 7 10 11.83 9.17 10.79 6.34 12.75 9.62 10.79 9.13 12.25 8.29 16.17 20.79 +70 7 11 13.50 11.38 12.25 7.38 16.17 11.12 15.87 10.63 13.25 13.50 20.17 25.29 +70 7 12 13.42 10.08 13.70 7.96 16.46 12.42 17.50 13.96 16.42 13.29 21.34 23.09 +70 7 13 12.38 9.62 10.88 6.21 14.96 11.21 14.58 9.83 13.37 9.92 16.25 21.84 +70 7 14 21.54 15.29 14.29 9.38 14.79 9.87 12.87 10.50 14.09 11.34 15.96 23.83 +70 7 15 17.12 9.96 13.88 9.42 11.54 8.96 12.46 7.62 12.25 12.00 11.75 20.21 +70 7 16 10.63 3.71 6.34 3.63 8.38 5.17 7.41 4.88 8.33 5.83 10.34 13.59 +70 7 17 7.62 4.42 7.71 3.92 8.25 5.96 8.71 4.63 9.08 4.75 13.59 16.08 +70 7 18 8.96 8.79 8.38 5.66 12.46 7.75 11.04 6.04 10.21 6.92 12.67 18.91 +70 7 19 14.67 8.25 9.46 6.67 9.75 6.63 8.21 6.29 10.17 8.25 11.17 14.79 +70 7 20 14.33 8.33 11.54 7.21 9.13 5.88 9.33 6.96 10.54 8.71 12.62 20.38 +70 7 21 6.54 4.12 8.83 4.83 8.42 6.46 9.17 7.04 9.54 7.71 10.37 14.71 +70 7 22 7.38 3.04 8.08 4.04 7.17 5.63 5.79 4.38 6.25 5.54 9.75 11.71 +70 7 23 13.37 6.50 15.87 6.50 6.17 4.38 4.58 2.62 4.54 2.08 4.92 5.75 +70 7 24 18.79 11.92 14.71 8.87 16.88 11.42 10.79 8.67 10.58 8.42 13.42 19.12 +70 7 25 10.46 9.13 10.37 6.54 10.54 7.50 10.34 5.75 9.46 8.12 9.13 12.92 +70 7 26 11.08 9.21 9.50 4.63 11.75 8.00 8.08 6.67 10.34 4.92 12.87 8.96 +70 7 27 10.46 10.67 12.46 5.37 11.29 7.17 7.79 4.79 8.21 2.58 7.46 5.37 +70 7 28 10.21 9.96 8.58 4.67 10.96 7.87 7.41 6.75 9.00 7.38 10.00 10.63 +70 7 29 11.12 10.04 8.21 4.29 11.58 6.87 6.96 7.92 8.96 7.96 15.54 16.92 +70 7 30 13.67 15.96 13.96 6.67 13.88 10.67 12.17 13.67 12.21 13.04 20.58 20.12 +70 7 31 7.67 6.96 11.34 3.83 6.63 5.33 4.67 5.21 7.25 5.54 10.04 5.79 +70 8 1 3.92 8.92 7.50 3.88 4.42 3.88 2.58 5.09 3.37 3.75 13.96 12.38 +70 8 2 4.96 9.83 4.50 2.46 5.50 4.92 2.62 3.54 4.00 5.25 11.67 6.54 +70 8 3 7.17 13.59 6.79 3.37 8.17 3.88 4.50 3.33 4.92 5.09 5.04 8.87 +70 8 4 2.67 7.92 9.42 1.75 3.96 1.54 2.25 2.04 3.79 3.50 6.00 9.25 +70 8 5 10.17 4.29 12.17 2.83 5.17 5.66 5.37 4.54 8.42 3.50 11.29 6.75 +70 8 6 4.63 3.17 7.79 1.79 3.33 3.46 3.04 2.54 5.54 4.83 10.92 4.96 +70 8 7 5.63 2.79 4.33 1.67 6.04 2.37 1.29 2.29 0.58 2.17 9.92 4.42 +70 8 8 13.50 6.75 4.21 3.96 6.67 5.79 4.46 4.33 7.38 5.46 7.50 11.04 +70 8 9 11.17 8.38 9.54 7.17 14.62 9.59 13.13 8.58 13.29 9.46 15.71 18.29 +70 8 10 10.08 9.08 8.92 6.34 11.25 7.46 8.29 7.04 9.17 7.62 6.58 11.00 +70 8 11 4.08 3.83 5.66 3.21 3.13 2.79 3.17 4.04 3.92 3.67 7.62 6.71 +70 8 12 9.46 11.21 11.00 6.34 9.00 7.67 4.96 10.04 9.29 9.50 18.21 15.54 +70 8 13 13.04 8.67 10.79 6.58 10.96 7.12 7.50 7.25 8.58 6.50 12.00 14.17 +70 8 14 10.75 10.34 9.25 3.42 11.38 7.29 7.96 6.04 8.46 5.91 14.96 17.54 +70 8 15 18.46 16.17 16.38 8.46 15.54 10.13 10.37 9.50 9.87 10.83 11.71 15.67 +70 8 16 26.38 14.96 18.50 17.33 21.59 18.12 20.75 14.96 22.71 23.71 19.87 34.33 +70 8 17 7.50 5.71 8.21 6.25 7.46 7.33 10.41 5.75 10.17 12.17 9.04 21.29 +70 8 18 4.96 4.46 9.50 2.50 4.38 1.33 1.21 1.67 1.71 0.67 5.33 8.87 +70 8 19 11.00 10.25 16.38 5.50 8.71 4.96 5.88 6.29 6.67 3.37 13.04 14.50 +70 8 20 19.50 13.54 17.29 10.34 13.37 10.00 13.50 11.71 13.25 15.54 15.79 25.58 +70 8 21 24.30 13.83 14.54 10.34 12.46 10.79 10.88 10.34 12.42 12.38 15.83 15.63 +70 8 22 14.71 7.17 12.12 5.33 8.08 4.92 6.34 4.42 5.58 3.67 4.38 4.67 +70 8 23 5.04 3.46 5.96 1.79 2.54 0.63 1.42 0.50 2.50 0.13 2.83 3.37 +70 8 24 2.75 5.96 5.88 1.00 2.46 1.13 1.75 2.21 2.75 2.50 2.96 4.38 +70 8 25 5.83 6.63 3.79 1.75 5.25 3.17 1.21 1.33 2.21 2.62 4.29 6.29 +70 8 26 4.88 3.71 8.71 0.87 3.50 1.21 0.37 0.71 0.54 0.04 3.25 4.12 +70 8 27 4.08 2.25 7.58 1.21 2.54 2.13 1.25 1.33 2.83 2.67 2.67 5.04 +70 8 28 2.54 2.54 4.25 1.25 2.25 1.83 1.00 0.79 0.96 1.33 5.58 5.50 +70 8 29 5.09 7.92 6.04 2.46 3.54 2.50 4.67 3.21 1.63 2.71 9.25 5.96 +70 8 30 13.62 16.46 15.96 7.38 12.54 9.29 9.42 12.04 9.87 12.12 21.25 18.00 +70 8 31 14.54 16.29 11.08 9.21 18.71 12.58 14.04 14.17 15.96 13.75 22.34 27.33 +70 9 1 12.96 13.79 12.92 7.58 12.75 9.04 11.38 9.59 12.17 10.46 16.17 21.75 +70 9 2 16.17 12.67 16.88 8.96 14.58 10.92 11.29 9.92 13.70 12.71 14.04 18.29 +70 9 3 12.54 11.79 9.62 5.25 10.96 7.12 7.17 6.96 9.67 8.12 12.87 16.46 +70 9 4 6.96 8.63 9.92 6.08 13.79 9.08 12.92 11.25 12.21 8.25 15.16 20.75 +70 9 5 3.37 6.67 7.62 4.83 9.46 7.33 10.34 7.62 9.87 8.58 12.50 20.21 +70 9 6 6.92 12.38 8.08 4.04 8.92 6.17 5.17 7.38 6.25 2.25 13.21 8.08 +70 9 7 10.50 14.50 9.96 7.29 12.00 8.04 5.71 8.83 9.96 10.25 13.88 19.50 +70 9 8 19.46 20.17 15.37 9.67 16.71 10.50 11.63 10.67 12.71 11.58 17.37 15.46 +70 9 9 31.42 28.50 28.21 20.33 30.00 20.67 22.37 18.29 21.46 22.42 25.75 27.75 +70 9 10 19.00 18.58 16.13 10.41 18.96 11.79 15.71 11.87 14.50 11.58 17.37 17.50 +70 9 11 9.79 9.38 8.29 4.17 8.00 5.17 8.54 4.79 7.58 5.41 9.00 11.29 +70 9 12 10.67 8.50 8.58 4.38 9.00 4.88 5.54 4.29 6.13 5.29 9.38 13.70 +70 9 13 13.25 10.54 10.79 6.08 12.71 6.96 5.58 4.83 7.50 6.83 11.71 14.46 +70 9 14 4.17 3.37 5.96 1.08 6.08 3.21 5.04 3.50 4.83 2.54 10.04 11.34 +70 9 15 11.50 8.54 5.88 4.00 9.04 4.04 5.96 3.63 6.58 3.46 9.54 13.37 +70 9 16 15.87 18.58 13.88 7.87 12.75 8.79 9.75 10.08 9.21 10.08 19.21 17.41 +70 9 17 21.04 18.58 19.95 14.83 13.59 13.13 19.08 13.67 13.33 14.67 15.46 18.50 +70 9 18 3.83 3.92 8.50 1.42 4.08 2.33 0.54 1.17 2.50 2.25 7.58 10.29 +70 9 19 8.67 9.92 8.33 2.92 7.50 3.92 4.00 5.88 5.41 4.12 9.75 10.83 +70 9 20 6.00 8.46 8.17 3.04 3.58 3.33 4.08 7.87 5.13 7.04 14.00 14.04 +70 9 21 7.50 4.75 5.09 2.58 8.00 4.46 3.17 3.04 4.71 5.37 6.21 10.58 +70 9 22 11.04 12.42 9.38 5.50 9.87 9.33 6.54 5.50 7.54 5.04 10.71 11.79 +70 9 23 9.21 8.17 6.79 5.63 8.21 7.00 4.54 4.25 7.00 5.29 7.75 11.17 +70 9 24 6.50 7.58 9.25 4.88 7.75 3.58 1.17 2.83 4.88 2.58 9.87 7.17 +70 9 25 14.58 17.29 11.79 7.25 13.17 9.33 4.50 10.83 11.67 11.46 18.79 15.92 +70 9 26 16.42 17.96 14.96 10.50 16.50 11.34 10.75 13.59 13.75 15.25 25.04 20.91 +70 9 27 5.75 8.00 4.42 1.92 5.75 3.33 3.13 4.42 4.25 4.92 12.96 12.87 +70 9 28 11.71 11.29 12.04 7.04 10.67 7.79 4.67 7.25 10.21 9.79 13.75 15.50 +70 9 29 16.00 14.79 12.92 7.96 14.29 9.92 13.17 11.50 13.04 12.71 22.08 23.54 +70 9 30 15.00 12.75 11.38 7.79 15.79 8.29 12.08 12.33 13.04 12.62 18.71 25.54 +70 10 1 14.75 15.37 12.21 9.38 18.05 11.34 17.29 14.04 17.37 12.33 21.17 28.50 +70 10 2 25.29 17.54 15.09 15.25 22.13 14.88 20.62 17.79 20.33 19.12 25.41 32.96 +70 10 3 14.29 10.46 11.42 8.54 14.79 8.75 11.75 10.96 13.25 9.17 16.21 20.79 +70 10 4 16.42 14.21 14.92 8.25 15.83 11.42 18.75 15.00 16.33 13.88 22.21 26.25 +70 10 5 16.54 14.21 13.62 7.96 14.50 8.92 14.88 12.12 12.38 13.54 23.45 30.13 +70 10 6 10.79 10.79 8.08 4.71 9.87 6.08 11.63 9.67 10.67 9.38 15.09 22.88 +70 10 7 12.67 11.00 7.17 4.33 8.71 6.04 8.25 8.63 8.96 7.67 16.71 24.33 +70 10 8 9.00 5.71 9.79 3.00 4.29 2.46 4.42 3.29 4.54 5.25 9.08 14.92 +70 10 9 5.91 6.42 5.37 1.58 6.63 5.09 4.17 8.54 5.83 6.87 16.33 19.33 +70 10 10 4.38 2.37 5.33 1.25 3.08 3.54 3.25 5.75 4.46 4.42 10.63 8.71 +70 10 11 11.38 9.29 8.92 3.13 7.54 5.66 3.04 6.34 5.41 3.08 7.50 10.00 +70 10 12 13.33 18.91 10.00 7.41 12.00 8.42 6.13 8.92 9.38 7.29 8.71 11.71 +70 10 13 11.54 13.67 9.87 6.79 10.88 9.04 8.12 9.83 8.38 5.50 13.96 12.21 +70 10 14 9.54 9.79 7.12 5.71 11.17 9.67 6.08 7.87 8.83 5.63 10.21 10.17 +70 10 15 9.13 7.87 6.34 4.17 9.13 6.92 6.13 4.50 6.21 3.63 6.46 9.42 +70 10 16 7.50 9.25 6.79 2.96 7.38 5.21 4.12 5.71 3.63 4.00 7.79 10.96 +70 10 17 3.63 4.12 4.21 2.04 5.41 4.67 5.88 7.33 5.75 6.04 13.75 19.67 +70 10 18 9.79 11.29 8.29 7.96 16.29 11.54 19.62 14.29 18.91 14.92 23.71 32.71 +70 10 19 22.67 17.71 17.41 11.63 18.66 12.96 18.58 15.29 17.12 15.41 23.42 32.58 +70 10 20 24.92 17.92 22.58 13.13 16.88 10.67 16.33 15.29 15.83 13.75 24.75 35.92 +70 10 21 15.16 10.13 17.25 7.58 9.08 6.21 10.96 8.04 9.13 8.54 13.21 21.59 +70 10 22 9.00 4.67 7.58 3.25 3.58 4.50 6.87 4.12 5.25 4.00 9.29 12.25 +70 10 23 10.50 11.08 9.92 3.83 10.96 9.00 12.25 12.54 11.71 11.21 17.50 19.79 +70 10 24 14.67 13.33 12.54 6.75 13.17 11.17 15.87 13.25 13.21 11.71 13.79 14.42 +70 10 25 17.62 12.92 14.96 8.58 14.33 9.96 12.21 9.25 9.29 7.96 11.17 15.96 +70 10 26 5.54 6.13 6.17 4.46 7.58 5.79 8.54 6.71 7.17 8.67 12.50 20.58 +70 10 27 14.46 14.96 12.67 5.63 13.04 9.25 10.17 9.17 9.67 7.62 12.75 14.42 +70 10 28 13.70 13.13 12.58 7.04 12.54 8.00 9.33 8.83 9.04 3.96 15.09 12.21 +70 10 29 17.33 16.75 16.50 6.96 13.62 10.92 13.17 13.25 12.54 12.21 20.75 21.21 +70 10 30 20.30 18.75 18.66 10.96 12.08 9.87 12.46 8.71 9.92 8.71 13.54 21.84 +70 10 31 22.25 20.30 19.38 12.42 20.38 14.00 16.25 18.50 16.88 15.16 26.00 25.08 +70 11 1 10.58 10.29 9.00 4.08 9.21 7.54 11.46 9.71 9.54 10.37 15.92 24.67 +70 11 2 17.50 17.33 14.67 7.04 15.00 11.42 13.33 13.92 12.92 13.50 21.84 21.54 +70 11 3 19.58 19.95 15.75 16.83 23.09 18.05 23.75 19.79 22.54 15.79 26.67 26.87 +70 11 4 11.38 10.08 9.17 4.96 10.79 8.71 12.92 11.79 12.25 11.17 19.79 24.33 +70 11 5 10.96 8.83 8.12 6.08 11.42 9.25 13.50 10.13 13.29 11.92 16.33 26.92 +70 11 6 13.33 15.00 9.04 4.63 11.21 8.00 7.33 8.00 7.96 6.87 9.21 14.00 +70 11 7 18.08 11.17 21.87 8.12 8.08 7.00 9.71 6.29 7.58 6.38 8.92 11.08 +70 11 8 12.67 11.38 10.75 6.04 13.21 10.83 14.42 14.46 16.04 14.75 20.25 29.25 +70 11 9 14.83 9.62 9.59 6.63 12.25 9.08 15.75 10.34 14.50 13.17 15.83 24.30 +70 11 10 13.04 14.92 11.00 6.71 15.87 10.08 10.96 8.75 11.79 8.79 16.13 15.96 +70 11 11 12.58 15.29 10.79 7.08 12.08 8.75 11.92 8.71 10.41 9.92 18.71 22.00 +70 11 12 12.71 15.54 9.29 5.88 11.75 7.92 15.09 9.75 10.37 10.17 17.46 23.00 +70 11 13 7.67 11.17 6.75 1.33 9.46 5.41 8.75 5.25 7.33 6.67 11.75 17.75 +70 11 14 18.00 13.04 15.54 7.33 7.62 6.21 8.25 6.42 8.79 5.50 11.08 18.91 +70 11 15 12.75 9.71 10.34 4.25 7.38 6.29 6.04 6.46 6.54 7.08 12.54 14.96 +70 11 16 12.92 11.67 12.33 6.83 11.25 8.58 10.75 8.17 10.50 7.92 15.29 20.91 +70 11 17 13.08 7.41 12.92 3.54 6.04 4.17 4.92 3.37 3.13 2.88 9.59 13.59 +70 11 18 17.62 14.67 17.25 7.41 11.63 8.33 8.96 5.50 8.92 5.33 7.46 8.29 +70 11 19 13.59 9.21 10.04 5.83 9.04 6.96 9.50 5.66 9.21 5.96 11.92 17.00 +70 11 20 12.54 6.83 13.17 7.25 8.33 6.67 7.92 6.79 9.33 6.17 11.42 14.04 +70 11 21 9.50 9.79 7.12 3.17 9.08 6.25 10.21 5.37 9.92 7.75 11.08 20.12 +70 11 22 10.21 12.08 9.46 2.00 9.50 7.75 5.79 6.17 6.87 6.79 10.75 17.54 +70 11 23 25.12 14.00 23.58 12.96 10.54 11.08 12.00 11.08 13.25 10.29 13.92 16.25 +70 11 24 9.83 5.13 14.83 7.38 5.66 6.00 6.79 3.63 8.29 6.96 7.67 11.87 +70 11 25 21.79 23.00 16.96 10.71 17.67 11.12 11.21 10.75 11.04 6.34 14.04 10.92 +70 11 26 16.50 20.12 12.17 7.75 13.96 10.25 7.21 10.67 9.38 7.12 13.25 12.17 +70 11 27 14.21 12.00 14.17 7.92 12.58 8.50 9.54 7.38 8.83 6.29 8.71 17.71 +70 11 28 15.83 10.13 15.09 9.42 10.92 9.33 9.96 6.00 11.29 9.59 7.17 13.88 +70 11 29 4.00 2.67 5.09 0.67 3.46 1.17 2.21 2.54 1.92 1.79 4.46 10.50 +70 11 30 9.25 7.92 7.71 5.29 7.75 4.38 7.83 4.12 6.58 6.13 8.96 15.25 +70 12 1 9.71 8.00 7.04 4.83 8.96 6.46 9.33 4.50 8.75 7.17 12.54 17.41 +70 12 2 15.54 15.75 13.59 6.92 15.25 10.46 14.75 12.08 12.58 12.25 18.75 18.84 +70 12 3 11.21 11.92 8.46 3.21 10.34 6.34 6.96 7.00 8.63 5.75 14.12 16.38 +70 12 4 12.67 14.58 10.46 4.12 15.75 10.46 12.50 11.29 12.54 13.29 22.83 26.16 +70 12 5 13.96 12.58 12.12 6.08 14.12 9.67 13.75 12.92 12.87 13.08 20.17 25.96 +70 12 6 21.62 18.21 15.96 12.42 19.95 12.87 17.33 14.79 16.88 15.16 22.50 28.75 +70 12 7 12.21 5.83 13.79 7.00 6.71 4.50 7.54 3.00 5.37 6.58 5.58 14.79 +70 12 8 6.38 1.25 9.25 1.29 1.58 0.46 3.46 0.04 0.37 0.63 3.67 9.17 +70 12 9 5.66 1.42 13.00 0.54 0.13 0.00 1.79 0.92 2.58 0.13 4.38 8.17 +70 12 10 14.00 6.75 13.88 2.50 7.71 3.63 6.58 5.37 6.92 4.12 7.25 9.71 +70 12 11 16.71 13.75 15.25 7.79 14.62 10.67 9.21 9.50 7.83 6.34 8.75 13.67 +70 12 12 17.88 12.08 13.17 9.59 15.92 10.79 8.17 11.92 11.34 8.50 15.16 18.79 +70 12 13 6.00 6.63 9.62 3.46 6.25 2.92 6.79 2.62 4.92 1.96 6.71 14.37 +70 12 14 16.46 17.25 7.87 3.88 14.17 8.71 2.42 8.46 5.58 7.50 12.67 16.66 +70 12 15 6.04 7.25 9.21 3.58 8.08 5.63 5.04 6.25 6.46 7.83 9.42 16.79 +70 12 16 18.21 16.21 15.67 9.08 15.79 11.58 10.96 11.96 11.79 12.50 21.17 23.96 +70 12 17 7.21 8.25 7.17 3.00 9.79 6.42 7.62 8.17 8.17 9.42 17.41 21.09 +70 12 18 16.58 17.41 14.46 8.29 12.54 11.12 9.83 13.17 11.17 14.17 15.29 20.17 +70 12 19 16.08 12.79 15.12 7.83 12.54 10.46 12.75 9.13 10.83 11.67 12.42 14.96 +70 12 20 9.33 4.75 10.25 2.42 3.88 1.67 6.13 1.75 4.54 4.50 7.58 19.62 +70 12 21 7.79 3.21 14.92 3.63 4.79 2.75 5.83 1.67 4.67 2.42 3.46 13.25 +70 12 22 10.41 4.12 11.42 2.33 6.17 0.75 5.96 3.13 4.54 6.08 6.13 13.37 +70 12 23 15.00 8.87 19.21 6.58 10.88 6.75 10.13 6.54 10.21 11.38 14.25 25.29 +70 12 24 11.75 9.79 14.25 5.79 10.54 4.25 9.42 5.29 7.54 7.58 6.96 16.13 +70 12 25 10.41 8.50 19.50 5.41 10.04 2.92 8.42 6.08 7.46 5.63 3.04 16.17 +70 12 26 16.83 10.00 21.62 7.83 10.96 4.04 13.33 8.25 9.38 7.38 9.13 18.71 +70 12 27 15.25 9.62 22.54 7.41 11.54 7.04 11.58 7.87 9.04 7.62 5.88 17.83 +70 12 28 12.46 6.54 13.50 6.29 7.00 2.58 7.21 4.33 6.87 5.00 3.00 15.00 +70 12 29 16.75 14.17 28.29 9.54 14.00 9.71 17.88 10.34 12.83 11.29 13.37 23.13 +70 12 30 17.96 11.58 27.29 10.96 8.67 6.08 13.79 5.33 8.33 8.58 9.96 18.25 +70 12 31 8.38 0.37 9.59 2.62 1.75 0.08 4.83 2.13 2.54 1.17 3.67 7.21 +71 1 1 3.71 0.79 4.71 0.17 1.42 1.04 4.63 0.75 1.54 1.08 4.21 9.54 +71 1 2 4.04 0.75 6.96 1.21 1.67 0.54 5.83 0.00 3.00 2.58 3.00 10.46 +71 1 3 7.41 5.41 7.17 0.63 1.79 0.21 2.50 0.33 0.71 0.13 4.83 7.12 +71 1 4 17.50 18.79 14.88 3.46 13.13 7.25 7.12 8.17 6.67 5.21 11.92 10.29 +71 1 5 15.21 13.50 21.92 8.08 15.00 12.79 17.96 12.33 13.88 10.21 16.58 22.75 +71 1 6 18.96 21.29 17.21 9.67 16.46 14.00 11.63 14.75 13.62 17.08 23.71 23.29 +71 1 7 22.83 20.96 20.38 12.71 16.04 14.21 19.21 19.21 14.46 19.83 25.75 25.50 +71 1 8 24.92 22.88 19.46 15.34 17.00 14.33 14.62 15.87 15.16 17.50 30.04 26.46 +71 1 9 28.21 25.75 23.58 15.00 22.00 19.67 20.30 20.88 19.79 21.04 38.20 32.91 +71 1 10 17.04 22.83 14.54 7.50 22.00 16.17 17.96 14.88 15.00 12.54 26.20 19.08 +71 1 11 16.62 19.04 16.75 7.08 16.66 13.33 11.04 12.50 11.17 10.37 17.08 21.37 +71 1 12 6.63 6.34 4.38 1.08 5.17 2.13 3.88 4.33 4.08 4.92 12.17 10.75 +71 1 13 14.88 14.46 11.29 4.38 10.41 7.87 6.87 8.04 7.92 5.37 11.04 9.13 +71 1 14 11.04 10.88 9.50 2.92 8.75 3.96 4.17 6.25 5.66 3.58 7.71 10.79 +71 1 15 7.75 7.83 5.17 0.17 6.71 2.46 2.00 3.63 1.96 1.67 6.21 8.04 +71 1 16 11.12 11.25 8.04 4.08 9.46 6.92 4.33 6.50 7.12 7.21 11.34 14.25 +71 1 17 18.25 11.29 17.16 11.34 12.21 10.54 12.42 8.42 10.83 13.33 13.88 17.25 +71 1 18 24.87 20.17 17.88 13.54 18.54 14.29 14.46 14.83 15.75 14.42 17.21 19.55 +71 1 19 13.88 11.96 11.50 6.38 13.04 8.33 15.96 7.92 10.54 10.92 15.96 23.00 +71 1 20 18.08 16.38 13.92 6.54 14.00 10.29 12.62 11.79 10.25 8.83 15.54 19.55 +71 1 21 19.75 14.88 15.04 5.13 9.00 4.08 5.58 3.88 5.66 3.75 7.58 13.54 +71 1 22 16.88 12.83 12.46 7.04 11.92 7.96 10.00 8.87 10.50 8.54 15.09 14.50 +71 1 23 12.92 14.09 10.71 5.96 14.62 9.42 13.00 12.75 11.25 13.83 22.13 22.04 +71 1 24 22.29 18.54 18.66 11.12 18.29 13.42 21.17 14.54 16.29 17.67 20.08 25.04 +71 1 25 18.84 17.25 13.46 7.17 14.29 9.17 11.71 8.21 10.29 10.67 11.87 15.54 +71 1 26 10.50 7.67 9.25 3.50 5.91 2.92 6.13 0.67 5.63 3.13 2.75 9.29 +71 1 27 13.62 12.83 7.79 4.25 9.08 2.54 5.83 0.42 4.58 1.63 4.33 7.17 +71 1 28 12.29 10.67 6.79 3.42 8.04 0.50 8.38 1.67 3.29 2.88 9.13 5.83 +71 1 29 7.04 6.92 6.92 3.25 4.25 1.42 7.08 2.96 6.13 4.33 9.08 13.21 +71 1 30 11.67 2.83 12.71 4.21 4.17 1.29 7.04 2.75 4.42 2.79 13.17 13.92 +71 1 31 19.29 14.29 25.29 10.96 10.58 7.50 13.79 10.75 11.21 11.63 18.38 26.00 +71 2 1 12.58 6.63 20.83 7.08 7.12 1.63 8.21 2.58 4.96 3.08 4.71 12.87 +71 2 2 6.29 2.75 7.12 1.42 7.08 4.00 11.67 6.92 8.33 8.21 14.92 21.34 +71 2 3 11.67 1.83 7.04 4.25 6.17 2.17 10.92 4.67 8.29 7.87 7.62 15.29 +71 2 4 7.04 1.21 10.21 3.04 5.41 0.83 3.50 2.00 4.08 2.29 3.79 6.46 +71 2 5 10.75 6.96 9.13 3.92 6.87 2.83 4.96 4.46 3.46 3.21 4.21 6.71 +71 2 6 3.58 1.17 5.25 0.37 2.83 0.42 2.83 0.83 0.83 1.96 6.38 10.08 +71 2 7 2.71 2.75 3.88 0.83 1.25 0.29 7.08 1.63 1.75 2.71 6.17 11.34 +71 2 8 9.79 9.04 8.29 2.92 9.13 5.50 6.79 7.62 6.79 9.54 15.50 17.46 +71 2 9 18.66 15.87 14.58 9.33 13.75 10.21 8.67 12.67 12.58 13.96 22.37 19.62 +71 2 10 11.25 1.38 12.75 6.34 4.21 4.04 5.71 3.71 6.75 7.96 6.50 12.71 +71 2 11 9.25 8.08 10.37 2.79 6.46 4.92 5.00 8.87 6.87 8.79 17.12 18.54 +71 2 12 25.33 22.46 22.67 15.79 24.67 18.34 21.71 18.25 20.71 19.21 27.16 29.29 +71 2 13 18.84 22.46 14.33 12.67 22.79 13.46 19.62 17.04 19.70 15.34 26.79 29.50 +71 2 14 19.17 18.08 16.25 9.83 16.71 11.58 18.50 13.37 14.50 16.33 21.62 25.37 +71 2 15 12.00 11.29 7.83 4.38 9.96 4.67 9.54 5.66 7.87 8.38 9.54 22.71 +71 2 16 21.79 13.00 14.42 8.25 13.21 8.79 11.96 11.00 12.50 10.92 15.46 16.38 +71 2 17 16.04 17.58 12.67 7.87 17.37 10.79 13.21 13.54 15.34 10.79 18.29 13.33 +71 2 18 15.75 10.29 12.08 8.00 15.00 7.29 11.71 7.33 12.00 7.54 9.13 12.67 +71 2 19 9.21 14.83 8.67 3.21 10.58 6.38 5.91 7.87 7.79 5.96 14.71 14.37 +71 2 20 17.25 15.67 15.16 9.29 18.05 12.17 17.04 14.25 14.58 15.87 22.92 23.25 +71 2 21 9.75 5.83 9.54 5.41 8.87 5.13 12.08 5.04 11.08 9.50 10.34 18.05 +71 2 22 9.96 12.21 6.42 3.75 8.96 5.46 6.25 5.79 6.13 6.79 16.08 14.29 +71 2 23 11.96 12.04 9.62 3.29 8.83 4.12 6.58 6.83 6.54 8.17 16.46 18.54 +71 2 24 8.33 10.17 5.75 2.33 6.96 1.67 3.17 2.33 2.75 1.58 6.96 7.21 +71 2 25 7.92 9.62 6.08 3.33 5.46 2.17 2.33 3.42 2.50 2.25 8.54 8.25 +71 2 26 5.54 8.58 5.37 1.71 4.50 1.00 2.54 3.92 2.58 2.13 10.50 11.21 +71 2 27 9.42 8.42 7.33 3.88 7.08 3.88 2.62 5.37 6.50 4.88 11.83 16.08 +71 2 28 6.46 3.00 5.09 1.50 1.67 0.04 3.04 1.13 3.88 4.12 5.13 11.25 +71 3 1 13.50 11.83 14.21 4.83 7.79 4.54 6.71 8.08 8.75 10.54 15.37 20.25 +71 3 2 10.37 4.00 11.75 4.58 5.29 2.79 7.87 3.71 7.54 7.38 5.29 11.63 +71 3 3 5.04 6.75 8.33 2.67 4.92 1.42 6.38 3.04 4.08 4.58 9.38 13.00 +71 3 4 10.37 10.34 6.21 4.33 10.04 5.96 8.25 6.50 7.21 7.67 12.00 18.34 +71 3 5 7.41 4.29 8.04 2.13 4.46 1.46 8.58 3.42 5.96 5.88 9.25 13.88 +71 3 6 8.87 6.63 16.00 5.33 7.12 2.75 6.87 3.54 5.71 2.13 5.75 7.00 +71 3 7 5.33 3.50 6.34 1.50 3.46 0.33 3.42 2.54 3.75 1.75 3.29 10.67 +71 3 8 6.29 4.50 13.83 3.71 4.00 1.17 2.25 2.33 3.79 2.17 4.67 10.54 +71 3 9 7.75 4.38 7.00 3.96 4.08 1.87 6.71 3.17 7.33 6.34 5.50 13.37 +71 3 10 8.83 1.50 5.58 5.58 5.33 2.67 7.00 4.71 7.58 6.46 7.46 13.46 +71 3 11 7.00 4.88 6.96 3.79 8.67 4.50 8.92 7.00 10.04 8.38 14.33 17.96 +71 3 12 11.67 11.83 10.58 6.29 11.67 9.08 13.29 10.41 12.12 12.17 17.50 22.17 +71 3 13 10.83 1.71 11.12 1.42 6.08 2.58 4.71 3.67 5.33 4.88 11.34 14.75 +71 3 14 8.50 3.17 5.21 2.37 4.08 1.67 3.25 2.29 1.42 1.00 7.08 9.13 +71 3 15 9.92 6.25 7.29 2.21 9.42 3.37 4.33 2.13 1.79 0.71 7.17 5.04 +71 3 16 8.08 9.54 7.50 3.58 9.50 5.91 8.21 4.29 6.96 4.25 7.62 8.12 +71 3 17 16.17 14.79 11.96 7.79 14.00 9.13 11.21 9.33 8.87 5.83 10.37 10.79 +71 3 18 19.00 17.83 20.67 14.12 18.79 18.00 23.25 21.04 21.00 20.30 28.08 33.37 +71 3 19 33.04 25.41 26.75 20.46 23.50 18.46 24.25 19.21 19.79 23.63 26.58 35.00 +71 3 20 27.50 15.83 24.17 15.79 17.58 13.42 19.08 13.59 16.17 20.38 17.71 32.30 +71 3 21 12.62 7.00 20.88 8.38 7.67 5.17 12.12 7.12 8.29 7.75 9.71 16.08 +71 3 22 5.63 7.83 14.09 3.50 4.88 1.58 5.96 5.83 4.67 5.33 14.04 14.54 +71 3 23 10.63 8.83 11.25 6.13 11.79 8.71 12.21 10.34 12.75 10.96 15.00 19.79 +71 3 24 16.62 15.09 15.12 8.71 17.16 11.46 15.92 11.83 15.25 11.21 18.29 22.75 +71 3 25 14.50 13.25 11.12 9.67 13.70 9.04 14.83 10.25 15.46 11.12 15.87 21.71 +71 3 26 11.17 8.92 7.87 6.13 9.54 5.29 10.92 4.71 11.50 8.00 7.67 20.46 +71 3 27 3.96 5.83 7.46 2.04 6.75 3.75 5.79 5.54 5.46 5.37 13.70 13.96 +71 3 28 14.17 12.25 13.17 7.46 12.62 10.25 9.96 10.54 11.50 13.88 17.25 20.30 +71 3 29 3.67 1.54 6.58 2.96 5.33 1.13 3.21 2.62 4.38 3.83 6.63 6.13 +71 3 30 3.92 4.08 5.75 1.08 5.29 1.67 2.04 3.71 4.92 3.50 6.87 5.21 +71 3 31 3.83 1.96 5.29 2.00 3.25 0.96 3.42 1.21 3.96 3.13 6.04 4.33 +71 4 1 15.96 9.42 11.79 8.54 14.37 11.54 9.29 10.63 10.92 10.63 16.79 19.00 +71 4 2 17.29 16.13 20.79 9.67 15.34 13.37 14.79 15.63 14.79 10.21 17.33 20.79 +71 4 3 12.92 13.17 24.04 7.62 11.79 8.08 12.96 8.04 10.75 7.50 11.96 15.12 +71 4 4 9.38 7.08 19.17 6.38 8.96 4.75 8.25 3.54 7.12 4.33 5.17 12.25 +71 4 5 7.29 2.67 5.46 3.13 4.33 0.50 1.46 1.29 3.92 2.46 2.88 11.92 +71 4 6 4.17 4.54 6.04 1.79 3.21 0.79 1.42 1.83 1.63 3.17 5.63 8.12 +71 4 7 7.46 5.83 13.17 4.38 7.12 2.25 2.92 4.50 3.75 2.92 5.96 7.12 +71 4 8 8.42 5.37 18.25 7.25 7.00 3.92 6.63 2.96 6.04 2.54 4.38 3.71 +71 4 9 9.75 6.42 19.70 6.50 7.92 4.58 5.17 4.25 6.83 3.63 6.58 4.58 +71 4 10 8.17 3.79 11.42 3.29 5.37 3.50 4.33 2.25 6.08 2.42 6.13 3.88 +71 4 11 6.25 1.87 9.17 1.92 2.58 0.96 1.42 1.25 2.75 1.50 5.13 3.75 +71 4 12 14.04 9.79 10.79 4.38 7.00 5.33 5.79 6.96 8.21 5.58 9.46 7.62 +71 4 13 10.79 4.12 9.62 4.25 8.25 4.71 5.63 5.96 6.46 4.54 4.46 13.79 +71 4 14 7.41 1.79 7.96 1.42 2.46 2.04 2.13 2.08 4.71 1.38 6.67 4.50 +71 4 15 6.38 1.96 8.42 2.33 6.71 3.29 2.29 3.83 3.83 3.17 7.96 8.46 +71 4 16 14.79 9.21 12.12 9.17 14.33 9.71 12.00 10.08 12.75 11.87 13.88 21.84 +71 4 17 11.42 7.33 11.46 5.91 13.75 9.29 13.75 10.29 12.21 11.63 17.67 22.13 +71 4 18 11.04 9.00 12.71 6.63 13.54 10.25 15.83 10.08 15.00 11.96 16.04 23.83 +71 4 19 5.00 4.71 8.67 3.63 7.58 5.46 6.38 5.33 9.17 8.17 8.83 13.67 +71 4 20 9.25 11.42 5.17 3.25 7.29 4.29 3.88 4.38 6.00 4.38 7.46 9.96 +71 4 21 10.13 4.71 6.42 4.21 6.46 7.58 7.50 4.42 8.17 8.79 12.21 15.67 +71 4 22 13.92 9.75 6.71 4.50 7.46 3.92 1.50 6.21 6.75 5.33 6.67 10.88 +71 4 23 18.34 9.00 15.87 9.46 9.46 7.83 11.25 6.34 14.21 12.92 5.66 15.12 +71 4 24 12.25 8.33 10.54 8.17 9.92 8.08 12.62 6.75 9.17 11.21 7.67 18.66 +71 4 25 12.08 13.33 11.79 5.75 15.29 7.67 8.46 12.12 10.25 8.54 14.75 18.41 +71 4 26 9.75 6.79 16.46 5.96 9.17 7.38 11.21 10.37 9.21 7.79 13.88 14.04 +71 4 27 5.46 6.87 8.17 2.92 5.41 2.50 3.83 6.58 5.83 6.54 10.88 15.92 +71 4 28 5.79 1.46 5.83 0.87 3.63 1.21 2.37 2.29 4.08 2.13 3.83 8.71 +71 4 29 6.42 3.79 3.71 1.63 4.08 2.33 2.75 2.33 1.75 0.67 7.79 7.46 +71 4 30 5.21 5.79 4.21 1.83 5.17 2.46 2.83 3.13 3.04 3.63 6.71 8.12 +71 5 1 3.46 1.92 6.83 0.83 1.83 0.37 1.42 1.96 1.54 0.50 4.17 4.00 +71 5 2 6.00 7.54 6.00 2.25 3.46 3.58 3.50 6.25 3.71 4.21 15.67 7.54 +71 5 3 12.92 15.21 7.92 5.50 12.21 8.17 4.33 9.33 8.63 8.71 16.54 13.08 +71 5 4 12.33 13.42 7.08 5.21 11.58 7.46 5.41 6.71 8.96 10.00 11.67 10.50 +71 5 5 16.21 19.46 12.38 7.83 16.50 13.13 7.21 12.38 11.96 10.46 14.33 17.83 +71 5 6 14.12 16.50 10.88 5.25 11.75 6.92 6.54 8.96 9.17 7.58 11.83 17.04 +71 5 7 17.54 15.96 13.59 10.29 14.71 10.71 8.63 10.67 12.29 11.17 10.75 17.25 +71 5 8 15.41 12.67 13.08 9.13 11.34 9.71 7.87 10.00 11.29 12.46 16.58 12.67 +71 5 9 16.42 15.46 14.54 9.17 12.00 10.83 11.46 12.38 12.75 13.92 20.71 18.79 +71 5 10 12.92 13.04 14.21 7.75 11.58 8.83 10.04 15.25 10.88 12.75 24.37 18.34 +71 5 11 5.41 6.04 4.12 1.92 4.38 2.83 1.63 7.41 4.33 6.67 14.71 13.67 +71 5 12 10.08 1.83 14.50 3.33 3.67 3.33 5.17 2.37 4.96 2.29 6.71 6.75 +71 5 13 17.16 6.25 13.75 4.63 5.41 6.08 7.17 8.21 10.96 7.25 8.00 14.21 +71 5 14 7.87 3.29 5.33 3.58 3.37 2.62 4.42 3.37 6.00 5.09 7.21 10.75 +71 5 15 20.91 12.00 13.75 9.04 11.96 8.63 11.12 9.25 12.33 11.87 16.54 21.34 +71 5 16 15.92 11.00 7.21 5.71 13.33 5.75 9.46 10.34 9.67 6.38 17.33 21.84 +71 5 17 12.04 8.96 8.67 5.66 9.92 5.79 7.38 7.46 9.92 9.13 13.21 13.04 +71 5 18 8.87 4.58 6.71 3.92 6.21 3.04 4.25 5.17 7.71 6.04 8.00 13.50 +71 5 19 8.50 3.08 5.71 2.42 3.25 1.38 1.54 2.88 3.00 2.33 6.67 11.96 +71 5 20 7.96 3.46 8.33 2.54 3.21 1.00 1.21 2.71 3.04 4.33 5.54 9.46 +71 5 21 6.92 6.13 8.04 2.46 4.96 3.37 3.46 8.00 4.33 4.58 13.54 9.08 +71 5 22 11.83 7.33 7.62 4.71 8.25 4.21 3.00 6.08 6.25 6.38 7.75 11.00 +71 5 23 16.71 11.54 10.63 6.75 11.12 5.17 4.67 10.13 8.04 9.96 15.54 15.79 +71 5 24 8.08 7.54 7.33 2.33 4.29 2.58 2.54 5.00 5.46 4.88 12.67 16.71 +71 5 25 6.04 3.25 15.54 3.46 3.13 3.96 7.04 2.54 5.71 2.75 5.63 9.83 +71 5 26 8.29 7.29 8.75 4.79 9.71 5.58 7.46 6.96 8.04 7.83 12.96 16.21 +71 5 27 17.92 11.38 9.75 6.29 13.88 7.17 10.63 10.34 10.58 9.62 17.37 18.08 +71 5 28 8.25 9.67 9.25 3.92 10.67 5.33 8.50 6.58 6.83 6.83 9.29 9.29 +71 5 29 7.17 6.67 9.17 4.83 6.54 4.96 6.17 6.00 6.25 7.41 11.04 13.79 +71 5 30 8.87 8.46 10.13 4.17 10.04 4.63 4.88 7.58 5.50 5.75 10.71 7.50 +71 5 31 5.09 4.46 5.71 1.87 3.75 1.00 4.04 1.87 2.25 1.67 2.67 5.50 +71 6 1 7.17 12.25 6.04 3.54 8.21 4.25 6.42 5.46 4.75 5.63 6.71 8.92 +71 6 2 13.46 10.58 12.29 4.75 7.04 5.29 6.13 7.58 8.33 6.25 9.21 11.67 +71 6 3 13.54 9.04 25.50 6.04 9.75 10.00 8.63 9.67 12.04 9.00 10.92 10.46 +71 6 4 12.29 2.92 23.71 5.25 7.87 8.96 9.96 7.58 10.54 7.21 9.75 10.41 +71 6 5 7.17 4.38 20.83 5.58 8.29 5.58 7.75 7.67 6.46 5.09 11.75 10.41 +71 6 6 3.96 3.25 15.12 3.83 4.67 2.67 4.71 5.33 3.29 2.08 12.04 9.25 +71 6 7 4.96 3.92 12.08 3.29 5.04 1.83 4.00 4.75 3.25 2.62 9.04 8.54 +71 6 8 9.08 8.42 7.08 3.42 10.04 4.88 4.38 10.13 6.17 5.41 16.83 14.67 +71 6 9 13.21 11.38 24.08 8.96 10.50 7.38 10.13 7.92 7.67 6.25 15.34 12.04 +71 6 10 9.38 13.37 22.75 7.08 10.83 5.88 8.29 8.96 7.12 6.29 14.04 14.33 +71 6 11 16.33 10.92 12.29 7.33 11.00 5.13 9.54 8.46 9.25 7.46 12.83 16.58 +71 6 12 11.04 8.17 8.29 4.79 9.71 3.67 4.50 4.88 6.21 3.50 7.12 21.12 +71 6 13 10.88 8.63 9.83 3.33 7.71 3.17 3.88 5.75 4.00 4.63 11.34 15.96 +71 6 14 15.25 12.71 25.62 8.58 11.12 5.79 9.67 11.87 8.08 8.00 17.21 19.75 +71 6 15 15.00 9.59 11.34 6.46 12.50 6.58 8.04 7.29 9.96 6.75 11.08 14.88 +71 6 16 12.42 7.96 9.42 6.38 12.54 6.92 9.75 6.96 10.46 8.25 10.54 14.88 +71 6 17 7.33 6.38 8.04 4.12 7.25 4.00 6.21 3.42 5.50 6.42 6.71 11.29 +71 6 18 19.12 17.21 12.50 7.00 16.17 8.63 7.96 9.29 10.08 4.04 13.92 12.42 +71 6 19 14.58 10.04 11.58 6.96 12.33 5.96 7.41 7.12 7.71 3.37 7.46 10.34 +71 6 20 16.42 9.75 11.63 9.04 14.04 8.71 11.25 8.71 11.63 8.87 12.33 13.70 +71 6 21 13.54 11.29 11.75 7.21 13.21 8.58 9.83 11.29 12.12 11.71 16.08 21.62 +71 6 22 7.38 4.50 6.75 2.79 5.96 2.54 6.04 1.92 5.29 5.29 4.42 10.17 +71 6 23 4.79 6.71 4.63 3.08 2.79 2.08 3.83 3.88 2.88 5.13 7.33 3.88 +71 6 24 8.71 10.00 12.00 3.83 9.96 5.04 5.79 9.21 7.67 7.62 14.92 10.13 +71 6 25 14.29 12.87 13.21 7.33 11.38 6.21 6.71 8.58 8.92 8.33 12.50 10.71 +71 6 26 14.46 12.21 11.83 8.79 16.21 10.25 12.92 11.92 13.33 11.42 16.13 14.50 +71 6 27 10.75 9.08 11.29 6.21 13.00 7.00 10.21 8.67 10.88 8.50 15.09 16.66 +71 6 28 8.54 7.75 9.54 4.96 8.38 4.54 6.75 4.71 8.00 5.63 7.17 13.33 +71 6 29 3.96 7.29 8.38 3.67 5.25 3.25 3.79 5.63 6.46 1.46 6.21 4.54 +71 6 30 6.87 7.04 7.33 4.42 9.50 5.04 3.71 6.04 7.21 4.54 14.04 9.13 +71 7 1 5.46 8.12 5.33 2.67 6.42 2.96 7.29 8.67 6.21 5.96 16.75 9.33 +71 7 2 5.75 10.34 6.42 4.42 10.79 4.58 3.37 6.17 5.37 7.04 15.12 10.67 +71 7 3 4.79 6.34 6.29 4.42 6.42 3.33 5.17 4.12 5.13 3.04 4.33 7.50 +71 7 4 4.54 4.25 6.25 2.37 5.17 2.67 2.37 4.75 4.63 3.79 7.75 6.92 +71 7 5 8.04 4.29 6.29 2.58 4.25 1.00 3.88 2.54 3.54 1.87 7.25 9.08 +71 7 6 4.88 2.25 6.38 1.63 2.96 0.71 3.63 1.79 2.42 0.96 6.87 4.88 +71 7 7 6.96 5.91 4.71 4.58 9.00 4.63 5.09 4.29 5.71 5.91 4.71 6.79 +71 7 8 7.96 9.13 7.62 4.46 7.92 4.17 6.54 6.00 5.79 4.21 10.25 12.08 +71 7 9 9.75 7.33 18.50 5.13 7.87 3.00 6.21 2.33 4.38 3.46 4.04 6.50 +71 7 10 5.71 2.75 6.96 1.83 5.41 1.75 3.83 4.50 4.00 4.04 11.29 13.46 +71 7 11 9.17 6.17 5.13 3.96 8.38 3.79 8.29 5.63 6.79 6.67 8.87 15.16 +71 7 12 6.21 11.42 22.04 7.29 9.92 6.04 9.46 7.21 7.87 7.50 10.13 12.62 +71 7 13 7.00 7.67 15.16 6.54 8.17 3.67 4.83 3.83 5.91 4.96 6.54 11.29 +71 7 14 9.29 6.75 6.13 5.71 6.87 3.46 8.04 4.50 8.17 7.33 6.25 16.17 +71 7 15 13.54 8.04 10.34 6.92 10.63 6.50 12.67 9.21 11.83 10.75 10.29 21.67 +71 7 16 7.75 7.71 13.04 6.42 8.83 4.83 8.50 6.17 7.46 7.58 7.33 15.34 +71 7 17 6.34 5.83 9.79 3.67 5.71 0.83 6.50 2.62 3.71 2.00 3.25 7.71 +71 7 18 6.83 2.75 6.83 1.96 6.46 2.33 4.79 2.79 2.58 1.87 4.83 7.38 +71 7 19 9.79 3.04 7.41 2.67 7.21 2.71 7.38 4.04 5.66 4.50 5.79 8.08 +71 7 20 6.25 5.04 6.34 1.17 3.92 1.21 4.58 1.87 2.17 0.92 5.29 7.67 +71 7 21 10.37 10.92 7.67 3.63 9.83 3.08 4.50 2.08 2.71 1.33 5.83 5.29 +71 7 22 9.21 7.50 9.17 3.96 9.21 5.71 7.25 6.58 7.25 4.29 8.54 20.54 +71 7 23 11.12 7.41 9.50 5.13 11.58 7.04 7.17 7.87 7.00 6.58 7.62 24.37 +71 7 24 11.58 5.66 11.00 4.04 9.29 3.96 7.50 3.46 7.17 4.38 9.38 14.92 +71 7 25 8.63 5.88 9.59 6.00 7.29 4.50 8.71 1.83 5.88 3.92 9.42 5.63 +71 7 26 5.63 4.33 9.00 1.38 5.37 1.46 3.00 3.67 2.58 0.92 9.83 4.12 +71 7 27 8.42 5.25 5.66 2.79 5.04 1.79 2.92 1.75 4.42 1.21 6.13 2.88 +71 7 28 7.50 12.33 6.75 4.50 9.62 4.54 4.67 6.58 5.63 5.88 16.96 10.00 +71 7 29 11.29 13.50 7.79 7.08 12.92 7.67 3.63 8.71 8.08 8.25 18.25 10.92 +71 7 30 7.38 8.87 6.71 5.00 9.92 3.17 5.58 5.88 6.04 5.00 8.08 9.71 +71 7 31 12.38 7.58 10.54 4.67 9.67 5.50 7.96 6.00 7.12 3.17 7.67 9.17 +71 8 1 7.71 6.00 9.54 2.75 8.75 5.09 6.25 2.21 5.71 3.88 5.25 9.33 +71 8 2 7.25 6.71 8.46 5.58 8.87 5.37 7.67 3.25 5.75 3.63 6.71 6.29 +71 8 3 11.87 5.54 11.34 5.66 9.46 7.67 9.59 7.62 7.58 6.54 8.21 13.79 +71 8 4 9.92 7.75 11.92 4.71 7.08 3.63 6.92 4.08 5.63 2.75 4.83 13.46 +71 8 5 5.21 5.29 8.79 2.42 5.91 4.25 5.37 4.58 5.75 3.83 10.17 10.25 +71 8 6 11.92 6.71 7.04 5.33 9.62 5.63 7.67 7.58 8.96 7.58 12.25 20.21 +71 8 7 8.33 6.21 9.46 3.67 8.25 4.12 7.67 4.79 6.13 4.21 9.59 9.50 +71 8 8 9.25 7.21 9.92 4.71 13.50 7.12 12.25 7.17 10.25 6.46 12.58 14.50 +71 8 9 7.41 5.41 6.50 3.71 7.54 3.46 8.17 4.88 7.00 5.17 10.21 14.50 +71 8 10 15.83 8.33 12.58 7.83 10.88 4.00 7.58 4.12 7.58 4.92 8.21 8.08 +71 8 11 8.46 6.92 7.92 3.37 7.71 2.46 6.17 3.33 5.66 1.67 6.87 8.54 +71 8 12 11.08 7.00 9.04 3.37 9.59 3.92 6.29 7.21 7.29 5.21 7.33 8.83 +71 8 13 6.92 3.71 6.58 3.50 7.08 3.54 5.79 5.41 6.25 6.00 10.83 18.46 +71 8 14 12.04 9.08 15.59 6.79 10.92 8.08 13.08 11.38 11.08 12.92 19.41 23.38 +71 8 15 6.38 6.08 8.92 4.12 7.38 1.63 5.63 4.88 6.50 8.21 9.29 13.70 +71 8 16 5.29 2.92 6.13 1.46 4.38 0.46 4.50 1.33 2.00 1.42 3.96 7.50 +71 8 17 11.29 3.17 17.37 3.21 6.21 3.42 4.21 3.88 3.79 1.67 6.75 5.41 +71 8 18 9.92 7.29 19.92 5.71 7.41 6.21 9.42 4.33 7.46 3.79 9.13 5.13 +71 8 19 7.33 5.04 16.96 4.75 7.79 3.21 5.96 2.92 4.83 1.50 5.29 2.17 +71 8 20 13.50 2.46 6.67 5.50 7.17 3.83 7.08 2.67 4.58 3.88 5.88 5.33 +71 8 21 5.17 3.71 5.00 2.92 2.50 1.17 4.71 2.04 1.38 0.79 10.79 4.71 +71 8 22 9.67 12.79 9.46 3.83 7.75 3.25 5.41 7.71 4.46 3.58 13.88 6.75 +71 8 23 9.87 7.25 8.67 3.54 9.21 3.75 3.50 7.38 6.79 5.33 11.58 9.92 +71 8 24 4.21 0.83 7.17 1.79 3.46 0.21 1.46 0.08 1.92 0.13 1.63 3.92 +71 8 25 3.79 3.92 6.29 3.00 5.04 3.04 2.79 5.25 4.54 5.88 12.79 11.42 +71 8 26 9.42 9.62 8.00 4.12 11.46 6.54 6.46 8.83 8.12 8.46 13.00 15.67 +71 8 27 14.21 10.46 11.96 6.17 13.62 8.42 11.29 8.21 11.04 9.83 16.33 17.41 +71 8 28 18.29 13.92 15.75 6.96 12.79 7.08 10.79 5.71 9.54 5.83 11.71 16.08 +71 8 29 14.62 10.96 11.63 7.67 14.46 8.79 11.04 6.21 10.67 6.00 13.17 13.75 +71 8 30 12.00 10.50 9.13 5.41 15.16 8.04 11.58 8.12 11.08 8.25 13.75 17.33 +71 8 31 15.12 13.96 13.33 7.21 17.37 11.34 14.67 12.12 13.54 13.25 21.34 21.21 +71 9 1 11.08 8.54 10.08 7.17 13.70 11.50 13.25 10.29 12.75 12.83 17.33 24.87 +71 9 2 12.75 9.54 13.88 5.58 11.75 8.92 12.04 9.33 9.92 8.50 14.79 17.50 +71 9 3 6.38 1.46 8.67 3.04 1.83 2.25 2.83 1.38 1.25 2.83 9.62 14.62 +71 9 4 2.50 3.79 3.63 1.71 2.29 0.92 4.63 1.33 3.13 3.54 6.46 13.46 +71 9 5 10.08 6.71 5.09 3.37 10.17 6.21 5.04 4.12 3.92 3.21 6.63 9.42 +71 9 6 11.67 11.21 6.34 5.25 10.29 8.92 6.83 4.92 6.29 5.33 7.17 12.46 +71 9 7 10.08 8.29 7.00 4.79 9.42 6.87 6.71 5.25 6.83 6.00 6.83 14.71 +71 9 8 11.04 8.04 8.67 4.50 10.63 6.58 5.46 6.42 7.58 7.71 6.67 15.12 +71 9 9 12.67 7.62 10.46 5.41 11.00 11.12 6.08 9.42 10.67 11.34 11.25 19.08 +71 9 10 9.79 10.25 8.54 4.88 12.17 9.71 8.96 9.67 10.13 11.83 13.37 19.70 +71 9 11 10.46 6.50 10.17 5.17 10.54 8.21 8.21 6.71 8.92 8.17 9.62 15.92 +71 9 12 5.33 1.83 4.54 0.87 3.71 0.92 1.67 0.83 0.33 2.04 1.63 4.21 +71 9 13 1.79 7.12 4.92 1.13 5.29 2.79 2.54 1.50 2.50 1.25 10.13 5.13 +71 9 14 3.21 5.63 3.29 0.87 3.17 2.00 4.25 1.67 1.58 0.79 10.50 4.42 +71 9 15 3.46 3.79 3.88 0.96 1.46 1.46 3.92 0.67 0.92 0.29 6.17 3.00 +71 9 16 5.54 7.75 6.00 2.33 8.46 5.46 3.67 2.71 3.00 2.50 12.12 7.87 +71 9 17 12.25 9.00 8.17 5.21 11.08 7.29 7.33 4.54 5.75 5.63 13.21 11.04 +71 9 18 3.46 2.75 2.96 1.54 4.54 1.92 1.58 1.83 0.83 1.13 4.21 10.46 +71 9 19 8.50 2.37 5.09 2.25 6.00 4.04 6.96 3.33 4.38 3.13 7.41 13.67 +71 9 20 6.42 2.42 3.42 2.08 6.13 3.50 5.13 2.92 6.21 3.92 8.92 14.71 +71 9 21 2.46 1.87 2.37 1.04 3.42 2.33 2.83 2.96 3.46 2.83 7.67 13.21 +71 9 22 4.79 1.50 12.38 1.33 2.67 1.08 2.00 1.08 0.67 0.37 4.29 2.62 +71 9 23 4.92 5.04 4.46 1.04 3.92 2.04 6.00 4.21 4.63 4.58 10.75 14.67 +71 9 24 10.75 2.17 18.41 2.79 7.29 6.92 6.17 4.83 6.38 2.71 8.46 10.00 +71 9 25 9.83 6.83 8.00 4.21 9.33 4.88 6.54 5.00 5.71 4.67 10.13 13.67 +71 9 26 16.29 17.16 11.54 7.79 16.66 10.13 8.71 8.38 8.42 7.21 12.54 14.88 +71 9 27 10.54 3.58 9.00 4.92 8.21 5.04 8.38 3.04 6.08 3.75 4.42 9.96 +71 9 28 7.12 6.50 6.50 2.13 5.46 4.92 4.17 4.58 3.71 3.58 12.67 12.54 +71 9 29 15.50 13.08 14.46 6.38 9.71 8.12 10.79 4.54 8.50 6.29 8.25 10.71 +71 9 30 10.29 13.04 9.21 4.38 10.00 7.83 7.41 5.66 7.12 4.50 13.75 15.71 +71 10 1 11.08 11.54 11.38 8.17 9.38 7.29 5.71 7.46 7.96 8.54 14.58 15.63 +71 10 2 10.04 6.96 5.50 3.58 8.46 5.75 4.79 3.79 4.25 3.08 7.17 8.79 +71 10 3 10.00 3.13 6.83 2.67 6.00 2.67 2.92 1.04 3.08 2.71 2.21 5.71 +71 10 4 6.08 10.67 4.63 2.67 7.62 5.54 5.17 3.71 5.50 5.33 8.63 11.87 +71 10 5 13.88 13.42 12.46 7.75 13.42 12.08 7.04 8.33 10.50 10.25 14.17 20.41 +71 10 6 12.75 10.83 10.92 7.00 11.63 10.17 10.79 10.58 10.71 12.87 22.17 20.67 +71 10 7 7.46 6.92 8.75 3.58 8.00 6.50 8.67 10.08 8.58 11.25 15.00 10.25 +71 10 8 4.29 6.29 6.00 3.21 8.87 6.54 9.75 7.38 7.87 8.75 7.41 10.96 +71 10 9 5.13 6.00 6.08 2.75 9.59 5.91 9.92 5.96 8.17 7.38 14.42 18.79 +71 10 10 17.46 16.62 15.79 8.83 16.75 13.21 16.92 13.75 14.46 15.34 20.25 24.75 +71 10 11 9.46 6.25 9.67 4.17 10.08 6.87 8.33 4.83 8.25 5.96 14.96 19.70 +71 10 12 8.25 7.67 14.71 3.79 6.96 4.50 7.33 5.09 6.58 5.88 10.96 19.95 +71 10 13 13.59 11.87 20.67 4.58 9.21 6.87 12.46 6.00 8.29 7.00 5.66 12.08 +71 10 14 13.29 10.08 12.04 4.79 9.92 6.58 6.38 7.71 7.71 9.25 15.87 16.71 +71 10 15 19.41 12.21 18.46 8.42 14.33 10.88 11.92 9.71 11.75 13.79 20.58 23.16 +71 10 16 10.08 9.46 10.54 3.25 8.79 6.42 6.42 5.50 7.17 7.58 12.54 14.50 +71 10 17 22.42 19.92 18.16 11.21 19.41 14.79 17.00 12.96 15.63 14.25 21.34 22.75 +71 10 18 22.46 19.21 19.00 8.54 18.21 12.29 16.62 12.21 12.87 12.58 23.29 24.87 +71 10 19 17.04 17.83 14.88 9.87 17.96 11.79 17.08 10.67 13.33 13.37 21.87 26.08 +71 10 20 14.50 11.38 10.75 4.83 12.33 8.54 14.21 4.88 9.54 10.17 15.67 25.17 +71 10 21 26.20 20.54 21.67 12.00 17.54 14.92 16.79 18.16 14.79 19.12 32.63 28.67 +71 10 22 13.25 14.42 17.71 9.08 10.96 9.59 14.46 12.25 13.88 14.92 26.25 21.59 +71 10 23 12.38 12.96 11.29 6.42 8.58 7.92 6.71 6.21 7.12 8.29 15.21 17.67 +71 10 24 13.00 6.21 12.38 4.88 8.29 7.00 8.04 4.04 7.25 6.34 6.17 11.96 +71 10 25 10.21 10.00 10.63 2.08 8.33 5.79 7.12 4.63 6.63 3.88 8.75 10.13 +71 10 26 12.21 11.25 12.92 5.04 11.96 9.04 10.46 8.25 7.62 7.50 12.96 16.92 +71 10 27 14.37 13.00 13.70 4.58 13.25 8.75 10.67 8.00 7.92 8.58 16.08 9.92 +71 10 28 16.29 13.33 18.21 8.29 13.92 13.00 13.75 10.79 11.12 11.63 16.08 19.70 +71 10 29 9.75 8.17 7.38 3.75 10.92 7.71 7.92 8.38 8.08 10.50 20.71 20.83 +71 10 30 15.75 8.29 14.09 6.42 10.96 9.54 10.71 10.29 9.96 11.54 21.37 24.87 +71 10 31 8.63 7.87 9.29 2.92 8.83 7.00 6.21 8.21 6.21 9.08 19.17 19.55 +71 11 1 14.21 10.92 13.50 6.08 9.75 10.67 9.79 10.08 9.13 12.33 20.62 21.59 +71 11 2 17.00 12.21 18.08 10.46 10.37 10.25 14.96 10.83 10.96 12.46 18.00 25.12 +71 11 3 14.04 12.38 14.71 6.34 9.92 8.08 9.00 11.54 7.83 10.37 22.42 21.29 +71 11 4 18.71 15.16 17.08 9.17 14.37 12.42 15.12 14.25 12.29 16.13 10.71 12.38 +71 11 5 16.04 9.92 12.42 6.67 10.21 7.75 11.96 5.33 12.38 7.46 13.29 20.96 +71 11 6 15.83 12.17 12.46 6.75 11.29 7.46 9.54 7.25 9.83 10.25 15.54 22.29 +71 11 7 14.33 12.83 12.17 5.96 14.79 10.79 13.92 10.17 13.59 11.50 19.41 27.79 +71 11 8 23.96 18.25 16.71 10.83 15.16 10.08 15.12 11.25 15.50 15.12 24.30 38.04 +71 11 9 17.62 11.87 20.00 6.71 9.17 6.58 10.21 4.71 7.62 7.00 14.09 24.13 +71 11 10 7.75 2.92 10.50 1.42 4.92 1.87 6.21 1.63 4.67 3.25 8.33 14.42 +71 11 11 4.25 4.42 7.17 0.92 4.79 0.96 2.88 0.87 1.79 1.29 5.71 10.88 +71 11 12 5.37 4.88 7.00 3.33 8.92 5.33 9.08 5.13 8.12 6.50 12.25 16.08 +71 11 13 13.88 12.25 11.50 7.12 10.37 8.54 10.00 6.71 9.87 9.96 15.96 25.96 +71 11 14 9.29 5.46 9.33 3.17 6.83 3.54 7.58 4.21 6.21 6.42 9.38 18.29 +71 11 15 7.54 8.17 6.46 4.58 11.29 7.75 14.37 7.00 12.46 10.67 18.54 24.08 +71 11 16 11.21 9.96 10.41 8.04 12.54 8.75 14.37 7.08 13.37 9.87 12.29 27.16 +71 11 17 11.34 12.17 9.33 7.17 14.17 8.67 12.17 7.92 11.17 8.71 12.71 16.83 +71 11 18 16.92 11.17 15.96 9.87 14.00 9.62 11.63 7.21 9.59 8.83 13.42 24.83 +71 11 19 12.75 6.13 15.59 6.13 7.04 5.09 11.34 3.42 7.96 7.87 10.63 22.17 +71 11 20 18.75 18.91 15.34 9.87 19.67 12.96 13.13 12.21 13.33 9.04 20.67 22.71 +71 11 21 23.58 20.62 21.50 15.63 18.84 14.50 20.33 12.96 16.54 16.92 24.58 35.92 +71 11 22 18.21 16.17 16.83 9.71 12.67 9.59 12.38 8.50 11.54 8.00 18.96 24.46 +71 11 23 20.54 19.04 16.62 9.96 15.09 9.59 12.50 10.41 12.29 10.54 17.37 20.96 +71 11 24 6.00 1.21 8.63 2.21 3.04 1.29 7.08 1.33 4.04 2.33 5.63 12.58 +71 11 25 5.91 4.17 6.87 2.71 8.42 5.79 12.42 3.54 8.83 6.25 10.46 14.37 +71 11 26 7.92 6.58 5.50 3.71 9.54 5.96 9.21 6.96 9.38 7.71 16.33 17.12 +71 11 27 11.63 10.13 8.83 4.50 9.38 7.46 9.62 5.71 8.92 8.33 13.46 17.33 +71 11 28 7.50 8.67 5.83 1.29 7.17 4.67 9.04 2.17 6.46 5.13 10.75 14.21 +71 11 29 11.67 10.79 12.04 3.21 11.79 8.00 7.83 7.62 7.67 10.00 19.75 21.37 +71 11 30 16.29 16.08 8.33 4.00 11.34 5.79 9.08 5.83 8.08 4.21 18.79 15.29 +71 12 1 13.04 10.37 9.00 3.42 8.25 5.50 8.54 3.00 7.04 4.54 10.71 14.12 +71 12 2 12.50 10.29 12.96 3.46 6.17 1.96 5.13 1.46 3.58 2.17 6.04 9.87 +71 12 3 3.33 7.92 6.34 0.37 5.58 4.67 7.41 5.41 5.00 4.92 14.33 18.12 +71 12 4 4.08 6.67 7.12 2.08 5.09 5.25 9.67 4.54 6.58 7.00 13.04 16.38 +71 12 5 11.50 6.79 6.08 2.46 8.58 4.08 4.96 7.04 4.33 7.62 16.75 16.71 +71 12 6 5.29 4.04 4.46 1.04 4.67 2.79 5.96 3.75 3.75 5.75 10.63 18.00 +71 12 7 5.46 0.42 5.09 0.50 1.63 0.46 8.33 0.04 2.17 4.08 7.54 17.79 +71 12 8 4.67 0.67 5.75 0.33 2.13 1.71 8.42 1.21 4.17 4.17 10.83 16.38 +71 12 9 6.96 3.75 6.17 4.67 7.58 5.41 11.12 7.08 9.71 9.71 13.88 22.95 +71 12 10 7.96 6.21 7.04 5.25 8.87 6.75 11.58 7.12 11.54 9.08 15.87 20.75 +71 12 11 9.13 7.71 6.67 3.37 8.17 7.17 12.29 5.63 8.79 10.75 15.29 21.00 +71 12 12 16.33 12.75 13.67 6.13 10.25 9.42 10.88 10.34 9.29 12.25 21.75 20.79 +71 12 13 15.79 10.83 13.92 6.29 10.83 8.38 12.08 6.58 9.75 10.67 15.12 19.38 +71 12 14 20.38 18.58 19.12 11.25 17.58 14.00 17.04 15.00 14.62 18.54 26.34 28.08 +71 12 15 19.00 15.83 16.29 8.17 13.50 12.29 15.37 15.63 13.33 15.96 26.67 29.04 +71 12 16 17.00 16.96 14.46 7.12 11.83 11.17 12.29 10.75 10.79 12.75 20.96 21.59 +71 12 17 18.12 16.21 14.54 8.75 12.62 9.96 9.17 11.75 11.54 14.96 26.50 24.83 +71 12 18 26.50 20.25 20.00 15.09 17.58 14.21 14.62 14.21 16.29 17.29 28.04 26.42 +71 12 19 25.00 23.54 19.70 14.58 23.91 16.71 19.33 16.96 17.08 17.46 29.20 31.42 +71 12 20 21.84 21.17 20.08 10.63 20.38 16.46 21.92 17.54 18.71 18.50 28.16 29.95 +71 12 21 10.46 8.08 10.34 6.50 11.42 8.42 15.41 11.08 13.92 13.25 23.13 30.13 +71 12 22 7.58 5.09 10.83 3.04 4.21 1.38 3.96 0.54 1.87 1.58 7.46 14.88 +71 12 23 8.12 8.08 10.13 3.00 9.33 7.41 13.13 8.46 8.87 9.38 22.88 24.58 +71 12 24 18.46 15.25 16.38 7.83 12.29 11.96 16.42 14.92 13.62 15.67 27.84 26.04 +71 12 25 22.08 15.96 15.04 10.08 14.96 12.46 11.79 11.67 12.00 14.75 15.79 19.46 +71 12 26 15.12 12.75 17.04 7.79 11.17 8.21 11.04 9.25 8.83 7.08 12.04 13.88 +71 12 27 8.75 6.13 9.04 3.13 7.00 7.41 13.13 12.96 11.12 10.88 19.25 27.00 +71 12 28 13.25 9.67 19.12 7.50 11.34 7.33 13.25 9.21 9.46 7.75 9.04 15.46 +71 12 29 12.42 10.00 24.25 7.46 10.25 6.00 14.58 6.67 9.21 8.63 5.66 17.46 +71 12 30 13.04 6.34 27.67 8.42 11.54 4.12 16.21 6.71 10.46 7.29 6.67 16.46 +71 12 31 14.88 10.50 26.08 8.46 13.50 10.04 21.04 10.25 13.54 11.34 12.12 27.33 +72 1 1 9.29 3.63 14.54 4.25 6.75 4.42 13.00 5.33 10.04 8.54 8.71 19.17 +72 1 2 8.96 1.46 12.00 4.50 3.21 0.83 6.04 0.67 3.79 0.79 1.75 7.83 +72 1 3 6.83 0.67 9.25 2.29 2.46 0.17 3.88 0.21 2.88 1.25 2.21 5.88 +72 1 4 8.46 0.87 5.41 2.04 4.79 0.29 2.62 0.92 1.63 1.96 4.38 6.58 +72 1 5 10.88 9.17 5.88 0.87 2.04 0.13 2.75 1.38 1.08 1.13 4.83 7.29 +72 1 6 17.00 13.92 13.54 4.46 12.29 10.25 7.62 7.75 7.87 6.17 9.79 13.54 +72 1 7 13.92 12.00 19.12 8.00 12.50 12.08 16.46 11.63 11.12 13.42 14.67 25.04 +72 1 8 14.46 10.29 16.17 8.79 12.58 11.29 17.00 9.21 13.29 15.59 11.34 28.33 +72 1 9 11.00 7.41 8.50 3.04 7.54 4.29 5.25 3.37 5.79 4.21 5.00 11.08 +72 1 10 20.88 18.34 18.12 10.17 14.04 10.08 14.04 9.29 12.17 13.62 17.83 21.29 +72 1 11 13.29 12.17 13.29 4.96 8.83 6.67 11.34 6.08 8.17 9.38 16.04 16.13 +72 1 12 19.83 14.42 18.16 7.58 13.42 10.25 11.87 9.38 11.38 13.59 18.08 23.09 +72 1 13 8.63 4.58 9.29 2.17 4.08 1.87 4.12 0.75 3.46 2.71 4.50 8.92 +72 1 14 23.96 20.62 19.50 9.17 18.05 12.50 16.08 10.54 13.08 13.21 15.04 19.12 +72 1 15 9.17 10.71 15.16 6.34 10.37 7.54 15.34 7.58 10.21 10.46 11.00 21.96 +72 1 16 23.67 20.62 20.17 8.79 16.83 12.75 16.58 12.50 12.33 12.71 15.16 21.04 +72 1 17 14.50 18.71 10.25 5.91 18.41 12.75 12.38 12.87 13.25 11.25 13.96 21.62 +72 1 18 20.25 15.96 15.75 7.79 14.17 10.37 12.33 9.25 12.17 12.50 19.50 22.83 +72 1 19 10.34 10.88 6.96 4.46 10.04 5.46 11.25 3.96 9.00 7.33 12.21 21.25 +72 1 20 7.54 10.37 6.38 3.67 8.87 5.83 10.41 4.29 7.92 5.96 12.67 19.70 +72 1 21 7.21 7.29 7.12 1.46 7.71 4.75 10.41 3.54 6.75 6.13 10.83 16.46 +72 1 22 12.79 13.42 11.42 4.92 10.00 8.75 13.70 8.08 10.71 10.54 12.58 14.75 +72 1 23 20.41 17.00 18.46 8.92 13.92 11.29 13.00 12.08 12.46 14.50 22.29 23.00 +72 1 24 13.00 16.13 10.63 5.50 12.04 6.34 14.00 5.13 9.42 9.33 15.09 20.04 +72 1 25 13.17 14.46 10.79 4.46 11.67 7.71 9.13 6.87 9.04 8.04 14.67 17.37 +72 1 26 22.71 19.12 15.71 10.21 17.62 9.87 12.87 8.75 12.71 8.71 17.54 19.50 +72 1 27 26.42 14.83 22.13 15.21 15.00 12.29 18.05 10.71 16.62 19.55 19.25 33.25 +72 1 28 11.29 7.25 23.29 7.00 8.42 3.13 14.04 3.37 8.38 6.79 7.25 10.83 +72 1 29 12.29 8.58 19.29 6.38 8.83 5.00 14.92 4.63 9.17 6.58 8.63 14.21 +72 1 30 11.25 10.13 10.34 2.37 8.08 2.58 6.92 4.29 5.00 4.38 10.08 12.29 +72 1 31 22.50 22.29 19.08 8.00 20.96 14.50 12.50 14.33 11.50 10.25 20.41 22.17 +72 2 1 12.87 11.00 15.83 6.79 9.04 9.04 17.29 6.83 10.41 13.50 11.63 28.33 +72 2 2 33.84 26.38 28.16 18.41 24.25 22.50 25.04 20.79 19.92 20.96 24.21 33.63 +72 2 3 19.55 17.46 11.34 7.17 15.29 10.71 9.08 13.54 11.12 14.42 23.75 22.46 +72 2 4 13.04 9.67 12.79 3.58 8.08 6.25 6.04 4.54 6.50 4.96 10.17 12.04 +72 2 5 6.13 6.96 10.04 4.04 8.25 4.63 10.46 5.96 7.79 6.87 9.75 25.00 +72 2 6 2.79 2.29 3.21 0.96 3.21 0.00 1.92 0.21 0.87 0.50 2.08 6.71 +72 2 7 5.09 5.66 7.08 0.50 5.13 2.50 3.33 0.46 2.37 0.67 5.09 9.71 +72 2 8 14.21 13.75 12.08 5.63 12.83 8.08 8.38 6.87 8.17 6.83 12.38 12.38 +72 2 9 10.71 8.75 9.13 3.50 9.87 6.79 7.83 7.50 7.92 11.34 17.88 18.34 +72 2 10 17.12 11.25 13.17 7.17 12.92 9.59 10.21 6.29 10.88 10.46 16.71 17.88 +72 2 11 18.96 14.12 15.00 7.41 12.92 8.83 11.46 6.92 9.83 10.46 12.67 16.79 +72 2 12 16.33 14.21 10.71 7.54 15.00 7.83 13.67 7.58 10.21 8.96 15.29 19.04 +72 2 13 15.12 10.08 8.92 5.96 11.54 6.96 12.58 8.75 11.63 8.83 17.79 20.58 +72 2 14 12.46 10.79 9.17 4.21 10.92 6.87 9.21 5.54 7.54 6.63 10.13 14.42 +72 2 15 20.21 15.34 16.92 9.54 11.83 8.00 13.96 8.54 10.37 11.50 16.79 22.67 +72 2 16 24.37 23.79 16.42 11.54 20.62 13.08 17.12 18.91 14.42 20.91 32.08 37.04 +72 2 17 17.08 13.04 18.29 10.46 12.79 9.38 14.17 10.13 10.75 13.00 15.29 18.34 +72 2 18 9.17 5.00 22.00 6.63 7.58 4.58 12.96 3.08 7.25 6.08 5.00 10.58 +72 2 19 6.58 5.25 7.38 1.50 7.00 0.58 4.33 3.92 3.83 4.12 9.13 11.79 +72 2 20 10.17 9.83 6.21 2.50 10.37 6.25 4.12 6.58 4.96 4.83 12.04 11.71 +72 2 21 6.17 1.38 7.62 2.67 3.79 0.75 4.58 1.00 2.37 0.96 2.33 5.09 +72 2 22 9.29 3.21 16.29 5.58 5.41 1.25 7.50 0.58 4.25 2.04 3.13 5.54 +72 2 23 15.29 8.67 17.54 5.83 8.87 7.87 14.12 8.21 11.34 7.33 8.63 13.59 +72 2 24 17.16 12.17 17.12 8.58 11.58 9.00 14.42 10.46 12.71 10.79 12.87 16.04 +72 2 25 7.79 6.87 10.54 4.88 9.04 6.63 7.50 6.29 8.25 6.96 9.46 17.88 +72 2 26 11.17 11.25 10.58 5.46 9.96 6.92 8.29 7.17 7.29 8.33 11.42 13.70 +72 2 27 25.62 14.12 16.92 12.29 16.17 12.58 11.83 10.54 13.62 15.54 16.66 22.83 +72 2 28 12.92 6.21 12.92 6.29 7.71 3.04 8.04 3.92 5.66 6.29 13.42 13.37 +72 2 29 16.13 15.12 12.46 7.46 14.67 9.62 8.58 10.92 10.37 12.71 22.83 23.00 +72 3 1 6.21 7.50 6.67 1.96 7.46 3.13 7.38 1.67 4.21 2.37 7.83 11.25 +72 3 2 20.17 13.62 16.92 7.38 12.62 8.12 10.88 6.96 9.87 10.92 13.88 18.50 +72 3 3 26.30 22.29 19.04 14.17 21.96 15.71 18.12 15.79 17.96 19.04 23.33 27.54 +72 3 4 12.79 10.67 12.25 7.46 14.58 9.04 11.42 5.88 10.96 12.33 13.50 21.62 +72 3 5 16.50 12.71 10.63 6.25 11.54 6.79 8.87 6.75 8.04 8.42 15.09 16.58 +72 3 6 23.38 13.83 23.16 12.92 18.58 15.16 18.41 13.88 14.46 14.00 16.92 28.79 +72 3 7 24.71 19.33 29.95 12.75 16.00 11.50 15.83 11.08 11.75 11.08 17.79 21.50 +72 3 8 10.58 6.38 15.71 4.92 5.75 1.79 7.87 1.08 4.08 4.08 5.17 9.21 +72 3 9 6.29 9.33 6.58 2.29 7.92 3.08 4.83 2.75 4.67 6.04 9.79 14.12 +72 3 10 10.25 6.50 18.29 6.63 6.58 5.50 11.17 4.75 9.13 7.67 7.38 14.79 +72 3 11 15.21 12.54 32.75 11.12 12.83 11.46 18.96 6.71 12.33 10.63 10.46 15.59 +72 3 12 17.46 8.83 23.25 9.33 11.58 10.58 16.50 8.46 12.29 8.29 9.13 12.96 +72 3 13 15.83 11.08 15.67 7.04 11.46 8.29 11.46 6.21 10.37 8.12 11.21 15.00 +72 3 14 9.79 8.58 9.87 6.17 9.71 8.79 7.75 6.00 8.50 8.50 11.42 13.25 +72 3 15 1.46 6.67 2.92 1.08 4.50 1.67 3.29 2.17 1.87 2.00 9.59 6.54 +72 3 16 6.17 6.96 6.58 2.37 7.41 1.58 2.29 4.88 3.25 2.96 3.83 9.46 +72 3 17 9.04 11.08 8.67 5.00 11.46 6.87 6.50 8.12 7.83 5.66 8.58 13.25 +72 3 18 7.96 2.88 8.92 7.71 6.21 5.41 6.79 4.33 7.21 7.29 8.79 9.67 +72 3 19 9.87 2.00 4.92 3.33 4.75 2.67 3.71 1.54 5.09 3.08 2.79 8.08 +72 3 20 5.88 3.92 10.58 3.58 4.33 0.54 4.12 1.83 3.00 1.87 2.96 9.08 +72 3 21 5.71 4.63 11.08 3.79 4.75 0.71 3.63 2.79 3.21 3.71 8.17 14.29 +72 3 22 5.83 4.21 4.79 2.79 3.29 1.00 6.87 4.17 4.50 5.17 9.62 15.46 +72 3 23 5.58 4.21 8.63 3.21 4.79 1.17 3.88 2.04 3.58 2.96 6.79 5.88 +72 3 24 8.25 10.41 9.46 6.38 11.29 7.17 6.04 6.71 8.58 8.17 8.63 13.04 +72 3 25 13.79 14.62 11.38 7.12 12.62 8.79 9.46 7.67 8.17 6.13 14.04 18.46 +72 3 26 16.42 17.00 11.79 10.29 18.88 11.17 15.63 15.04 14.33 11.46 23.04 21.34 +72 3 27 27.12 24.67 17.29 17.16 28.16 17.00 22.92 21.75 22.50 17.96 28.88 27.37 +72 3 28 19.55 14.92 14.12 13.13 19.87 11.83 16.08 13.62 17.92 12.04 17.67 20.38 +72 3 29 11.54 10.04 11.00 4.92 9.46 6.34 9.54 7.17 9.00 7.12 11.71 15.34 +72 3 30 18.05 13.21 14.88 7.04 9.38 5.54 9.33 7.04 8.00 6.87 6.92 14.17 +72 3 31 12.21 11.04 12.08 6.13 11.17 7.04 8.54 8.96 9.17 6.96 12.29 11.25 +72 4 1 14.83 14.12 15.63 8.50 15.83 11.87 17.04 15.25 14.46 11.83 18.66 17.83 +72 4 2 19.95 17.21 17.08 11.34 17.04 12.08 17.33 15.25 14.67 13.46 19.29 20.30 +72 4 3 14.88 13.88 13.54 8.17 15.41 10.50 14.42 14.21 13.62 12.75 23.67 23.71 +72 4 4 23.13 19.55 16.58 12.00 18.91 12.67 14.21 14.79 13.88 11.63 17.29 14.25 +72 4 5 18.12 17.29 17.16 11.54 20.12 13.46 19.29 14.62 17.46 14.83 22.54 23.91 +72 4 6 18.91 16.21 14.21 8.33 13.25 7.67 12.62 9.33 9.83 8.17 15.00 16.88 +72 4 7 18.34 15.92 15.54 8.96 15.54 10.04 11.67 11.83 12.38 7.79 14.37 8.12 +72 4 8 15.92 12.42 11.29 10.29 13.67 8.83 14.88 9.00 12.79 10.83 11.12 21.00 +72 4 9 18.05 13.29 13.67 8.50 12.50 9.59 11.54 11.50 11.17 10.83 17.88 19.04 +72 4 10 21.54 22.29 15.12 14.33 26.58 15.59 18.16 21.04 17.96 12.83 25.50 20.30 +72 4 11 29.79 19.33 20.08 16.29 21.59 13.59 18.12 16.66 16.92 18.66 17.71 26.54 +72 4 12 8.42 5.91 9.71 4.58 6.25 2.17 9.17 4.83 7.12 4.00 7.58 10.63 +72 4 13 6.75 6.67 6.04 2.33 4.79 0.79 5.46 2.46 2.67 1.96 6.25 7.50 +72 4 14 19.29 9.29 13.46 9.17 13.46 8.67 13.92 11.71 13.42 12.38 15.83 21.42 +72 4 15 7.83 5.88 8.46 4.92 8.50 3.96 9.50 4.88 8.21 6.08 10.34 13.13 +72 4 16 5.79 5.17 4.08 3.37 7.38 3.42 6.25 4.79 5.63 3.79 9.29 13.62 +72 4 17 6.29 2.58 4.83 3.25 4.96 1.79 5.46 3.21 5.17 4.50 5.96 13.04 +72 4 18 9.21 2.17 5.37 3.50 4.50 1.75 7.75 3.29 5.33 6.83 4.79 10.29 +72 4 19 7.04 3.17 13.29 3.29 4.71 3.67 6.34 2.62 4.54 2.21 7.54 7.58 +72 4 20 8.38 3.54 14.04 3.88 5.54 3.54 6.29 3.42 5.66 3.92 4.63 10.67 +72 4 21 8.79 6.58 10.34 4.71 5.37 2.62 6.71 5.54 5.71 6.63 6.54 10.08 +72 4 22 13.42 11.29 23.16 8.58 11.58 7.25 12.42 9.46 9.25 9.25 13.59 10.13 +72 4 23 7.96 7.67 22.58 6.79 7.25 5.41 8.71 7.33 6.79 4.04 9.67 7.46 +72 4 24 10.13 6.75 22.08 6.00 8.42 6.79 11.34 5.58 7.92 5.33 9.83 6.79 +72 4 25 7.00 4.67 9.29 2.58 4.21 1.83 5.21 3.96 4.42 2.17 5.50 6.38 +72 4 26 12.17 7.58 8.54 4.54 6.71 3.71 8.00 5.66 6.38 7.87 7.67 13.13 +72 4 27 13.04 8.63 10.21 5.91 6.29 3.92 9.17 5.88 8.12 8.92 9.21 13.59 +72 4 28 14.79 10.92 12.92 6.75 12.33 8.29 13.00 11.96 11.38 12.46 19.08 21.25 +72 4 29 16.88 16.29 13.46 8.29 14.09 10.04 15.04 13.17 13.83 12.54 16.66 22.79 +72 4 30 13.62 12.87 15.37 6.29 10.83 5.58 11.50 8.58 8.58 8.58 16.04 13.00 +72 5 1 12.62 12.92 11.42 4.88 11.00 3.46 6.67 4.04 5.13 4.96 11.92 7.79 +72 5 2 13.79 11.50 5.63 3.88 9.33 3.88 4.50 6.58 4.46 5.09 11.83 10.88 +72 5 3 18.88 12.17 11.42 8.21 9.79 5.79 9.62 9.00 8.63 8.12 12.87 11.71 +72 5 4 17.41 11.71 20.30 8.92 9.59 4.88 9.83 9.54 8.00 10.41 12.04 8.38 +72 5 5 8.29 6.29 20.25 6.34 5.17 3.92 9.71 2.54 6.58 7.12 6.21 13.04 +72 5 6 9.50 5.54 8.08 2.29 6.29 1.00 3.17 3.29 1.75 1.29 7.87 8.21 +72 5 7 13.50 7.79 12.33 6.00 8.29 4.96 8.17 7.04 7.25 6.87 9.13 9.62 +72 5 8 22.13 16.00 19.08 10.17 15.41 10.67 15.09 13.08 11.87 15.29 17.33 21.59 +72 5 9 21.71 14.04 17.79 7.87 15.04 8.83 10.00 10.25 11.25 10.21 16.83 15.96 +72 5 10 13.62 11.50 8.79 5.41 12.12 7.58 8.67 9.08 7.96 5.41 14.54 11.17 +72 5 11 19.75 14.50 12.67 6.21 12.17 7.08 7.67 8.12 8.08 8.87 14.00 16.38 +72 5 12 13.96 10.29 12.67 6.87 10.96 5.58 8.87 10.08 8.83 8.54 16.21 19.75 +72 5 13 13.33 11.67 25.62 8.96 9.96 6.75 10.88 11.79 8.58 12.25 17.71 18.34 +72 5 14 14.12 14.04 22.17 8.83 10.58 9.04 10.41 12.12 9.62 12.87 17.41 21.87 +72 5 15 15.87 11.58 15.92 8.96 9.67 6.38 11.67 8.96 9.67 12.33 11.92 17.04 +72 5 16 8.58 4.33 7.21 3.04 5.29 2.00 4.21 3.79 3.83 2.75 11.71 9.13 +72 5 17 6.00 7.00 6.92 2.04 5.58 0.96 4.71 6.58 1.87 2.67 6.71 8.12 +72 5 18 10.79 9.29 10.37 5.63 8.79 3.71 3.21 3.92 4.00 2.71 6.83 11.54 +72 5 19 9.79 9.83 13.33 8.42 10.63 8.63 8.87 8.75 9.04 10.37 11.38 14.00 +72 5 20 7.12 7.50 11.25 3.96 8.79 2.67 10.04 4.58 6.79 8.54 8.17 15.25 +72 5 21 15.09 11.67 13.37 5.58 11.29 6.17 9.50 9.75 7.38 9.92 15.00 18.16 +72 5 22 20.00 16.29 12.29 9.46 14.83 9.87 8.08 11.25 10.34 10.71 19.33 14.67 +72 5 23 20.17 13.79 18.12 12.04 15.63 10.13 12.25 11.87 12.54 14.96 17.96 24.54 +72 5 24 22.67 21.46 18.08 10.04 20.54 12.12 13.33 17.88 15.21 15.92 27.16 22.95 +72 5 25 25.12 21.17 21.17 13.79 23.09 15.54 19.75 17.00 16.96 16.17 28.12 24.25 +72 5 26 28.79 26.00 23.63 16.83 33.04 17.88 24.50 20.41 21.62 17.79 27.71 29.50 +72 5 27 23.42 14.42 16.92 13.25 17.96 12.75 18.00 14.17 16.46 15.41 17.33 21.79 +72 5 28 17.88 15.37 15.50 9.00 19.29 10.37 15.00 15.67 13.59 13.29 24.58 21.46 +72 5 29 21.84 19.55 17.83 12.46 23.58 13.13 20.08 17.92 17.33 17.50 26.38 28.04 +72 5 30 19.08 15.59 13.37 12.25 20.04 12.83 19.55 16.33 16.62 16.42 20.04 23.25 +72 5 31 10.04 6.92 8.46 5.63 9.92 5.83 7.96 7.21 9.33 7.83 10.13 12.25 +72 6 1 5.58 5.25 5.91 2.17 4.92 1.58 3.25 4.12 4.08 4.38 11.58 11.87 +72 6 2 16.13 15.21 13.92 6.83 13.75 9.08 10.63 13.25 11.25 12.54 21.21 22.13 +72 6 3 13.79 10.21 11.83 5.71 11.08 8.25 11.38 8.96 8.83 10.96 19.00 17.92 +72 6 4 6.29 7.54 4.75 2.62 6.42 4.54 4.58 7.67 4.71 7.71 16.04 11.96 +72 6 5 9.96 6.38 11.38 4.88 3.83 5.00 5.96 5.04 4.21 4.08 9.17 7.50 +72 6 6 10.21 7.08 10.83 5.79 6.67 3.46 6.92 4.12 4.29 3.92 7.41 8.67 +72 6 7 15.71 10.21 9.25 7.29 9.29 6.92 9.04 7.58 8.96 9.67 10.58 11.96 +72 6 8 9.29 11.00 8.29 5.09 9.75 5.83 9.04 5.66 6.79 5.33 12.12 11.58 +72 6 9 14.96 15.50 6.58 5.66 11.04 7.58 7.50 11.04 7.96 8.87 16.71 15.09 +72 6 10 16.79 14.04 11.08 8.71 12.04 7.25 9.00 10.92 10.50 14.37 15.09 20.54 +72 6 11 9.50 9.79 8.25 3.08 5.54 1.87 6.00 3.21 2.83 5.66 7.21 9.96 +72 6 12 10.04 13.92 3.63 2.37 8.21 5.46 4.71 7.83 5.21 6.83 10.83 11.08 +72 6 13 12.21 11.96 17.25 7.83 8.25 6.42 9.08 9.33 6.54 7.00 12.21 9.71 +72 6 14 8.00 6.75 9.25 5.37 6.42 3.04 3.08 5.46 5.37 4.88 7.17 9.71 +72 6 15 10.71 8.75 5.46 5.09 7.71 4.33 6.92 6.38 5.50 6.25 8.42 10.41 +72 6 16 7.38 5.37 6.17 3.29 6.54 4.17 3.54 6.17 4.88 4.00 12.17 12.79 +72 6 17 20.75 18.29 18.46 10.13 16.50 13.13 15.04 16.38 12.87 15.37 23.42 22.54 +72 6 18 16.66 12.38 12.08 9.71 15.12 10.41 13.00 12.87 11.58 11.25 17.25 20.00 +72 6 19 14.67 12.92 8.75 7.00 12.79 9.33 11.63 9.59 9.29 9.29 14.79 14.88 +72 6 20 19.00 15.71 14.25 7.17 15.29 10.71 10.83 13.67 10.54 12.08 22.46 20.12 +72 6 21 15.59 14.04 15.59 10.21 16.75 12.83 18.38 14.88 15.71 14.21 21.25 25.17 +72 6 22 15.75 12.75 11.21 10.50 15.83 12.04 15.29 15.21 15.54 15.04 18.63 25.12 +72 6 23 10.37 8.96 9.38 6.04 12.67 8.25 12.58 6.17 11.00 8.67 14.92 16.50 +72 6 24 11.58 9.71 12.42 5.54 11.50 7.71 11.17 9.42 9.92 10.13 16.79 14.50 +72 6 25 11.58 9.59 13.33 5.21 10.63 7.75 8.21 11.50 8.21 10.83 19.55 17.21 +72 6 26 5.63 6.87 9.75 5.58 7.00 4.67 5.91 7.29 5.37 6.50 14.12 10.37 +72 6 27 9.71 10.04 7.04 6.25 8.87 6.63 8.71 5.79 6.42 5.09 9.79 9.00 +72 6 28 4.63 7.83 9.54 4.96 9.17 6.63 7.87 6.79 7.92 6.38 12.67 12.58 +72 6 29 6.92 9.21 7.04 3.46 5.25 3.33 5.09 5.09 4.67 4.75 14.83 9.87 +72 6 30 14.83 13.29 13.21 7.12 12.83 9.38 9.79 11.96 10.96 12.00 21.84 17.79 +72 7 1 11.83 11.87 8.08 6.04 13.04 9.29 12.71 9.71 10.63 8.04 17.29 17.12 +72 7 2 9.00 10.08 8.63 5.21 9.42 7.04 9.04 5.88 8.54 7.21 9.17 12.21 +72 7 3 14.50 13.92 13.25 6.04 13.92 6.42 8.75 4.29 7.83 3.79 6.87 8.75 +72 7 4 14.58 10.04 16.58 5.17 10.34 6.00 7.62 4.92 7.92 4.33 11.71 7.50 +72 7 5 7.58 9.04 8.46 5.04 9.71 6.13 8.42 6.46 8.96 5.75 13.37 16.66 +72 7 6 9.17 11.50 8.29 2.83 10.13 5.33 5.00 8.08 5.91 5.17 12.96 10.67 +72 7 7 12.46 8.71 12.25 5.91 11.63 7.54 10.92 6.04 10.83 7.83 11.67 15.46 +72 7 8 6.79 7.17 5.71 2.33 7.50 3.88 4.17 5.04 6.38 4.00 12.17 12.42 +72 7 9 11.79 12.96 9.08 5.58 12.38 8.25 9.92 8.92 10.21 7.25 15.71 15.79 +72 7 10 13.92 14.46 12.75 7.87 18.05 10.92 15.25 11.17 13.46 11.21 18.58 22.37 +72 7 11 9.50 8.42 9.08 3.58 7.75 4.63 8.04 5.71 7.21 4.63 11.58 13.67 +72 7 12 10.04 10.08 11.87 6.08 9.87 6.50 7.29 9.08 8.50 8.17 14.46 16.33 +72 7 13 3.25 7.12 6.46 3.08 4.38 3.00 3.79 4.67 4.12 3.96 7.71 8.71 +72 7 14 2.75 3.96 4.50 1.21 3.17 1.00 2.50 2.92 2.88 0.67 9.08 4.08 +72 7 15 4.75 1.96 9.42 1.54 2.33 2.67 3.54 1.33 4.75 1.38 4.50 4.88 +72 7 16 6.25 3.92 15.00 4.04 3.79 4.21 4.33 2.42 6.34 2.62 7.54 4.21 +72 7 17 11.54 5.37 19.04 5.46 6.63 6.29 6.58 5.58 7.92 5.13 9.33 2.92 +72 7 18 12.67 4.71 17.04 4.50 6.38 8.00 9.96 5.66 8.58 3.54 10.29 4.75 +72 7 19 3.37 0.96 9.92 2.79 3.63 2.42 4.08 2.13 4.79 1.83 9.71 2.50 +72 7 20 2.13 3.08 10.25 2.33 5.46 1.63 3.67 5.21 3.79 1.71 12.00 6.17 +72 7 21 3.00 1.42 10.46 2.50 4.83 2.88 3.08 2.67 4.29 2.58 12.87 7.50 +72 7 22 4.38 2.50 7.87 3.79 4.08 1.17 3.21 0.67 2.62 0.79 5.21 8.67 +72 7 23 4.42 3.92 5.00 2.37 5.75 1.75 4.29 2.13 4.00 1.46 3.33 4.08 +72 7 24 6.92 3.96 5.09 2.46 6.38 1.38 5.46 5.00 4.42 4.08 11.83 8.42 +72 7 25 4.17 3.63 3.88 3.58 4.63 0.54 4.21 2.67 3.63 1.50 12.87 9.04 +72 7 26 4.54 2.58 9.87 2.25 3.46 1.21 4.04 1.33 4.38 1.29 6.50 4.96 +72 7 27 4.71 3.54 5.79 1.29 4.17 0.79 2.33 2.21 1.92 0.96 5.25 6.04 +72 7 28 7.96 5.50 5.50 3.46 5.75 2.62 3.75 3.54 6.00 1.87 8.71 4.21 +72 7 29 7.62 6.29 7.50 4.17 4.33 3.21 6.17 1.71 5.75 3.25 7.79 7.04 +72 7 30 10.92 13.54 8.33 4.54 10.71 5.25 5.09 7.41 7.08 4.71 14.83 10.34 +72 7 31 22.42 19.41 9.00 8.00 15.83 7.29 8.33 10.67 10.13 6.29 17.25 12.79 +72 8 1 21.87 15.16 17.37 11.46 13.79 10.75 12.42 10.37 13.00 10.92 15.41 19.29 +72 8 2 14.88 10.46 8.25 7.25 10.08 5.13 11.50 8.33 10.71 10.17 13.08 18.12 +72 8 3 12.29 8.63 11.29 4.04 5.33 2.46 8.63 5.37 6.34 4.71 12.42 10.46 +72 8 4 13.62 11.08 10.75 8.12 13.62 10.21 17.54 11.54 13.17 10.79 13.08 18.05 +72 8 5 11.46 12.46 11.42 6.34 9.21 6.63 11.21 8.08 9.08 7.00 14.62 13.83 +72 8 6 14.04 13.75 13.25 7.33 10.13 6.25 9.83 8.92 6.21 7.38 17.08 13.62 +72 8 7 13.88 10.71 14.12 7.08 10.13 8.21 12.62 8.92 10.17 8.04 11.50 12.50 +72 8 8 14.79 12.58 11.00 8.25 13.21 8.04 14.12 9.71 11.96 10.54 12.67 15.16 +72 8 9 6.92 7.75 6.92 4.67 8.12 6.08 9.87 6.83 8.71 6.38 11.83 16.50 +72 8 10 5.75 7.12 6.67 2.58 7.41 4.79 7.17 5.54 6.46 4.42 7.96 10.50 +72 8 11 11.46 14.17 7.87 5.66 8.67 6.38 6.92 9.21 8.08 6.75 21.37 15.75 +72 8 12 15.96 9.17 10.41 6.92 8.08 9.59 9.92 7.41 10.58 12.12 10.71 18.75 +72 8 13 6.04 4.79 4.50 1.96 1.87 0.87 3.92 1.17 2.50 1.71 5.00 5.91 +72 8 14 6.17 5.91 5.63 3.04 3.54 2.17 7.04 4.42 4.88 4.08 9.33 10.50 +72 8 15 7.83 5.63 7.92 3.00 4.58 1.67 6.67 2.25 4.25 2.54 7.21 10.54 +72 8 16 8.29 7.46 10.29 5.04 8.75 7.29 11.54 10.88 10.41 8.63 18.91 20.71 +72 8 17 17.37 10.25 12.71 9.21 11.83 9.13 15.12 11.25 13.08 10.63 13.25 19.75 +72 8 18 9.96 5.04 8.08 3.42 5.37 4.25 8.87 3.50 7.75 6.38 8.38 14.75 +72 8 19 4.92 2.13 6.29 1.75 5.54 3.92 8.58 3.79 6.79 4.00 12.79 15.37 +72 8 20 10.34 6.87 7.17 4.08 8.00 5.41 8.25 5.21 8.12 5.41 6.29 11.17 +72 8 21 5.83 3.75 7.79 1.63 2.04 0.75 4.29 1.13 2.62 2.67 3.17 8.71 +72 8 22 3.75 2.21 4.67 1.42 1.54 0.92 2.62 1.42 2.79 1.42 3.50 6.75 +72 8 23 7.21 2.96 5.50 2.88 2.92 3.00 7.92 4.04 5.33 4.71 7.29 14.58 +72 8 24 7.25 1.96 9.62 3.42 1.63 1.79 5.00 2.54 4.88 4.12 4.21 9.67 +72 8 25 7.62 2.33 17.83 3.29 3.63 5.09 5.88 3.17 6.34 3.29 8.17 7.17 +72 8 26 8.04 1.42 9.54 1.25 2.17 1.38 6.71 2.54 6.00 3.54 5.79 10.58 +72 8 27 10.34 2.54 10.41 3.33 5.50 2.71 6.13 4.25 6.08 3.13 4.38 9.87 +72 8 28 8.17 5.09 11.42 2.25 4.00 2.04 6.83 2.92 6.13 3.92 4.42 10.54 +72 8 29 6.08 1.63 8.12 2.13 3.92 1.50 6.92 2.62 6.21 5.37 3.21 11.08 +72 8 30 5.37 4.08 9.62 2.67 3.13 0.08 4.88 2.13 2.83 1.25 3.79 7.75 +72 8 31 7.00 2.46 16.04 2.29 3.46 3.04 5.33 2.17 4.92 2.13 6.54 5.66 +72 9 1 8.83 1.92 12.67 2.92 2.50 1.29 3.67 1.79 4.46 1.67 3.75 3.83 +72 9 2 6.08 4.67 11.17 3.13 2.58 2.08 4.75 2.58 4.00 2.71 6.63 6.83 +72 9 3 8.71 6.08 19.50 5.66 7.38 4.46 6.38 6.58 6.71 5.00 11.46 11.38 +72 9 4 4.58 5.83 18.46 5.71 6.29 4.29 5.91 6.83 5.21 3.17 13.17 12.08 +72 9 5 3.96 2.08 5.09 1.13 2.08 0.67 3.96 0.54 1.96 0.29 5.09 4.04 +72 9 6 8.54 4.88 8.67 3.00 4.79 2.67 5.96 4.33 4.67 4.63 11.29 11.67 +72 9 7 10.46 7.87 7.83 4.46 7.67 5.09 10.00 4.63 8.96 5.25 9.50 14.42 +72 9 8 10.54 10.71 19.62 3.42 5.13 2.58 6.17 2.54 3.58 2.58 6.54 6.92 +72 9 9 14.21 8.79 14.58 6.54 8.54 4.67 10.67 4.71 9.46 7.38 10.83 14.92 +72 9 10 10.46 7.38 8.04 4.21 7.62 6.21 11.58 5.37 9.21 7.54 12.17 18.38 +72 9 11 9.83 9.29 8.25 4.83 8.25 6.58 12.38 6.13 9.92 7.04 12.58 14.25 +72 9 12 9.96 6.79 6.92 5.00 6.17 4.08 10.67 5.37 9.17 6.17 10.63 16.08 +72 9 13 13.33 10.17 9.59 6.00 9.08 5.54 10.13 6.75 8.83 7.04 12.67 16.04 +72 9 14 6.54 4.67 13.62 3.58 3.42 0.87 5.00 0.96 3.37 1.08 5.66 2.83 +72 9 15 5.33 2.67 5.37 1.54 1.92 1.42 4.54 1.96 2.33 0.79 3.79 4.38 +72 9 16 6.96 3.33 7.00 2.75 3.25 2.00 7.58 2.88 6.00 1.63 6.58 5.63 +72 9 17 7.21 5.63 9.13 2.75 4.42 1.00 3.88 5.17 2.37 0.71 5.41 5.29 +72 9 18 7.75 4.46 8.00 2.71 2.17 0.96 4.50 2.46 2.21 1.33 3.58 8.00 +72 9 19 6.79 4.42 12.42 3.08 1.87 1.17 5.83 2.83 2.79 1.38 2.83 5.25 +72 9 20 5.25 6.58 7.41 2.37 4.17 3.88 6.17 9.59 4.71 6.87 14.42 15.12 +72 9 21 6.63 7.92 8.87 3.21 3.46 2.33 7.08 5.75 4.75 5.33 9.29 13.54 +72 9 22 6.63 7.17 6.17 1.04 3.54 2.21 4.38 5.17 3.25 0.75 8.50 7.67 +72 9 23 16.00 12.96 11.87 3.46 5.41 5.50 7.87 8.42 8.00 3.96 9.33 11.25 +72 9 24 12.75 12.62 13.33 4.46 8.08 4.88 10.29 8.79 8.04 4.42 7.38 12.75 +72 9 25 11.42 11.08 10.75 3.37 5.88 3.88 6.63 6.21 5.21 4.71 8.54 12.50 +72 9 26 8.79 9.79 6.25 1.50 3.08 1.71 3.54 3.71 2.00 2.29 6.17 6.00 +72 9 27 4.63 5.63 3.42 1.00 2.25 1.17 3.50 2.17 1.71 0.46 4.71 5.83 +72 9 28 6.29 9.13 5.58 1.79 5.71 3.63 2.54 6.00 3.54 4.38 13.08 10.88 +72 9 29 15.92 14.88 11.71 7.50 10.54 9.25 8.33 11.92 9.13 10.13 24.54 19.00 +72 9 30 23.04 16.62 15.63 11.63 12.42 11.34 11.50 15.09 13.29 14.46 21.25 20.04 +72 10 1 14.17 12.62 11.17 6.38 11.29 8.25 11.42 10.37 9.21 9.25 15.04 20.38 +72 10 2 9.59 6.50 10.25 3.96 2.46 2.29 9.13 7.00 7.71 4.63 7.67 13.54 +72 10 3 10.41 3.54 5.75 1.25 1.42 0.33 3.50 2.75 4.08 1.08 3.17 7.46 +72 10 4 10.54 5.17 8.71 1.29 1.79 0.46 4.04 3.33 4.17 1.67 3.46 3.75 +72 10 5 18.88 16.66 11.92 5.21 9.42 5.41 7.04 10.00 9.50 7.04 13.00 11.08 +72 10 6 15.12 12.79 7.62 3.46 8.12 4.54 5.75 7.46 6.63 5.83 9.50 12.00 +72 10 7 10.88 12.79 10.58 5.66 9.38 6.21 5.50 7.46 6.92 5.33 11.08 12.96 +72 10 8 16.71 14.17 15.92 10.13 11.38 10.25 10.08 11.79 12.54 14.09 14.96 17.75 +72 10 9 10.41 10.88 11.54 5.46 6.17 4.29 7.71 6.00 7.00 6.79 10.17 11.67 +72 10 10 13.75 13.33 10.83 5.46 7.92 4.38 9.38 10.17 7.75 7.33 18.71 17.88 +72 10 11 8.71 9.08 12.62 4.96 6.63 5.09 11.25 7.67 7.79 5.58 13.50 9.33 +72 10 12 8.67 6.38 11.54 2.37 3.88 2.17 5.75 4.67 3.29 2.08 8.38 12.83 +72 10 13 7.17 5.83 13.17 3.71 2.79 3.33 5.91 3.13 4.46 1.79 3.88 3.33 +72 10 14 9.00 6.83 16.17 5.50 5.58 4.83 8.87 6.54 6.75 4.17 8.92 6.75 +72 10 15 12.71 7.87 13.46 5.04 6.38 4.83 10.29 8.54 7.50 5.13 8.67 6.13 +72 10 16 11.58 6.79 12.38 4.00 5.13 3.04 6.75 5.54 4.63 2.88 6.13 9.83 +72 10 17 8.79 5.91 14.83 4.92 7.29 3.58 10.50 7.38 7.04 3.04 6.25 8.33 +72 10 18 11.87 6.75 15.46 5.83 6.83 3.71 11.34 7.41 7.41 1.87 5.09 7.38 +72 10 19 8.63 7.96 13.62 4.92 5.63 1.54 5.83 6.29 5.13 3.63 9.13 14.09 +72 10 20 9.17 7.50 16.25 5.50 5.21 2.96 9.08 6.58 6.75 6.96 11.67 17.79 +72 10 21 8.46 5.13 10.96 4.67 5.75 4.71 10.88 8.04 8.75 5.79 12.17 20.41 +72 10 22 11.46 12.58 10.67 8.04 11.25 9.92 20.62 15.63 15.12 14.25 20.25 28.21 +72 10 23 10.00 12.83 8.79 6.63 9.83 7.08 14.00 10.54 10.67 9.79 13.83 23.16 +72 10 24 4.83 7.96 6.46 2.75 5.79 4.17 9.33 5.58 6.71 5.50 11.71 15.41 +72 10 25 11.83 11.34 8.87 4.21 9.21 5.83 9.17 10.25 8.71 9.25 19.38 20.04 +72 10 26 17.50 15.34 17.00 10.13 13.46 10.96 12.38 13.37 13.33 14.33 16.46 23.04 +72 10 27 11.92 14.09 13.00 5.09 7.38 4.08 8.33 8.33 5.33 5.04 15.83 12.25 +72 10 28 17.04 16.83 14.12 8.04 11.58 9.71 11.96 12.46 11.67 12.54 22.37 20.54 +72 10 29 22.00 17.41 21.42 12.29 15.00 12.62 12.87 14.58 14.12 16.46 25.17 25.75 +72 10 30 3.67 5.21 4.42 1.42 4.42 3.75 6.42 4.75 5.09 4.71 11.42 18.58 +72 10 31 10.71 6.25 11.04 3.88 4.38 1.13 4.58 3.37 3.75 1.71 12.54 13.13 +72 11 1 4.79 8.38 8.25 2.33 5.63 7.17 9.25 11.21 8.63 9.59 17.75 18.91 +72 11 2 7.54 7.33 11.46 2.13 4.08 5.63 8.12 10.41 7.75 9.13 18.41 19.55 +72 11 3 9.42 8.38 9.87 3.33 5.04 4.12 8.50 6.38 6.46 4.63 7.33 9.71 +72 11 4 12.25 11.67 12.96 4.17 4.92 3.25 3.79 5.63 5.41 3.17 7.67 6.71 +72 11 5 4.92 6.42 6.38 2.37 3.17 2.67 3.88 5.96 3.92 3.50 9.38 10.71 +72 11 6 7.12 10.13 12.92 3.00 4.88 6.08 8.46 10.75 9.25 8.42 14.79 17.62 +72 11 7 9.79 8.46 10.79 3.13 3.96 2.25 6.50 3.46 5.79 3.37 10.83 15.75 +72 11 8 7.38 7.79 5.71 1.42 5.83 4.38 7.67 7.41 6.21 6.50 15.54 20.96 +72 11 9 26.83 23.00 21.84 13.29 15.92 13.50 18.29 16.75 15.71 16.33 26.75 33.21 +72 11 10 15.67 19.08 10.63 8.71 12.46 7.12 15.54 13.13 12.12 11.04 23.25 28.96 +72 11 11 17.83 18.25 11.38 9.42 11.79 8.33 15.83 13.59 14.54 11.12 22.17 27.25 +72 11 12 21.50 20.12 15.96 9.04 12.71 7.41 12.33 10.63 10.88 8.79 13.62 14.46 +72 11 13 8.46 8.63 8.08 3.92 5.46 4.25 10.17 5.50 8.33 5.46 8.12 16.04 +72 11 14 8.50 6.54 8.08 2.58 3.71 2.04 7.67 2.37 5.41 3.58 7.29 12.92 +72 11 15 7.29 7.29 5.71 1.04 3.71 3.08 8.63 4.25 5.88 4.38 10.04 18.96 +72 11 16 7.92 11.04 14.29 3.63 4.12 1.58 6.71 4.29 3.46 1.29 6.87 13.75 +72 11 17 12.25 10.41 13.62 3.37 4.38 2.08 9.25 4.92 5.00 4.04 11.08 14.50 +72 11 18 17.83 14.21 15.75 6.21 10.88 7.83 10.88 8.33 7.75 8.75 11.38 18.00 +72 11 19 18.63 14.79 15.04 6.21 6.96 5.33 8.29 6.54 5.96 3.83 7.33 13.17 +72 11 20 19.62 26.46 14.37 11.87 17.58 9.42 14.50 10.37 13.00 6.34 12.25 11.54 +72 11 21 14.96 16.88 13.50 9.33 11.50 8.54 18.91 12.33 14.46 9.87 16.71 13.92 +72 11 22 8.71 8.83 7.87 3.88 6.00 3.79 9.96 5.79 7.83 5.66 12.42 22.63 +72 11 23 10.21 6.13 11.50 3.75 3.75 2.33 10.83 4.54 8.58 8.29 10.00 22.88 +72 11 24 7.29 3.46 9.50 3.08 2.25 0.29 6.71 1.75 2.83 1.67 4.29 8.46 +72 11 25 5.37 2.62 8.12 2.62 6.29 3.42 11.75 6.67 8.33 5.41 11.00 18.71 +72 11 26 7.50 10.17 5.96 1.67 5.29 3.83 7.87 7.00 3.58 4.92 14.83 16.46 +72 11 27 23.38 22.46 19.75 12.96 13.92 13.96 15.96 18.58 14.17 17.67 27.58 25.84 +72 11 28 13.08 17.00 9.62 6.21 11.50 8.79 15.00 10.21 11.17 11.83 18.79 25.46 +72 11 29 18.21 17.58 17.83 9.96 11.71 11.34 16.96 12.04 12.33 11.67 18.88 21.62 +72 11 30 13.17 17.04 10.34 6.29 11.21 9.04 14.62 10.46 9.75 9.29 16.92 18.00 +72 12 1 20.58 17.92 18.46 9.62 16.75 13.21 18.29 12.75 13.83 13.83 22.42 26.20 +72 12 2 6.00 10.21 4.75 0.87 7.17 4.92 5.37 5.58 3.71 1.71 8.08 9.59 +72 12 3 16.71 16.88 12.29 7.46 10.13 9.46 13.25 10.67 8.67 8.00 14.00 17.08 +72 12 4 20.21 22.79 16.83 11.00 12.00 10.79 19.38 10.71 13.04 11.54 14.25 20.54 +72 12 5 25.58 20.46 22.08 10.37 18.46 15.25 21.71 17.92 16.79 16.29 27.50 29.83 +72 12 6 16.88 17.67 11.58 5.54 12.08 9.59 12.87 8.83 7.75 8.50 12.87 18.63 +72 12 7 11.38 14.46 11.46 6.83 11.75 9.83 15.29 8.87 10.17 8.21 12.38 12.54 +72 12 8 11.08 10.08 7.21 2.08 4.67 3.67 6.87 3.67 3.21 2.13 4.75 6.92 +72 12 9 11.75 12.67 10.04 3.71 8.67 8.08 13.37 10.00 8.50 8.46 17.25 20.08 +72 12 10 15.46 18.50 12.67 6.42 13.88 11.00 17.50 9.33 11.79 11.50 19.00 22.71 +72 12 11 24.13 22.04 20.62 13.08 17.37 14.88 15.92 16.13 13.29 16.38 29.08 26.54 +72 12 12 20.25 18.63 17.33 10.17 16.42 14.62 16.92 16.46 14.04 16.17 27.21 26.25 +72 12 13 14.88 14.17 16.29 7.62 8.75 9.50 11.46 11.29 9.38 11.54 22.92 25.62 +72 12 14 25.96 23.45 20.04 18.46 19.04 15.71 19.08 19.12 15.12 14.92 24.25 20.79 +72 12 15 17.50 23.42 16.66 11.38 15.71 13.46 14.54 14.37 12.75 11.12 19.46 19.87 +72 12 16 16.25 16.13 15.21 9.96 12.50 10.88 13.88 12.08 11.38 10.92 15.29 20.17 +72 12 17 20.71 25.17 17.12 9.79 18.41 13.70 17.71 16.62 12.83 11.42 20.38 25.66 +72 12 18 9.87 16.04 14.33 8.25 13.75 11.58 15.71 10.63 9.38 6.17 13.79 25.50 +72 12 19 9.59 13.37 8.96 6.46 7.33 7.29 5.29 9.87 8.87 10.46 25.46 19.83 +72 12 20 8.46 12.08 8.42 5.17 7.46 7.17 2.13 9.59 6.54 5.37 20.54 18.16 +72 12 21 1.79 2.21 3.96 0.37 1.71 0.92 2.08 2.25 0.71 0.92 6.17 9.59 +72 12 22 5.91 9.00 4.75 2.17 6.08 3.79 2.62 5.46 4.54 4.17 14.88 15.29 +72 12 23 13.00 10.71 10.29 3.04 6.87 4.88 8.96 5.58 8.17 6.87 13.88 18.08 +72 12 24 15.00 16.62 13.96 5.17 11.38 9.29 9.71 9.96 9.00 7.41 14.42 14.88 +72 12 25 26.71 23.54 23.33 16.50 23.63 18.25 21.46 21.37 19.75 21.29 27.46 31.25 +72 12 26 14.29 12.33 11.96 5.41 8.92 6.54 11.08 9.13 9.59 9.17 12.62 15.79 +72 12 27 19.04 11.58 21.42 10.92 12.29 12.87 18.41 13.00 12.42 9.79 12.42 14.50 +72 12 28 30.42 20.30 17.08 14.12 14.17 11.96 14.33 12.42 13.70 11.54 15.87 16.04 +72 12 29 8.04 7.83 9.25 3.37 4.79 3.58 5.88 5.33 5.50 4.58 17.21 14.67 +72 12 30 13.62 14.67 11.83 7.54 11.04 8.54 7.83 12.00 11.29 12.12 21.04 25.00 +72 12 31 13.83 14.46 15.87 9.75 8.71 11.00 10.67 11.54 11.50 10.75 18.00 17.50 +73 1 1 16.50 15.92 14.62 7.41 8.29 11.21 13.54 7.79 10.46 10.79 13.37 9.71 +73 1 2 15.75 12.12 15.04 8.00 8.79 10.41 13.25 9.67 9.04 10.17 12.29 14.04 +73 1 3 7.38 9.33 9.17 2.21 3.13 2.54 5.33 1.63 4.46 0.71 2.83 5.63 +73 1 4 2.92 4.58 4.63 1.00 2.75 0.96 4.50 0.46 3.08 0.79 4.12 4.17 +73 1 5 6.42 6.79 6.25 1.33 3.29 1.00 2.71 1.79 3.13 0.58 3.67 4.83 +73 1 6 10.58 9.04 7.54 2.25 5.96 3.00 5.79 4.50 5.54 3.08 5.37 6.04 +73 1 7 12.08 10.88 10.13 4.25 6.13 4.96 5.63 6.34 5.25 4.08 6.46 7.87 +73 1 8 7.75 8.12 3.54 0.63 5.21 2.88 2.67 1.25 2.58 0.33 5.00 6.79 +73 1 9 12.17 12.08 6.21 1.50 8.38 5.41 3.13 6.42 3.08 1.21 8.63 7.79 +73 1 10 14.46 14.37 11.58 3.58 9.08 6.42 8.29 7.54 6.21 5.37 10.71 10.29 +73 1 11 15.79 14.75 15.71 7.38 8.58 10.29 11.58 10.34 8.42 8.42 12.79 13.04 +73 1 12 22.37 16.92 22.04 13.54 15.16 14.37 17.41 13.79 15.37 16.66 16.66 23.63 +73 1 13 12.71 2.67 13.42 5.46 7.33 6.63 10.00 4.25 8.50 7.62 4.83 14.79 +73 1 14 22.00 21.71 18.05 11.08 17.16 13.17 12.96 10.79 11.87 11.46 16.08 17.12 +73 1 15 14.33 19.62 11.71 10.88 17.33 14.00 22.04 16.54 15.83 18.96 25.37 30.37 +73 1 16 7.38 4.17 4.42 1.75 4.63 3.33 7.92 2.21 4.42 3.75 7.00 14.09 +73 1 17 6.42 3.08 8.38 1.54 2.83 0.13 4.50 0.79 0.67 0.04 7.12 6.50 +73 1 18 23.67 22.37 15.87 7.67 18.58 13.50 12.17 15.09 11.87 11.58 22.67 23.45 +73 1 19 17.21 8.42 25.08 13.75 10.08 13.17 25.12 7.75 19.12 20.83 8.63 32.66 +73 1 20 11.17 12.00 7.50 4.96 9.59 5.21 11.12 7.46 8.33 6.83 14.25 17.54 +73 1 21 11.58 8.17 7.62 4.63 7.83 5.71 14.71 5.50 10.13 7.71 11.38 24.25 +73 1 22 10.96 12.58 11.71 2.75 9.00 7.25 11.29 7.71 7.54 5.75 13.42 16.33 +73 1 23 10.34 12.25 8.92 3.33 9.42 7.96 12.87 11.25 9.33 8.08 17.29 14.50 +73 1 24 13.37 16.96 10.67 4.29 10.04 7.54 9.54 12.50 9.17 10.21 21.00 19.55 +73 1 25 15.54 14.17 12.75 7.67 12.00 11.38 12.83 10.83 12.50 10.63 16.25 16.75 +73 1 26 15.37 16.75 13.13 7.33 14.79 11.21 16.71 12.12 13.33 11.08 17.88 21.29 +73 1 27 15.50 16.42 6.04 5.04 13.29 5.58 6.83 8.38 8.00 3.00 9.46 10.75 +73 1 28 16.08 7.67 7.96 6.75 9.71 7.75 13.08 10.41 11.58 7.62 13.04 15.00 +73 1 29 10.21 11.42 8.04 4.21 7.25 6.92 9.59 10.17 9.38 10.54 15.34 16.79 +73 1 30 15.25 18.50 10.75 7.79 12.08 8.71 14.71 10.63 11.54 10.50 18.50 18.66 +73 1 31 15.25 14.46 8.21 5.13 11.46 7.41 11.08 8.38 8.46 7.12 12.96 11.00 +73 2 1 14.79 12.33 6.67 6.67 10.37 6.58 8.00 6.34 8.75 6.08 9.92 9.38 +73 2 2 4.00 3.54 4.29 1.63 2.62 0.37 4.25 2.58 3.92 2.96 6.21 6.79 +73 2 3 12.71 12.17 7.96 4.79 8.17 7.08 6.34 7.87 6.79 8.21 17.96 13.37 +73 2 4 17.88 13.08 12.75 6.21 10.37 7.33 9.67 9.33 8.50 10.54 14.88 17.92 +73 2 5 10.54 10.54 8.46 5.00 10.08 7.38 13.42 8.38 11.12 9.50 17.04 20.62 +73 2 6 12.83 12.92 11.67 8.33 16.29 12.21 20.08 11.63 17.50 14.96 19.58 27.08 +73 2 7 17.21 13.00 15.92 7.92 12.79 9.13 12.71 7.71 11.46 11.17 16.42 22.46 +73 2 8 13.70 10.37 9.54 5.21 9.75 5.79 8.79 6.50 8.92 7.41 11.08 15.29 +73 2 9 17.92 16.38 12.29 10.13 11.17 9.04 14.09 9.96 13.13 9.25 18.25 20.83 +73 2 10 18.46 17.67 13.67 10.58 15.75 10.29 14.71 12.83 16.00 14.09 18.46 27.71 +73 2 11 16.96 18.75 12.29 11.04 19.12 13.00 18.50 14.92 16.79 14.46 23.09 27.04 +73 2 12 28.01 28.16 17.58 16.08 28.62 18.58 24.21 22.67 23.63 19.67 30.63 35.75 +73 2 13 21.25 22.50 13.17 10.50 20.21 11.71 16.88 15.79 16.54 15.21 26.16 28.42 +73 2 14 18.46 19.00 10.13 8.25 12.04 7.96 10.88 9.62 10.41 5.04 20.21 13.59 +73 2 15 19.67 21.29 12.92 8.42 15.00 8.67 7.92 9.71 9.96 5.41 18.54 11.38 +73 2 16 11.12 9.50 9.46 2.88 6.96 2.50 3.88 5.25 5.04 1.63 10.71 13.00 +73 2 17 13.67 5.71 9.21 2.88 11.17 3.50 2.79 4.75 4.54 2.33 4.88 9.59 +73 2 18 8.21 6.00 5.04 2.88 7.75 4.38 9.08 6.29 7.08 5.09 12.33 17.04 +73 2 19 10.58 8.33 7.79 5.66 9.67 7.21 12.00 8.87 10.88 5.96 11.17 17.58 +73 2 20 8.79 8.38 6.79 5.13 9.83 7.29 11.58 7.83 12.17 9.17 14.12 19.75 +73 2 21 14.54 13.50 10.00 7.41 13.17 8.46 13.13 9.21 12.79 12.12 13.37 19.41 +73 2 22 19.50 16.54 11.04 11.75 17.41 10.46 17.83 14.42 18.29 13.88 21.59 31.46 +73 2 23 19.58 15.92 11.29 13.21 17.62 13.04 16.38 15.29 18.12 16.96 20.08 33.09 +73 2 24 11.08 9.00 10.25 4.29 7.67 4.54 9.13 4.50 7.33 9.13 7.96 20.83 +73 2 25 8.38 14.92 8.17 1.87 9.59 6.04 5.46 5.58 6.29 4.58 11.21 10.21 +73 2 26 11.42 8.21 6.79 0.63 8.46 0.33 3.17 0.96 1.75 1.79 3.33 8.67 +73 2 27 13.04 10.25 11.83 5.50 9.83 7.58 6.96 6.71 8.79 7.92 10.50 17.96 +73 2 28 9.21 9.67 6.58 3.00 6.71 4.42 4.58 5.13 7.04 5.33 8.67 11.12 +73 3 1 17.83 15.16 14.46 8.17 12.75 10.79 13.54 11.12 12.04 12.50 16.21 20.04 +73 3 2 18.25 19.08 15.16 9.13 15.25 11.38 14.83 17.79 13.00 15.59 22.50 24.37 +73 3 3 17.12 8.87 15.59 4.00 5.46 4.54 7.46 6.46 7.21 6.38 11.34 14.12 +73 3 4 13.08 8.75 13.25 6.50 8.08 6.54 8.71 6.67 8.79 8.42 12.04 17.96 +73 3 5 8.42 10.54 6.00 4.17 9.96 5.17 7.71 6.63 8.63 8.12 14.46 18.12 +73 3 6 17.16 11.87 13.62 8.71 12.87 8.92 13.13 9.54 12.87 11.46 13.00 19.87 +73 3 7 5.58 9.13 6.71 1.21 4.33 3.46 6.58 6.25 5.29 5.29 10.46 13.54 +73 3 8 14.29 18.16 8.79 4.67 10.96 6.63 5.21 8.83 7.41 7.87 12.75 14.83 +73 3 9 12.62 15.67 7.87 5.04 10.58 8.67 6.46 7.25 5.75 4.33 8.42 14.04 +73 3 10 12.83 15.71 6.87 3.17 10.21 4.08 3.79 4.96 4.17 2.42 4.42 7.58 +73 3 11 11.17 11.58 7.75 1.92 7.17 2.67 3.04 6.38 5.04 3.04 3.79 6.92 +73 3 12 6.42 8.42 11.83 2.21 3.96 2.04 6.58 3.75 6.42 4.33 3.50 9.17 +73 3 13 8.50 7.04 9.79 1.79 4.71 1.87 3.50 3.54 3.92 3.00 2.25 5.00 +73 3 14 6.83 7.17 10.46 2.37 3.21 1.96 4.54 3.25 5.00 2.54 3.21 6.29 +73 3 15 6.54 5.54 9.54 1.33 4.58 0.37 2.92 1.42 1.83 0.92 3.00 6.54 +73 3 16 5.21 5.63 8.58 3.58 4.25 1.33 3.17 0.75 3.88 3.46 3.00 12.54 +73 3 17 7.04 4.00 7.29 3.08 3.54 0.75 4.92 2.67 4.79 4.17 3.71 10.46 +73 3 18 4.42 4.79 8.12 3.46 4.83 1.54 6.96 5.29 6.96 7.25 6.96 12.67 +73 3 19 5.88 3.13 8.33 3.17 4.75 2.29 3.67 2.50 4.67 0.37 4.12 4.75 +73 3 20 4.17 7.67 4.00 2.67 5.21 2.42 3.83 2.79 3.33 2.71 6.67 5.17 +73 3 21 7.50 11.96 6.96 5.21 9.08 6.71 7.12 7.50 7.17 6.42 18.75 15.59 +73 3 22 11.25 12.04 11.12 3.96 9.21 7.12 9.00 13.67 7.21 10.83 21.25 20.08 +73 3 23 16.75 18.25 13.04 11.04 16.29 12.54 8.38 14.04 12.62 14.17 22.63 21.37 +73 3 24 22.58 20.91 18.58 12.50 17.50 14.12 16.38 15.59 16.04 16.83 24.75 25.37 +73 3 25 18.58 14.37 12.38 9.50 15.34 9.50 13.75 12.50 13.42 11.54 16.79 20.67 +73 3 26 11.00 14.92 8.75 5.29 11.17 6.29 8.21 7.75 6.38 6.21 13.37 13.96 +73 3 27 16.29 17.08 15.41 11.34 16.46 10.63 11.25 12.46 12.79 14.83 17.79 24.50 +73 3 28 12.04 9.46 11.87 5.83 9.04 5.83 9.79 7.83 7.87 7.04 12.08 18.00 +73 3 29 14.29 16.00 13.88 7.58 11.67 10.67 12.17 16.08 11.83 13.59 23.00 26.75 +73 3 30 18.50 13.96 14.54 10.21 15.25 10.79 14.12 11.21 13.59 12.12 18.41 22.37 +73 3 31 14.92 16.04 13.37 10.00 16.66 12.87 18.88 14.04 17.75 15.79 23.87 27.75 +73 4 1 17.41 17.08 13.59 8.04 12.00 10.04 12.42 10.88 11.63 10.83 14.58 18.34 +73 4 2 28.71 20.46 22.34 15.63 20.50 13.29 17.41 13.25 15.37 14.12 18.29 21.71 +73 4 3 14.62 13.83 12.58 7.46 10.46 9.46 12.21 10.50 10.08 10.54 18.58 19.95 +73 4 4 19.62 18.84 20.41 11.67 18.34 14.79 21.54 15.67 18.91 16.83 22.42 28.16 +73 4 5 12.17 14.21 10.79 8.54 13.67 11.71 17.00 17.62 16.66 15.29 22.25 28.21 +73 4 6 20.21 15.92 14.50 11.12 17.67 13.88 18.08 14.54 17.96 16.92 21.17 28.16 +73 4 7 16.71 10.92 14.83 7.79 8.87 8.92 11.46 7.83 10.08 10.54 14.21 22.00 +73 4 8 19.00 14.58 18.54 9.46 9.29 9.67 12.04 9.33 10.21 11.12 14.88 21.25 +73 4 9 11.46 7.08 10.34 6.21 7.41 3.46 8.00 4.38 5.66 3.63 8.63 7.96 +73 4 10 13.75 13.83 8.12 5.54 9.59 6.87 9.00 8.63 9.21 8.63 13.17 15.96 +73 4 11 19.21 15.37 11.75 9.87 10.58 9.83 10.04 11.42 10.63 11.75 13.96 15.75 +73 4 12 19.75 14.09 13.37 10.83 13.83 10.83 10.75 11.21 13.79 12.62 13.54 14.96 +73 4 13 8.63 5.75 7.04 4.79 5.46 5.04 8.08 4.25 7.21 7.38 6.58 12.75 +73 4 14 10.88 7.38 6.87 5.46 6.58 4.58 8.54 4.42 8.42 7.00 7.25 12.04 +73 4 15 7.79 6.63 7.29 4.63 6.63 4.58 6.63 5.96 8.08 6.38 8.12 10.92 +73 4 16 10.71 8.50 8.87 6.34 7.04 6.00 8.46 6.96 8.42 8.63 7.96 13.08 +73 4 17 9.08 8.92 8.42 5.00 5.29 4.08 8.71 5.04 6.38 7.62 7.92 14.09 +73 4 18 13.21 10.46 12.92 8.71 9.67 9.79 12.96 8.79 9.54 12.08 11.00 17.75 +73 4 19 11.17 12.58 15.21 7.41 11.04 8.71 9.08 9.83 11.54 13.83 12.42 17.29 +73 4 20 15.16 12.38 12.54 8.38 10.63 9.46 12.96 9.46 11.29 14.25 13.67 21.21 +73 4 21 16.33 13.46 18.41 8.83 13.21 10.41 11.71 11.17 10.50 12.79 14.17 20.41 +73 4 22 13.79 10.96 25.88 10.21 9.87 8.25 14.37 9.25 10.46 12.21 15.59 17.92 +73 4 23 14.67 15.41 29.79 11.25 13.46 12.29 20.17 14.33 14.21 17.75 21.21 22.54 +73 4 24 16.00 14.00 20.62 8.83 13.50 12.17 15.54 12.42 13.04 12.29 14.88 16.42 +73 4 25 10.54 9.25 10.58 3.08 6.87 6.83 5.04 6.34 7.41 4.38 10.41 6.42 +73 4 26 4.50 3.58 5.63 2.13 4.33 1.96 3.79 3.29 3.25 2.58 4.58 10.13 +73 4 27 4.25 4.96 5.91 2.42 4.50 1.83 1.75 3.75 2.83 3.29 6.54 8.42 +73 4 28 8.25 10.79 10.41 4.17 6.08 3.58 5.58 5.83 5.46 4.96 9.83 13.92 +73 4 29 14.75 12.96 13.13 5.71 10.63 6.00 6.63 8.33 6.92 4.42 9.59 8.38 +73 4 30 12.50 13.50 8.63 6.25 10.08 8.08 8.12 8.38 8.12 6.87 16.62 17.75 +73 5 1 11.92 6.38 8.46 4.04 8.00 5.71 10.58 4.88 8.79 6.42 8.17 15.37 +73 5 2 12.58 11.04 10.17 4.38 7.29 5.66 7.62 5.54 6.58 3.71 8.83 9.67 +73 5 3 16.29 14.09 14.79 9.59 13.21 11.34 11.75 15.09 13.25 12.00 17.33 24.08 +73 5 4 14.71 7.17 18.25 8.12 10.83 10.17 12.17 7.29 9.71 9.38 9.38 16.66 +73 5 5 12.00 13.59 11.63 6.25 11.08 8.54 10.92 8.29 10.21 8.50 12.08 12.87 +73 5 6 13.04 10.67 12.08 6.38 11.71 9.29 9.00 9.54 12.25 10.37 15.46 12.75 +73 5 7 22.46 17.08 13.50 11.50 14.83 11.92 12.38 12.17 13.92 13.79 16.17 21.87 +73 5 8 15.75 12.54 8.75 8.38 14.37 10.37 12.87 12.08 12.21 9.79 14.71 17.58 +73 5 9 16.00 15.00 14.37 8.42 16.38 10.04 14.50 11.92 14.17 11.92 17.79 20.17 +73 5 10 21.50 16.38 13.59 12.21 19.29 12.96 17.16 13.54 16.92 15.83 19.04 26.83 +73 5 11 11.00 11.00 8.29 7.25 11.63 8.63 11.12 10.29 11.87 9.59 14.09 17.88 +73 5 12 16.58 15.75 14.67 8.46 15.12 11.71 14.00 14.42 12.96 13.92 20.54 21.79 +73 5 13 13.17 11.12 12.33 5.91 9.38 6.96 7.96 7.00 8.21 9.04 8.96 14.96 +73 5 14 5.17 9.54 9.38 3.92 5.58 4.50 3.29 4.17 5.88 6.29 5.66 11.12 +73 5 15 9.67 6.58 11.12 3.00 5.33 3.46 4.08 4.04 6.29 2.92 4.67 9.92 +73 5 16 19.04 20.54 12.38 7.92 13.96 11.12 9.13 12.21 11.42 11.25 12.71 18.12 +73 5 17 21.79 17.88 17.83 11.58 17.37 14.50 14.29 18.50 15.63 16.92 16.79 22.42 +73 5 18 15.50 14.46 10.46 6.83 13.33 10.41 9.29 13.08 10.67 10.13 12.96 20.88 +73 5 19 9.75 7.08 17.92 6.79 9.54 10.79 13.04 11.17 13.37 11.12 12.04 20.54 +73 5 20 10.46 11.34 14.58 7.33 10.75 12.87 12.92 14.37 13.04 13.37 17.67 26.08 +73 5 21 13.33 8.79 9.54 6.17 10.25 9.87 6.54 10.29 9.08 10.17 11.83 19.75 +73 5 22 9.38 7.83 8.58 6.17 9.46 6.96 8.54 6.04 8.25 7.38 6.17 14.00 +73 5 23 8.00 4.92 5.54 2.75 7.41 3.58 4.79 2.13 5.75 5.79 3.21 8.21 +73 5 24 6.58 9.96 8.83 3.33 6.13 4.04 5.46 4.21 5.21 3.58 7.50 5.50 +73 5 25 11.58 13.50 9.62 6.58 12.33 9.00 4.75 7.83 7.87 6.87 10.71 12.04 +73 5 26 6.04 7.79 8.08 4.79 7.33 5.88 5.09 6.58 6.67 5.54 9.25 12.92 +73 5 27 9.04 3.54 5.88 1.96 5.04 4.04 2.25 4.12 5.71 4.75 7.87 8.21 +73 5 28 3.04 3.83 5.63 2.50 5.83 2.33 4.83 2.33 6.13 4.17 4.21 11.42 +73 5 29 11.71 9.96 9.96 3.96 8.50 5.00 2.96 5.75 6.17 3.58 9.08 7.08 +73 5 30 11.04 12.08 9.38 6.25 11.12 7.41 9.21 9.17 9.71 8.00 14.37 13.08 +73 5 31 18.25 14.29 11.25 7.92 12.46 7.17 8.00 7.71 9.29 9.42 11.92 16.71 +73 6 1 14.92 11.34 10.54 5.25 11.21 7.79 8.12 9.54 8.71 9.67 16.46 17.21 +73 6 2 14.92 13.79 14.50 6.50 13.92 8.46 8.58 8.17 10.25 7.25 11.87 8.75 +73 6 3 9.17 7.41 10.21 5.91 10.34 7.17 6.87 7.79 8.38 7.38 10.13 12.83 +73 6 4 3.37 4.08 5.66 2.13 4.08 1.08 3.17 2.04 1.54 1.13 5.29 7.62 +73 6 5 3.79 5.21 5.21 1.46 5.63 4.17 3.71 4.63 4.38 2.50 13.37 13.25 +73 6 6 5.09 3.13 7.62 3.00 4.21 1.63 3.21 1.79 2.79 0.96 8.92 10.75 +73 6 7 4.50 4.25 5.58 2.37 5.66 1.96 1.04 3.21 2.04 1.75 5.25 5.04 +73 6 8 11.42 6.79 4.50 3.96 9.42 6.13 6.63 5.79 7.17 4.00 11.12 13.62 +73 6 9 12.00 10.54 7.75 8.08 14.88 10.46 14.79 11.75 12.04 10.75 15.25 20.33 +73 6 10 12.71 8.42 7.87 6.87 11.79 8.79 10.00 8.46 8.96 8.25 10.88 12.38 +73 6 11 9.96 7.96 9.92 4.46 10.21 7.25 9.67 9.33 9.92 7.83 17.37 18.63 +73 6 12 16.17 16.75 16.29 9.87 14.83 12.33 13.75 16.33 13.83 15.59 23.13 27.16 +73 6 13 9.29 8.17 8.79 6.38 10.34 7.96 11.04 8.92 10.17 11.54 13.17 21.50 +73 6 14 7.12 13.25 9.00 5.54 7.96 6.29 5.37 7.41 5.46 5.75 18.05 12.29 +73 6 15 10.37 12.58 11.54 7.46 11.17 8.75 8.17 8.58 10.00 10.41 12.83 15.46 +73 6 16 12.54 14.96 13.17 7.17 11.92 9.71 9.04 11.71 9.29 11.71 20.30 17.92 +73 6 17 11.96 10.25 11.21 5.75 11.25 9.17 11.21 9.83 10.37 8.71 15.21 13.46 +73 6 18 10.96 12.71 11.92 5.88 9.92 8.38 7.79 13.08 8.38 9.29 20.25 17.29 +73 6 19 16.38 12.62 11.04 7.92 15.75 9.08 10.00 10.13 11.04 11.08 16.62 17.12 +73 6 20 14.50 6.54 13.67 7.62 10.17 7.08 10.88 4.17 9.67 8.67 8.83 12.04 +73 6 21 6.38 6.96 6.54 1.67 4.75 2.54 3.04 5.71 3.21 2.54 14.67 4.63 +73 6 22 6.92 4.46 5.71 3.00 7.00 4.42 2.75 4.54 5.75 4.92 12.87 7.92 +73 6 23 10.29 5.04 7.92 4.58 5.71 3.04 4.50 3.04 4.29 3.37 6.50 8.83 +73 6 24 6.54 3.21 4.46 1.87 4.79 2.08 2.71 1.46 1.96 2.67 7.21 5.09 +73 6 25 4.92 6.58 5.13 1.92 5.66 2.46 2.54 3.79 4.12 4.71 9.25 9.21 +73 6 26 3.75 4.67 13.13 3.13 5.54 2.46 3.63 1.42 3.71 2.13 4.21 5.41 +73 6 27 4.50 6.29 12.00 2.83 5.58 3.37 2.67 3.00 4.46 3.63 7.17 9.21 +73 6 28 14.21 9.87 10.25 3.75 8.29 5.41 5.96 9.75 7.38 7.71 17.41 13.17 +73 6 29 18.05 16.50 16.21 8.46 12.92 11.58 13.21 13.88 12.00 13.21 19.21 17.79 +73 6 30 19.46 12.42 16.66 13.04 11.25 12.08 12.79 9.83 13.17 15.21 18.05 17.33 +73 7 1 14.71 8.17 13.62 9.21 8.50 7.67 10.79 3.63 9.54 8.92 8.67 8.04 +73 7 2 8.00 12.17 7.75 5.37 9.83 7.33 6.00 7.79 6.92 6.08 15.50 10.00 +73 7 3 11.21 8.75 11.50 8.08 6.00 6.13 9.38 7.50 6.58 7.54 13.75 16.83 +73 7 4 4.50 9.83 6.08 3.75 3.58 2.75 3.58 5.21 3.33 4.79 11.67 9.21 +73 7 5 6.96 10.04 5.29 4.67 8.96 8.00 5.91 9.29 7.21 9.08 18.84 16.29 +73 7 6 16.21 11.21 7.25 6.42 10.04 6.54 6.42 4.04 7.83 8.58 9.33 12.54 +73 7 7 6.54 4.71 8.25 4.25 5.75 3.83 4.33 2.92 5.58 5.09 6.83 9.75 +73 7 8 4.88 9.13 5.13 3.58 4.21 3.71 4.08 3.96 3.29 3.46 14.50 7.38 +73 7 9 8.71 8.46 9.83 3.37 7.87 5.41 5.50 5.83 5.91 6.71 13.13 12.38 +73 7 10 5.91 4.96 6.79 4.50 9.50 6.71 10.00 4.63 9.25 5.83 13.00 13.88 +73 7 11 13.29 8.04 9.50 5.83 10.58 7.62 10.92 7.50 11.04 9.17 11.00 13.17 +73 7 12 5.96 5.91 6.75 2.88 8.25 4.58 5.54 6.25 6.34 4.63 12.92 11.08 +73 7 13 6.54 7.41 8.04 3.13 8.12 5.41 5.63 5.00 6.42 5.09 7.92 10.04 +73 7 14 4.92 6.63 5.04 2.62 6.08 2.62 5.09 3.25 3.46 2.08 6.17 9.50 +73 7 15 8.12 5.75 8.83 3.96 7.67 7.17 11.96 9.33 9.75 11.21 14.21 15.25 +73 7 16 10.37 14.37 16.04 11.04 14.92 12.79 17.92 13.88 12.58 15.67 18.50 18.54 +73 7 17 15.34 13.21 10.92 7.83 11.92 7.71 7.54 10.25 9.38 10.79 15.12 14.92 +73 7 18 12.08 9.08 10.75 4.67 9.96 6.42 6.58 6.96 7.04 5.75 11.38 10.29 +73 7 19 13.62 11.67 9.75 8.63 14.83 9.50 12.12 10.41 11.71 9.13 15.25 17.29 +73 7 20 11.63 9.50 8.75 5.79 12.21 8.71 10.50 7.71 9.62 10.34 15.59 13.17 +73 7 21 16.17 10.17 9.21 6.50 10.79 7.29 8.38 8.87 9.00 9.17 14.37 18.79 +73 7 22 7.17 3.33 9.83 4.33 7.54 5.71 8.33 5.71 8.42 6.63 10.17 13.67 +73 7 23 5.29 2.83 4.67 3.67 6.00 4.00 7.00 4.38 7.12 5.29 8.17 6.46 +73 7 24 1.25 6.00 3.42 0.96 2.33 0.13 1.42 1.13 2.67 1.29 4.33 3.88 +73 7 25 9.50 8.71 7.29 3.83 7.00 4.08 4.79 3.42 5.75 6.08 8.25 10.34 +73 7 26 9.00 6.25 6.50 4.04 6.83 4.21 6.29 4.21 6.54 7.25 6.21 13.75 +73 7 27 5.21 4.67 7.17 3.79 6.04 3.58 4.71 3.58 6.13 7.54 3.58 8.33 +73 7 28 5.63 4.21 9.29 3.21 5.41 2.50 2.37 2.83 3.46 2.17 6.21 4.38 +73 7 29 4.46 4.88 8.54 2.42 6.29 2.21 2.25 1.96 2.75 2.00 5.37 4.25 +73 7 30 8.12 4.71 4.38 2.29 5.58 1.87 2.08 2.21 4.46 3.75 7.92 9.96 +73 7 31 5.58 5.46 4.38 3.46 3.17 2.79 3.08 6.50 3.67 5.00 16.46 12.50 +73 8 1 7.46 10.17 8.38 3.58 6.00 6.58 5.09 7.29 5.09 5.33 11.79 13.62 +73 8 2 4.63 4.79 8.71 4.38 6.71 5.09 5.41 4.33 6.87 5.37 9.33 10.92 +73 8 3 12.17 8.08 8.75 6.13 11.46 7.96 7.79 7.50 8.50 9.00 13.33 16.17 +73 8 4 16.38 14.88 13.75 7.29 14.12 10.00 11.83 9.04 10.92 9.71 15.34 16.04 +73 8 5 7.33 5.71 8.87 5.41 7.38 5.33 8.38 4.67 6.87 8.17 13.54 14.79 +73 8 6 17.67 13.62 16.83 9.17 15.21 8.50 11.79 8.33 10.29 10.13 15.29 15.63 +73 8 7 15.92 15.37 11.75 7.87 14.67 9.75 12.21 10.46 12.83 10.83 15.67 17.50 +73 8 8 12.75 11.83 10.37 5.33 9.33 6.92 7.54 6.50 7.62 6.58 13.54 14.00 +73 8 9 18.75 16.42 17.00 10.75 15.63 13.67 15.63 15.29 15.16 15.96 23.33 28.79 +73 8 10 6.71 2.88 8.58 3.08 3.54 1.83 3.83 0.71 2.75 1.58 5.46 8.87 +73 8 11 5.58 2.46 14.25 2.96 2.29 0.71 2.83 0.92 1.25 1.29 4.79 5.33 +73 8 12 4.67 4.71 5.63 3.04 3.46 3.67 3.21 2.37 4.58 5.46 4.38 9.67 +73 8 13 5.58 3.21 4.71 2.42 5.71 4.04 3.42 2.29 4.00 2.83 6.34 7.58 +73 8 14 7.38 4.04 8.17 1.33 3.92 2.17 2.42 2.13 4.63 3.50 2.42 7.17 +73 8 15 6.54 1.54 6.54 1.67 3.29 1.83 2.54 1.92 4.38 4.25 3.58 3.88 +73 8 16 5.00 5.04 6.25 2.62 5.37 3.75 4.21 5.00 5.09 4.08 10.92 10.29 +73 8 17 11.08 7.67 7.58 4.92 5.88 3.00 5.83 3.96 6.50 5.37 8.67 16.21 +73 8 18 5.54 9.42 5.91 2.71 4.58 1.63 3.17 1.54 1.83 1.54 5.50 8.38 +73 8 19 7.46 8.71 9.59 3.63 8.83 5.29 3.96 5.21 5.96 2.50 9.71 12.96 +73 8 20 2.42 2.00 6.87 2.62 5.88 3.58 7.17 3.13 5.21 5.88 9.71 13.88 +73 8 21 6.75 6.04 8.46 3.04 6.75 4.29 7.71 7.00 7.50 6.08 8.58 14.09 +73 8 22 7.17 8.38 9.29 5.21 7.25 5.09 5.91 4.12 4.96 5.13 9.21 13.00 +73 8 23 2.54 2.25 5.13 1.75 4.29 0.87 2.25 1.04 1.50 1.21 5.33 4.46 +73 8 24 3.88 6.13 3.54 1.33 4.67 1.08 1.38 1.38 1.96 2.17 5.71 5.13 +73 8 25 3.29 4.79 4.54 1.21 6.17 1.58 0.71 3.29 1.75 1.58 6.79 8.12 +73 8 26 5.46 7.29 6.79 4.04 5.21 3.21 3.21 2.00 3.54 4.25 9.83 5.46 +73 8 27 16.33 9.67 9.79 5.88 10.37 5.50 2.92 4.04 6.08 5.41 10.75 13.42 +73 8 28 9.21 7.79 7.83 2.58 5.04 2.46 3.67 5.63 3.17 3.75 14.79 8.92 +73 8 29 14.17 12.12 10.08 6.04 10.63 6.21 5.75 6.75 7.38 6.29 13.79 15.79 +73 8 30 12.50 11.21 9.25 6.42 11.04 7.21 10.41 7.54 8.87 8.33 14.21 17.58 +73 8 31 15.29 15.71 15.71 7.87 19.00 11.87 15.41 15.00 14.29 14.54 24.25 24.54 +73 9 1 12.96 11.00 11.63 7.38 13.46 9.17 11.96 9.83 12.54 10.67 18.91 23.87 +73 9 2 12.08 13.67 11.25 4.92 10.17 5.79 5.04 3.58 5.58 5.13 10.54 17.08 +73 9 3 14.12 15.21 14.71 6.17 8.12 6.21 3.71 4.92 5.41 3.04 5.50 6.50 +73 9 4 6.34 12.38 8.54 5.58 9.38 7.21 6.13 10.46 7.71 9.54 12.29 7.21 +73 9 5 4.54 8.87 5.96 1.96 4.92 3.37 2.83 4.88 3.37 2.25 14.09 9.50 +73 9 6 8.96 10.88 10.58 4.42 8.29 6.71 5.63 10.79 7.21 8.04 19.58 18.12 +73 9 7 3.88 9.92 7.25 1.79 5.17 3.13 4.92 6.25 4.29 6.00 16.38 13.70 +73 9 8 8.50 3.83 6.87 1.04 5.37 1.83 1.83 1.25 2.83 1.79 9.50 5.96 +73 9 9 5.25 0.83 11.83 1.92 3.17 1.42 2.04 2.46 2.88 3.00 9.42 6.83 +73 9 10 9.46 1.75 15.50 3.25 6.08 5.66 6.79 4.29 6.63 3.50 8.08 9.92 +73 9 11 10.92 11.08 6.50 2.79 8.79 2.54 4.88 4.50 3.96 3.21 6.08 8.92 +73 9 12 11.71 11.50 10.41 4.12 9.33 4.96 4.04 7.17 5.88 4.42 8.50 6.92 +73 9 13 14.92 10.34 15.96 6.21 8.67 6.71 10.17 9.67 7.75 4.71 9.67 11.42 +73 9 14 17.12 13.04 14.58 5.75 9.87 7.83 5.00 10.17 8.92 7.04 10.79 16.79 +73 9 15 16.04 14.12 11.21 6.83 14.71 9.79 6.79 12.75 10.04 7.54 14.83 17.12 +73 9 16 11.50 7.46 13.59 5.79 6.25 6.25 6.04 7.04 7.67 6.21 10.83 12.50 +73 9 17 9.83 10.00 9.46 2.54 9.33 6.00 8.42 7.41 7.17 6.00 14.96 12.50 +73 9 18 17.04 11.54 17.79 4.42 9.25 5.00 6.25 4.08 4.46 2.96 8.29 10.34 +73 9 19 6.04 3.58 7.75 3.71 3.00 2.75 6.29 3.67 4.79 4.04 7.21 10.58 +73 9 20 5.13 6.79 9.42 3.75 5.71 2.54 2.96 3.92 3.63 2.96 6.17 8.54 +73 9 21 11.12 10.75 10.88 5.54 8.42 6.67 9.17 7.04 8.25 6.00 12.50 11.87 +73 9 22 16.83 15.67 14.75 8.50 11.58 8.21 11.71 8.29 10.13 8.29 15.54 19.38 +73 9 23 8.79 7.17 10.92 4.75 6.38 2.54 6.25 2.54 4.67 4.58 7.79 10.88 +73 9 24 12.33 13.25 10.00 3.79 9.25 5.17 4.12 7.29 5.13 4.33 12.67 16.96 +73 9 25 8.87 10.37 9.00 2.79 7.00 2.67 5.66 5.79 4.04 4.42 13.62 12.67 +73 9 26 10.83 9.13 11.08 5.79 8.92 5.71 8.12 5.66 6.87 6.79 13.21 16.42 +73 9 27 16.62 18.91 14.54 9.21 18.34 11.04 14.75 13.96 13.00 13.67 19.08 24.92 +73 9 28 16.21 23.21 13.21 9.79 17.71 9.08 16.42 11.00 11.21 11.63 17.79 22.08 +73 9 29 22.88 20.04 16.71 12.79 16.33 9.79 13.50 13.46 12.62 12.17 19.55 29.29 +73 9 30 18.16 12.62 17.16 8.54 10.04 6.17 10.17 7.33 8.71 9.42 11.12 20.21 +73 10 1 10.08 8.38 8.21 3.42 6.08 2.46 6.21 4.46 4.33 5.46 8.08 13.33 +73 10 2 8.33 5.96 12.83 5.04 5.46 2.17 3.58 3.50 3.75 4.29 3.88 6.04 +73 10 3 10.92 6.13 19.87 6.38 8.00 6.21 7.17 5.83 6.50 4.08 8.63 4.88 +73 10 4 11.42 7.67 12.42 4.29 7.33 4.79 3.88 6.96 5.63 5.13 7.62 13.88 +73 10 5 8.75 3.46 11.42 3.71 6.17 4.67 6.38 5.41 7.17 5.33 5.09 10.79 +73 10 6 13.67 4.67 9.33 4.29 7.54 3.04 4.25 3.29 2.96 3.75 4.54 9.13 +73 10 7 5.75 5.46 6.17 2.25 5.37 2.29 3.00 3.96 3.71 3.83 9.50 10.79 +73 10 8 12.33 12.17 11.67 5.37 9.00 5.79 7.17 6.42 6.34 6.38 11.42 15.54 +73 10 9 10.67 10.50 12.04 4.50 9.71 4.38 5.09 3.83 6.13 5.29 8.25 14.12 +73 10 10 10.34 11.08 15.79 5.17 10.46 7.79 6.96 9.00 7.33 7.75 13.04 17.75 +73 10 11 16.25 18.96 18.58 5.79 11.38 8.25 9.92 12.08 9.00 6.63 12.17 15.04 +73 10 12 21.59 22.25 22.63 9.00 19.38 11.75 12.62 14.67 10.50 8.17 16.21 18.21 +73 10 13 17.04 12.62 17.62 6.83 11.38 5.88 9.42 12.83 9.38 9.67 14.33 20.75 +73 10 14 13.17 10.34 8.50 2.42 7.62 4.50 2.58 10.04 5.17 6.13 12.00 15.83 +73 10 15 10.63 10.88 14.00 4.25 8.75 6.04 10.25 10.83 8.33 9.71 11.96 16.21 +73 10 16 18.84 15.54 24.67 8.29 10.17 8.00 10.21 8.04 8.08 9.04 14.12 20.75 +73 10 17 10.92 4.92 11.17 4.79 7.33 3.37 7.96 5.63 8.17 8.75 11.92 22.83 +73 10 18 10.54 6.75 9.42 4.42 9.96 7.33 10.46 8.92 8.04 8.50 15.34 17.46 +73 10 19 13.62 10.46 10.04 7.17 13.54 8.12 13.37 10.71 11.75 10.75 13.96 21.62 +73 10 20 17.41 13.83 11.34 8.00 14.54 9.21 12.17 10.75 12.50 12.50 15.25 22.58 +73 10 21 9.04 7.00 7.17 2.46 7.33 4.08 6.54 4.67 5.54 7.17 10.29 16.25 +73 10 22 12.67 7.38 9.62 3.83 8.42 5.46 7.12 6.87 7.83 7.67 11.46 17.46 +73 10 23 4.92 5.71 4.46 0.67 4.88 3.42 3.88 6.08 3.25 6.63 12.33 14.50 +73 10 24 10.46 11.79 8.17 2.46 7.41 4.75 4.50 8.63 4.54 8.92 17.54 20.38 +73 10 25 5.63 8.75 5.83 2.21 6.13 3.13 1.79 5.29 3.42 5.75 13.33 12.38 +73 10 26 11.75 10.08 8.04 3.46 9.46 4.83 3.58 6.92 4.96 7.83 13.75 16.17 +73 10 27 8.46 9.59 9.71 2.62 6.46 3.63 3.79 6.34 3.50 5.37 11.00 13.92 +73 10 28 6.83 9.83 11.08 2.96 6.87 2.83 3.21 2.71 3.79 5.04 5.04 11.83 +73 10 29 7.21 5.83 4.17 0.50 3.63 0.46 1.58 1.46 0.42 2.92 4.88 12.83 +73 10 30 13.75 14.50 8.12 2.75 10.75 4.71 2.62 6.21 4.25 6.58 7.08 9.25 +73 10 31 14.50 13.13 13.50 5.75 11.46 7.54 8.87 9.00 7.62 8.58 9.50 11.12 +73 11 1 10.79 12.75 9.59 3.58 7.87 5.50 5.17 6.34 5.09 4.33 4.75 10.63 +73 11 2 12.83 12.58 8.92 5.21 11.08 6.96 4.54 7.54 6.42 8.50 7.79 12.83 +73 11 3 11.92 12.62 10.25 4.54 9.92 7.04 5.54 6.75 5.41 6.75 5.71 11.00 +73 11 4 12.83 10.58 12.21 6.92 8.54 3.96 6.50 6.58 4.92 5.66 13.21 17.88 +73 11 5 14.42 14.83 11.67 8.17 11.17 7.08 10.41 7.33 9.54 9.17 14.25 27.92 +73 11 6 6.83 6.67 6.46 3.46 5.58 3.75 6.08 4.79 6.50 5.71 9.50 17.00 +73 11 7 12.33 13.92 11.83 5.96 13.42 9.46 10.46 10.96 12.17 11.58 18.38 22.79 +73 11 8 17.12 15.75 17.33 6.13 17.71 13.62 16.66 19.04 17.29 20.04 24.25 26.75 +73 11 9 22.54 18.54 20.04 11.87 14.83 10.58 13.67 9.00 14.21 5.96 4.63 9.92 +73 11 10 16.88 12.83 11.42 6.67 11.71 5.88 8.83 7.62 10.00 7.33 13.79 17.50 +73 11 11 9.83 9.62 10.04 4.79 8.08 6.67 9.00 8.21 8.79 9.67 14.42 24.54 +73 11 12 19.79 19.21 16.21 13.29 22.50 16.21 20.75 17.46 20.04 20.79 24.00 33.71 +73 11 13 13.21 13.62 9.79 9.87 17.04 12.42 12.87 12.17 13.46 13.75 18.88 27.29 +73 11 14 12.67 16.08 9.33 7.41 13.17 6.71 7.38 7.75 8.58 7.79 11.50 19.25 +73 11 15 7.71 11.25 6.63 4.29 8.17 4.42 7.87 8.17 8.83 9.83 11.83 21.17 +73 11 16 9.46 8.12 9.04 3.96 6.63 4.04 6.21 4.92 5.58 7.29 9.59 19.70 +73 11 17 13.96 10.21 8.17 3.17 11.12 6.87 2.75 7.54 6.79 6.83 14.17 16.62 +73 11 18 13.59 9.83 15.04 7.12 10.75 7.50 10.04 11.25 12.33 13.75 16.71 24.37 +73 11 19 8.50 5.91 10.13 3.17 6.58 1.71 4.33 4.29 4.58 7.62 5.83 18.38 +73 11 20 6.46 6.08 6.92 0.46 7.33 2.46 0.63 2.42 1.92 2.46 3.08 8.87 +73 11 21 6.67 8.33 7.54 2.42 8.08 3.25 0.00 3.42 4.92 2.79 8.25 13.50 +73 11 22 6.50 5.71 8.21 2.00 5.63 2.79 3.29 2.75 5.17 4.50 5.88 16.04 +73 11 23 5.41 4.92 6.25 3.25 7.75 4.46 8.38 6.63 8.58 8.58 11.63 18.41 +73 11 24 10.75 12.87 10.04 8.33 15.21 8.38 13.04 12.00 12.96 14.79 15.16 26.83 +73 11 25 9.71 8.21 10.92 3.92 7.08 2.21 4.67 4.33 5.13 6.34 10.17 21.21 +73 11 26 7.21 1.71 12.92 3.29 5.33 0.83 7.62 2.96 5.71 8.12 8.46 23.58 +73 11 27 8.96 8.71 9.00 3.21 8.46 3.00 4.46 3.79 5.17 4.79 9.08 11.42 +73 11 28 16.46 17.04 10.37 8.17 16.88 8.33 7.50 10.25 9.38 7.25 15.63 14.33 +73 11 29 9.17 8.08 10.25 3.63 9.33 2.83 2.33 4.21 3.96 2.33 5.37 7.50 +73 11 30 11.71 9.46 11.87 3.29 6.96 5.50 4.79 8.12 7.92 5.04 9.08 12.29 +73 12 1 16.29 12.29 17.29 3.96 11.92 9.54 9.13 9.00 5.58 7.41 11.08 15.71 +73 12 2 4.83 5.96 6.54 1.17 4.67 3.29 7.46 3.54 5.79 4.46 9.59 15.04 +73 12 3 14.21 10.29 9.08 7.12 10.88 5.96 14.21 10.46 11.04 9.62 13.92 22.04 +73 12 4 13.70 6.17 14.50 7.58 9.62 7.17 14.09 9.21 9.54 12.62 11.71 19.83 +73 12 5 8.79 8.42 8.96 3.37 6.75 5.41 9.62 9.00 9.25 9.46 13.42 19.46 +73 12 6 13.29 11.92 7.79 4.12 9.04 4.79 10.34 6.08 8.12 9.04 8.79 19.38 +73 12 7 19.75 22.54 12.75 9.25 20.00 10.54 11.92 11.29 10.29 7.21 16.58 16.96 +73 12 8 17.67 12.79 17.62 7.83 10.88 7.38 12.33 5.88 7.46 8.67 10.21 18.54 +73 12 9 12.75 12.96 9.17 1.63 11.12 8.58 8.96 9.92 10.37 10.00 17.83 23.45 +73 12 10 23.91 16.17 18.75 10.46 13.13 12.92 15.92 12.38 14.17 16.71 17.71 22.71 +73 12 11 10.00 11.25 8.04 4.38 8.17 5.25 10.88 6.17 8.79 8.12 13.00 20.12 +73 12 12 16.38 17.62 12.67 11.67 18.00 11.58 18.88 17.50 15.25 16.17 23.00 29.71 +73 12 13 27.29 20.83 11.71 15.41 23.29 13.70 19.25 18.21 16.42 20.75 17.92 30.96 +73 12 14 19.12 11.71 15.16 10.58 13.79 8.67 14.29 8.17 12.04 14.83 12.33 26.38 +73 12 15 11.04 12.46 11.67 3.92 11.21 6.96 14.33 9.25 10.96 10.96 17.12 21.87 +73 12 16 17.83 13.67 11.96 6.71 13.33 8.71 16.79 10.63 13.08 13.83 18.54 31.49 +73 12 17 12.75 11.17 8.67 4.79 10.04 6.75 11.96 7.79 10.13 9.21 13.96 25.12 +73 12 18 13.59 14.58 12.08 3.17 9.75 6.13 7.41 6.38 7.50 6.04 8.63 15.87 +73 12 19 17.29 14.50 23.29 9.50 11.71 10.88 18.25 9.83 13.96 14.25 7.87 23.67 +73 12 20 13.29 18.88 6.92 2.67 10.00 1.13 2.92 7.75 4.46 3.83 19.33 11.46 +73 12 21 14.42 14.46 8.42 3.58 8.79 2.21 4.88 2.42 5.04 3.75 7.25 7.41 +73 12 22 6.71 4.71 6.87 1.25 4.42 1.79 3.21 4.79 5.46 6.21 7.21 8.25 +73 12 23 11.83 8.17 8.21 3.08 5.58 0.54 3.04 4.17 4.04 4.96 6.17 17.12 +73 12 24 9.62 8.42 9.59 4.00 6.67 3.17 3.92 3.75 4.54 4.46 5.58 7.75 +73 12 25 3.00 4.83 7.71 1.42 8.08 4.92 11.17 7.96 9.67 9.38 11.71 19.25 +73 12 26 6.96 8.25 6.54 4.04 9.21 6.29 11.96 7.38 9.33 8.79 12.92 18.91 +73 12 27 12.46 10.46 12.96 6.04 11.21 8.92 10.96 11.63 11.54 12.12 15.71 22.79 +73 12 28 15.59 14.17 11.67 5.83 10.13 8.17 9.13 7.62 8.33 5.91 14.50 17.71 +73 12 29 21.12 18.58 20.12 12.08 16.00 14.00 16.33 15.96 16.13 18.34 24.54 29.04 +73 12 30 7.62 6.42 6.04 2.13 6.50 3.25 8.71 3.67 5.63 7.54 10.58 17.79 +73 12 31 10.67 10.04 6.87 1.46 6.96 5.75 3.83 6.21 4.75 6.13 12.79 15.79 +74 1 1 23.21 16.54 16.08 9.75 15.83 11.46 9.54 13.54 13.83 16.66 17.21 25.29 +74 1 2 26.63 22.34 25.62 15.37 21.59 16.83 15.34 17.83 19.83 19.79 22.29 26.87 +74 1 3 20.46 10.92 21.62 10.75 11.92 13.04 15.00 11.67 17.79 17.58 11.42 26.79 +74 1 4 26.08 17.71 24.58 15.71 15.92 14.21 14.04 13.96 17.88 19.58 20.67 24.08 +74 1 5 24.46 13.50 20.25 13.33 13.13 11.79 12.62 10.29 16.46 17.92 17.46 24.67 +74 1 6 21.09 16.66 15.21 7.54 13.70 8.71 9.04 9.71 10.92 11.96 19.17 19.00 +74 1 7 20.04 16.50 14.75 9.21 13.46 8.46 11.46 7.75 11.87 11.08 19.08 15.34 +74 1 8 19.75 17.37 16.29 11.75 16.62 10.13 13.33 11.87 14.33 14.67 23.38 24.92 +74 1 9 6.50 10.63 6.83 1.21 10.21 5.00 7.29 6.04 7.71 7.29 13.88 17.75 +74 1 10 28.75 26.63 24.58 16.17 23.00 16.79 16.92 19.67 19.50 21.54 31.08 31.75 +74 1 11 28.62 26.30 22.21 15.87 23.13 16.04 20.25 19.92 19.00 19.83 30.21 31.20 +74 1 12 27.58 22.75 21.21 15.54 22.42 17.67 20.83 18.54 20.08 21.09 26.04 32.30 +74 1 13 18.91 16.42 15.16 8.21 14.42 9.71 13.92 9.96 12.08 13.33 16.42 23.21 +74 1 14 25.70 24.33 21.37 11.79 16.88 10.00 13.67 10.79 12.33 12.58 15.71 20.62 +74 1 15 15.83 18.00 14.42 9.33 16.21 11.54 17.16 14.62 14.88 14.25 22.42 25.29 +74 1 16 31.75 22.67 23.21 12.96 19.17 13.13 16.96 12.71 13.70 14.29 18.08 28.79 +74 1 17 20.96 20.79 17.37 9.96 21.96 14.09 19.00 14.96 18.16 14.37 26.16 27.21 +74 1 18 18.16 16.46 13.42 9.46 20.67 14.04 20.62 15.75 18.16 17.50 25.21 31.20 +74 1 19 18.16 15.87 13.33 7.12 11.04 8.46 15.46 15.09 14.21 15.79 24.17 26.50 +74 1 20 18.79 16.21 15.63 9.33 13.59 8.42 7.25 11.04 12.71 12.00 21.84 25.96 +74 1 21 11.17 10.54 11.04 4.42 8.29 5.13 5.75 5.79 7.17 5.33 4.67 10.00 +74 1 22 13.46 13.08 13.88 6.79 10.08 8.08 8.71 10.08 13.00 12.25 16.62 19.58 +74 1 23 15.83 16.71 14.04 8.75 14.96 10.08 15.54 12.17 13.62 15.00 23.38 26.87 +74 1 24 12.79 10.96 9.79 5.79 10.08 7.12 12.04 9.17 10.13 10.21 16.46 20.54 +74 1 25 24.75 19.08 17.71 10.96 13.88 11.08 13.83 12.46 13.67 14.25 18.75 22.08 +74 1 26 22.25 17.83 18.91 12.08 16.42 11.79 15.46 12.38 16.04 16.58 18.71 21.34 +74 1 27 23.04 21.96 19.04 12.83 19.29 14.33 15.96 17.25 14.96 16.21 19.41 25.84 +74 1 28 19.92 17.50 18.58 12.58 18.91 12.58 20.41 15.54 19.04 23.75 25.96 38.79 +74 1 29 27.58 19.70 21.29 13.21 16.88 11.92 15.46 13.67 15.63 16.66 18.79 26.20 +74 1 30 14.92 13.33 16.54 7.92 10.54 6.79 10.00 9.87 11.17 11.00 18.46 19.04 +74 1 31 23.58 17.04 19.00 11.34 17.41 11.83 14.62 12.29 15.59 13.54 14.71 22.75 +74 2 1 21.59 16.54 21.09 13.04 13.96 12.33 15.92 12.46 16.04 16.50 9.46 22.67 +74 2 2 18.58 20.58 14.54 10.63 18.84 10.71 15.09 13.04 13.29 10.46 19.21 16.25 +74 2 3 13.88 13.37 11.08 5.54 12.17 8.12 10.29 9.54 10.50 9.79 14.37 19.29 +74 2 4 9.25 5.46 8.00 4.12 7.79 4.04 9.50 4.50 8.58 6.67 11.50 17.96 +74 2 5 11.63 12.00 7.71 2.88 8.50 5.71 8.25 6.63 8.46 7.75 12.83 16.96 +74 2 6 24.08 21.75 13.13 9.59 14.96 8.00 12.21 8.87 10.34 9.33 16.96 19.79 +74 2 7 11.38 9.96 8.63 5.04 7.67 4.04 6.83 5.17 6.67 6.04 8.46 14.09 +74 2 8 19.55 20.25 17.92 8.46 15.12 11.46 13.62 13.88 14.96 11.50 19.70 23.79 +74 2 9 21.67 20.30 16.38 9.08 15.12 9.67 14.17 10.96 13.33 12.17 18.50 20.75 +74 2 10 28.84 27.04 23.71 17.29 21.59 16.71 19.79 20.62 19.50 22.58 27.63 29.08 +74 2 11 14.67 11.63 13.21 6.17 11.71 6.04 11.38 10.17 9.04 9.87 17.33 20.67 +74 2 12 10.25 8.67 8.12 2.67 9.33 5.25 8.92 7.12 8.54 8.17 9.25 16.25 +74 2 13 12.00 10.83 8.71 5.37 8.75 5.88 7.71 7.29 6.38 7.38 7.00 8.38 +74 2 14 22.21 19.46 18.71 8.33 15.37 11.21 11.96 11.58 14.09 13.04 14.46 20.58 +74 2 15 16.58 10.71 17.04 8.04 11.12 8.08 11.83 8.04 11.34 12.00 5.13 15.87 +74 2 16 23.38 21.62 14.12 13.08 16.92 11.29 15.92 16.54 13.13 16.33 19.95 22.95 +74 2 17 10.00 7.96 9.33 4.29 4.75 2.71 7.08 4.21 4.88 5.58 5.58 11.25 +74 2 18 10.17 14.71 5.17 2.29 8.54 4.46 3.58 3.79 5.25 4.08 9.54 11.12 +74 2 19 11.04 9.79 8.17 4.63 6.38 1.25 3.37 3.42 5.63 2.96 5.54 8.71 +74 2 20 6.38 4.17 8.12 2.00 6.58 4.63 10.88 9.21 8.38 7.12 10.75 18.12 +74 2 21 9.83 11.29 10.17 5.29 10.75 8.12 11.96 11.12 11.92 11.12 15.92 21.42 +74 2 22 15.16 11.63 11.79 8.12 13.00 7.21 12.71 11.08 10.13 9.83 14.29 22.92 +74 2 23 4.17 0.63 7.41 2.67 5.41 1.00 7.00 3.71 4.17 3.58 5.79 10.67 +74 2 24 1.54 7.25 2.37 1.63 4.00 1.13 2.13 6.17 3.29 5.50 11.08 13.96 +74 2 25 1.42 1.42 2.50 0.58 1.50 0.50 4.63 3.29 2.71 3.33 5.37 11.29 +74 2 26 6.42 5.96 6.71 0.63 3.75 0.58 2.29 1.46 1.54 2.13 2.13 3.17 +74 2 27 7.50 8.67 6.92 1.58 7.79 3.33 3.79 5.13 3.58 5.37 8.42 11.34 +74 2 28 16.96 15.00 14.62 7.87 15.16 9.00 12.12 11.21 12.29 13.08 14.67 23.67 +74 3 1 12.67 11.50 10.04 7.08 9.75 6.46 12.04 7.67 8.17 7.08 8.50 15.34 +74 3 2 10.04 8.75 6.58 1.71 7.38 1.46 7.83 3.50 3.96 3.33 5.83 10.13 +74 3 3 13.46 8.79 14.21 5.91 6.50 4.17 9.83 4.79 6.42 9.13 6.96 15.67 +74 3 4 10.29 3.17 12.21 5.58 5.29 1.63 9.33 5.04 7.04 5.66 2.37 16.21 +74 3 5 10.17 9.75 6.63 2.79 7.21 3.79 3.83 6.83 5.04 4.21 7.79 10.34 +74 3 6 18.96 19.83 18.63 8.50 13.00 11.34 12.54 9.54 12.79 11.58 12.92 17.54 +74 3 7 15.75 19.79 13.08 9.75 15.87 11.63 9.17 15.34 14.09 13.62 20.33 21.79 +74 3 8 14.96 21.17 13.75 6.42 16.25 9.83 9.13 13.62 11.21 9.87 15.75 19.00 +74 3 9 10.41 10.13 16.54 4.96 8.63 5.71 11.46 9.83 8.83 6.75 10.58 19.21 +74 3 10 11.58 6.87 22.50 7.17 7.92 5.88 12.79 8.38 9.04 8.83 8.04 23.04 +74 3 11 9.17 6.58 14.79 5.25 7.87 6.38 11.38 11.58 7.79 8.08 10.79 24.87 +74 3 12 10.46 8.92 9.75 3.54 5.41 3.00 5.25 9.17 5.63 6.83 9.33 20.30 +74 3 13 5.25 2.29 6.08 2.50 4.33 0.33 4.04 1.75 2.96 3.25 2.54 7.12 +74 3 14 10.79 12.21 10.67 5.83 10.79 7.29 7.38 10.13 8.29 8.87 11.38 16.33 +74 3 15 15.34 16.88 13.83 10.58 16.71 10.75 14.04 13.96 12.46 9.50 16.62 13.25 +74 3 16 16.08 17.08 15.00 11.54 17.96 12.62 18.96 17.79 14.96 14.75 22.67 19.67 +74 3 17 19.41 17.33 17.21 10.25 16.17 9.83 15.75 16.00 14.29 13.46 21.87 23.96 +74 3 18 17.16 17.29 14.71 6.87 12.96 8.58 11.29 13.79 12.04 11.63 19.75 21.25 +74 3 19 15.79 16.17 16.71 7.71 10.92 7.50 8.12 10.46 9.21 8.54 14.25 14.58 +74 3 20 11.29 9.92 5.63 5.17 8.21 3.54 4.92 6.54 5.25 4.88 6.25 8.71 +74 3 21 12.12 15.00 9.96 6.71 11.08 7.25 4.38 11.58 9.54 8.42 17.12 16.71 +74 3 22 12.87 13.08 8.96 6.50 12.21 8.96 6.71 12.50 10.96 8.79 15.00 17.75 +74 3 23 14.12 6.25 14.67 4.96 8.75 9.79 13.70 11.67 14.92 10.34 9.54 18.00 +74 3 24 10.21 5.41 14.04 5.96 8.38 7.92 15.00 12.75 11.50 8.87 10.96 18.21 +74 3 25 7.04 5.46 9.50 2.50 5.66 1.71 4.83 7.58 6.04 4.12 6.34 12.92 +74 3 26 2.79 2.08 11.25 4.17 2.75 0.25 2.88 1.71 3.00 1.87 2.50 7.46 +74 3 27 3.96 2.67 13.67 4.21 4.54 0.25 2.42 0.96 1.17 2.17 5.21 2.04 +74 3 28 4.83 2.04 16.83 5.17 5.41 1.50 4.33 1.33 5.00 4.50 6.83 6.87 +74 3 29 3.37 5.75 6.54 1.87 3.50 1.29 2.33 4.79 2.37 4.71 9.62 6.83 +74 3 30 4.33 12.87 3.50 1.63 10.37 2.83 2.21 8.38 4.00 4.54 13.42 8.46 +74 3 31 11.17 17.46 5.13 5.25 15.09 9.21 6.25 11.25 10.54 8.25 17.21 15.83 +74 4 1 15.83 14.79 12.12 7.29 14.37 8.04 8.38 12.71 9.00 8.25 11.08 20.71 +74 4 2 18.21 11.38 15.09 10.13 15.29 9.13 9.17 11.83 10.04 7.17 10.29 14.83 +74 4 3 11.29 8.00 18.79 5.17 9.25 5.37 5.29 5.37 5.75 3.83 6.04 7.92 +74 4 4 8.42 11.29 9.67 4.50 5.58 6.34 4.75 10.00 8.42 6.42 6.71 9.04 +74 4 5 12.04 5.09 10.08 4.67 8.54 7.83 4.25 11.58 7.71 7.00 10.34 11.17 +74 4 6 13.13 2.71 13.25 4.12 8.29 5.13 6.87 9.96 8.00 7.00 8.63 13.75 +74 4 7 15.09 5.54 15.04 4.33 6.83 5.50 5.17 9.38 8.00 7.08 8.00 9.92 +74 4 8 13.59 4.33 15.75 4.12 6.75 7.08 5.09 7.83 8.50 6.34 8.08 7.62 +74 4 9 11.12 4.08 11.71 2.58 4.46 3.67 3.92 7.25 7.12 5.04 7.62 9.04 +74 4 10 5.13 7.54 7.21 2.54 9.54 2.00 3.37 10.08 4.04 4.38 9.79 7.21 +74 4 11 7.41 14.17 10.75 4.04 10.54 4.79 8.63 12.46 8.67 8.96 16.50 19.70 +74 4 12 9.79 7.75 10.46 4.96 11.42 8.12 11.92 15.41 12.29 8.54 13.08 22.63 +74 4 13 11.34 9.96 20.83 5.09 10.79 4.25 8.00 6.42 7.04 5.83 7.96 9.08 +74 4 14 9.38 5.50 18.46 4.21 8.29 5.00 6.75 7.58 7.17 3.50 8.17 4.33 +74 4 15 6.75 4.00 7.38 1.87 4.71 0.58 1.83 5.09 3.79 2.08 5.66 4.17 +74 4 16 4.92 8.46 6.58 2.17 4.79 1.17 2.96 5.75 4.29 2.50 5.66 4.54 +74 4 17 4.38 4.17 10.75 2.04 4.46 1.38 2.75 3.71 3.37 2.21 3.96 5.66 +74 4 18 7.21 4.00 15.41 3.71 5.21 3.29 2.25 3.00 3.21 1.67 6.63 5.33 +74 4 19 10.75 8.58 6.96 2.62 8.83 2.75 2.96 5.91 4.12 3.08 7.41 10.58 +74 4 20 7.00 7.62 4.79 0.92 7.21 1.00 1.33 2.92 2.62 2.25 5.79 10.21 +74 4 21 3.67 1.63 4.08 1.67 3.92 0.63 3.29 3.75 1.42 1.38 3.21 4.96 +74 4 22 3.63 4.96 7.62 4.50 6.50 2.79 2.21 5.75 4.12 4.46 3.88 8.46 +74 4 23 5.04 5.29 11.79 3.08 3.83 2.17 3.33 5.88 3.50 4.25 8.00 5.21 +74 4 24 5.41 2.50 11.00 1.67 3.58 0.63 3.29 3.96 2.58 1.79 8.25 5.46 +74 4 25 4.75 4.08 14.54 3.67 5.37 1.79 4.79 5.25 2.58 3.21 3.75 8.38 +74 4 26 8.12 4.88 14.25 4.54 5.71 3.67 7.62 6.29 5.75 5.75 3.88 11.58 +74 4 27 10.67 4.92 17.96 4.63 7.33 5.29 9.50 7.41 6.46 6.25 9.83 9.71 +74 4 28 11.87 6.04 20.46 7.41 7.96 4.29 11.75 9.00 7.41 7.46 9.25 15.12 +74 4 29 10.08 7.41 8.12 3.37 5.17 1.08 4.33 5.25 4.50 5.21 6.71 7.12 +74 4 30 18.41 16.92 12.08 6.21 15.25 6.63 7.41 11.50 10.29 7.83 15.34 13.50 +74 5 1 17.21 11.17 12.21 10.21 14.29 8.75 13.70 12.17 10.75 13.13 12.12 17.08 +74 5 2 17.04 14.09 10.83 4.71 9.75 4.29 8.71 5.66 4.67 5.00 6.50 12.04 +74 5 3 12.42 12.17 16.25 7.67 12.12 9.04 14.54 13.00 10.71 10.96 12.12 18.75 +74 5 4 8.87 3.37 17.58 5.41 7.46 7.41 12.92 10.88 8.63 9.33 11.87 13.21 +74 5 5 5.83 6.25 15.96 5.71 5.71 4.38 10.29 5.63 5.54 6.83 6.04 9.54 +74 5 6 4.83 3.96 7.67 2.96 3.33 1.17 5.91 2.71 3.79 4.88 4.71 11.58 +74 5 7 8.58 12.17 6.58 4.00 8.21 5.04 6.58 8.46 5.58 6.38 15.96 11.71 +74 5 8 21.75 15.00 18.63 10.13 15.29 9.96 13.00 14.17 13.75 15.67 16.17 22.42 +74 5 9 18.25 14.79 18.66 10.00 12.12 10.21 18.58 13.46 14.00 15.12 12.08 21.79 +74 5 10 14.21 9.00 17.25 7.92 9.29 6.38 13.54 10.46 11.12 13.37 10.75 22.71 +74 5 11 15.41 11.54 12.67 3.71 7.46 3.92 5.58 8.87 4.63 5.00 12.38 10.92 +74 5 12 24.13 17.79 19.55 13.00 18.21 13.50 17.50 17.04 15.54 15.25 16.38 21.92 +74 5 13 21.71 17.92 17.16 10.17 16.46 10.63 12.92 16.21 13.17 15.79 18.50 21.50 +74 5 14 14.21 18.50 11.17 7.04 14.04 8.33 9.13 12.42 10.08 10.41 17.83 14.09 +74 5 15 17.62 22.95 12.75 10.13 20.83 12.75 10.79 17.33 15.54 12.46 20.58 23.79 +74 5 16 10.04 10.96 10.04 4.83 7.83 4.12 7.54 7.17 8.00 9.54 9.59 16.33 +74 5 17 15.54 16.42 13.29 8.38 13.96 8.21 8.92 13.00 11.08 11.67 18.71 17.50 +74 5 18 9.87 7.25 8.33 2.79 6.34 3.04 2.67 7.00 5.09 3.58 10.96 7.25 +74 5 19 9.96 15.50 8.71 5.33 9.79 4.92 5.91 10.08 5.91 6.04 18.75 8.33 +74 5 20 14.09 11.92 12.75 5.83 12.17 6.87 9.96 14.50 10.79 11.87 19.79 19.08 +74 5 21 13.29 11.92 9.75 4.75 9.46 5.46 8.58 11.50 8.71 7.71 16.38 16.42 +74 5 22 18.08 15.67 10.37 9.50 17.75 10.83 14.62 16.38 12.83 12.12 19.00 21.04 +74 5 23 27.08 18.63 15.79 13.46 18.08 12.83 14.92 18.21 13.50 15.71 19.87 22.92 +74 5 24 14.75 15.83 26.20 10.17 11.75 7.54 11.38 13.70 8.83 10.46 19.50 20.08 +74 5 25 6.21 6.96 10.37 3.54 7.71 2.29 1.58 8.63 5.04 6.96 10.17 12.33 +74 5 26 6.67 6.54 3.21 3.42 6.08 1.92 2.37 5.37 4.25 5.09 6.54 12.87 +74 5 27 8.75 6.21 6.08 4.25 8.25 3.17 6.17 8.54 5.63 7.58 10.34 16.17 +74 5 28 15.25 10.67 9.46 7.08 14.04 6.92 12.58 11.25 10.58 12.87 13.59 17.88 +74 5 29 6.13 3.04 7.25 2.21 4.33 0.87 6.46 2.83 2.88 3.29 4.54 9.71 +74 5 30 8.33 8.71 6.67 4.12 7.87 3.63 6.71 8.63 7.83 7.58 7.71 13.96 +74 5 31 8.71 7.96 9.83 3.92 7.12 2.54 6.04 9.87 5.29 6.71 13.46 11.29 +74 6 1 16.54 15.92 15.46 9.87 13.67 9.13 9.33 13.75 12.08 12.17 22.34 19.70 +74 6 2 13.00 9.54 11.83 6.54 13.88 7.38 12.04 12.46 11.38 10.71 18.54 22.00 +74 6 3 8.54 6.50 6.42 4.50 9.83 4.75 9.21 10.29 7.21 8.83 13.88 20.17 +74 6 4 6.46 8.46 6.34 4.12 8.04 2.92 5.63 8.54 6.08 5.33 14.79 12.83 +74 6 5 17.04 14.62 11.46 7.58 15.12 9.04 11.75 13.75 10.79 8.96 18.46 18.88 +74 6 6 17.50 17.46 13.42 10.17 19.58 12.25 17.50 17.29 13.62 13.29 18.96 23.54 +74 6 7 8.12 5.29 10.41 4.38 8.04 4.83 10.21 9.79 8.17 7.71 11.54 17.00 +74 6 8 14.96 10.00 8.17 5.88 13.70 5.66 7.21 9.38 7.41 9.71 12.00 12.33 +74 6 9 18.96 11.63 10.63 8.00 16.00 8.63 10.34 11.46 10.21 12.46 12.87 19.50 +74 6 10 14.92 9.79 10.63 8.38 13.96 8.12 11.38 11.58 9.92 10.37 13.00 18.05 +74 6 11 15.00 5.37 9.29 7.00 11.87 7.96 14.12 12.50 9.62 11.63 12.71 19.67 +74 6 12 4.79 2.88 4.46 1.67 4.25 0.87 3.42 2.88 2.83 1.29 7.41 10.17 +74 6 13 6.50 7.04 7.25 4.88 6.87 4.96 5.33 7.41 7.17 6.25 9.38 13.83 +74 6 14 4.46 4.50 4.79 3.25 5.91 2.58 4.25 7.62 2.58 3.92 9.83 8.54 +74 6 15 8.08 8.04 13.04 4.33 6.58 2.67 3.29 5.88 4.21 4.00 5.83 9.38 +74 6 16 8.50 5.54 6.25 2.13 4.96 2.37 2.37 5.54 3.46 3.04 10.54 4.54 +74 6 17 14.67 10.21 8.21 5.21 12.12 5.37 6.17 9.21 6.13 6.87 10.25 8.87 +74 6 18 12.00 9.92 11.04 4.42 9.92 5.29 7.46 7.92 7.75 7.21 12.92 10.04 +74 6 19 10.92 12.62 11.75 4.17 7.71 5.04 5.75 11.17 6.79 5.33 15.63 9.62 +74 6 20 12.29 12.96 7.87 5.66 11.46 7.87 7.38 10.67 8.54 7.46 13.00 11.83 +74 6 21 17.12 20.17 7.08 5.63 11.08 7.17 6.08 12.00 9.21 6.92 11.21 13.83 +74 6 22 20.12 19.41 14.04 7.08 13.75 9.79 11.54 16.25 11.54 9.42 13.59 17.29 +74 6 23 10.17 2.29 10.08 4.50 7.50 8.00 8.50 11.58 9.67 7.67 10.37 13.08 +74 6 24 7.62 4.25 13.67 3.21 6.00 4.46 6.87 6.75 6.83 5.17 7.92 8.63 +74 6 25 12.46 6.50 18.00 3.63 6.38 8.42 8.42 8.38 9.00 5.66 11.38 8.54 +74 6 26 6.58 1.79 18.50 4.58 8.38 7.25 11.38 10.25 10.21 7.46 9.79 12.00 +74 6 27 8.38 3.88 19.00 4.96 8.08 5.63 10.29 9.25 8.04 7.12 9.71 7.87 +74 6 28 4.17 3.17 6.38 2.79 3.37 1.38 4.17 3.63 4.29 5.63 5.37 6.79 +74 6 29 6.00 4.42 7.00 2.62 6.00 3.50 3.17 5.75 3.75 4.21 7.50 6.71 +74 6 30 12.79 8.71 10.63 4.46 7.46 4.88 5.25 9.59 4.63 5.91 11.34 11.46 +74 7 1 13.29 6.92 10.37 7.17 10.13 8.29 12.96 11.08 9.79 12.12 11.79 20.50 +74 7 2 17.58 12.83 13.17 5.09 9.46 6.13 7.58 8.79 7.41 6.17 8.58 7.87 +74 7 3 15.09 13.21 13.62 6.42 13.62 8.21 11.12 9.75 9.25 8.04 11.92 14.58 +74 7 4 14.50 11.08 12.83 6.13 11.34 6.46 8.21 8.67 8.00 2.79 11.04 8.54 +74 7 5 12.87 9.04 10.96 7.92 13.59 8.79 12.42 12.08 10.37 9.83 13.92 18.21 +74 7 6 6.17 6.08 8.46 2.04 6.25 2.46 7.41 4.58 5.17 5.83 7.50 12.50 +74 7 7 7.62 11.54 9.50 4.29 8.29 5.88 7.00 10.63 6.96 7.12 18.16 9.38 +74 7 8 13.88 13.42 12.87 7.58 13.59 8.67 7.96 12.92 10.34 10.58 18.08 15.75 +74 7 9 11.87 10.04 10.37 5.41 12.58 6.71 10.41 9.54 8.87 8.38 16.46 16.46 +74 7 10 16.71 13.75 12.92 7.08 14.88 9.04 11.54 14.37 12.00 12.04 18.25 19.25 +74 7 11 11.25 9.67 10.37 7.00 13.29 7.87 10.67 12.00 9.96 10.46 16.08 18.29 +74 7 12 9.13 7.00 8.33 4.88 9.83 6.08 8.50 8.54 5.96 8.67 10.83 15.63 +74 7 13 13.79 8.63 6.79 4.42 8.92 5.63 5.91 8.29 4.71 7.71 11.58 14.62 +74 7 14 15.25 12.08 10.83 5.29 10.08 6.13 7.62 9.54 7.71 6.75 14.29 10.88 +74 7 15 18.58 15.34 15.63 8.54 16.25 9.75 12.50 12.75 10.37 9.50 17.08 14.00 +74 7 16 21.00 14.71 14.62 10.37 14.37 10.58 11.17 14.58 10.54 13.13 20.50 25.37 +74 7 17 14.50 6.25 9.59 6.25 8.75 4.88 7.12 6.34 6.25 7.08 9.62 13.50 +74 7 18 5.83 4.54 7.29 1.42 5.04 3.04 7.50 4.38 3.83 3.92 10.37 14.58 +74 7 19 6.96 4.29 7.41 5.17 11.75 7.04 13.17 9.21 9.17 8.63 14.96 19.75 +74 7 20 11.79 6.75 7.25 6.21 10.46 6.83 11.71 10.88 8.33 9.21 12.79 19.62 +74 7 21 7.25 9.04 9.29 5.29 12.87 8.25 16.29 12.12 11.87 11.25 17.92 23.21 +74 7 22 15.54 10.41 14.33 9.13 14.88 10.41 17.29 12.12 12.17 11.38 18.46 23.58 +74 7 23 9.29 9.08 9.17 5.29 8.83 5.58 10.08 7.87 8.00 5.63 12.17 17.58 +74 7 24 16.46 10.58 8.92 6.42 11.79 5.91 8.58 8.21 7.17 7.67 10.54 14.46 +74 7 25 9.92 8.92 9.67 4.33 9.46 6.17 7.87 9.33 6.75 5.79 11.92 13.83 +74 7 26 9.46 9.33 9.04 3.88 8.46 5.37 6.79 10.79 7.12 6.46 14.58 12.92 +74 7 27 11.00 10.46 12.92 5.71 13.25 7.46 10.63 8.83 9.71 8.00 12.17 15.00 +74 7 28 12.83 9.46 10.29 6.42 12.08 7.62 11.29 9.04 10.34 7.87 12.08 15.59 +74 7 29 12.58 12.62 14.00 6.34 13.21 7.08 8.50 4.04 7.21 4.00 7.29 15.00 +74 7 30 12.87 13.46 13.42 5.21 12.17 6.50 6.00 5.13 8.00 2.04 7.38 3.75 +74 7 31 13.54 7.38 13.04 4.58 8.42 2.88 3.13 3.71 4.12 2.33 5.83 8.33 +74 8 1 6.29 6.04 7.25 3.00 7.33 4.63 5.96 8.46 7.21 5.21 11.46 16.96 +74 8 2 5.17 5.83 7.17 3.04 7.08 4.50 6.83 8.46 6.29 6.46 10.37 14.54 +74 8 3 3.75 4.58 11.00 1.92 3.13 0.63 2.50 3.42 1.63 3.33 9.08 13.59 +74 8 4 5.54 4.96 14.83 3.37 4.17 1.79 3.79 1.79 3.67 1.75 4.29 6.92 +74 8 5 10.41 15.83 9.67 6.21 11.46 8.04 4.17 10.41 9.00 7.75 13.83 12.67 +74 8 6 13.25 16.38 11.50 8.38 13.42 8.92 5.29 12.00 11.42 11.12 14.37 17.92 +74 8 7 10.67 11.96 11.87 6.67 10.63 8.29 7.12 10.58 11.38 7.12 12.12 18.21 +74 8 8 9.50 8.58 9.13 3.54 6.92 3.88 5.71 6.46 5.66 5.66 10.29 14.04 +74 8 9 14.09 11.63 10.92 4.42 10.04 4.96 7.62 7.96 7.87 5.91 10.58 10.37 +74 8 10 16.92 12.46 11.46 6.79 12.12 7.25 11.38 10.54 9.38 9.17 13.04 16.46 +74 8 11 7.38 9.46 9.75 3.88 7.75 5.66 7.00 8.29 7.92 7.79 12.42 16.83 +74 8 12 9.96 9.96 11.25 5.29 11.54 6.34 10.63 9.62 10.92 9.42 15.75 19.29 +74 8 13 7.41 4.71 8.79 1.75 4.46 1.96 4.79 3.83 4.21 3.37 7.21 8.50 +74 8 14 18.71 17.21 17.00 7.29 13.37 10.13 10.25 14.37 12.50 11.21 15.71 18.41 +74 8 15 19.55 16.46 16.79 9.87 13.59 11.29 14.25 19.41 13.42 12.54 23.25 22.34 +74 8 16 7.71 7.87 11.58 4.46 9.59 7.04 10.96 10.04 7.75 9.13 10.75 17.08 +74 8 17 5.09 5.33 7.67 2.25 6.13 2.13 5.88 3.25 4.46 3.67 5.29 10.96 +74 8 18 7.41 4.08 8.96 3.96 5.13 2.04 5.46 6.00 4.38 5.29 6.42 9.59 +74 8 19 5.71 7.41 6.08 2.50 4.83 3.54 4.54 8.25 4.12 4.25 15.75 11.17 +74 8 20 10.34 13.79 10.79 5.37 10.04 7.83 8.87 12.50 10.67 10.37 19.41 19.33 +74 8 21 8.29 7.00 10.21 3.71 8.38 5.66 7.83 6.13 7.33 5.96 9.25 13.50 +74 8 22 7.96 11.58 7.04 3.17 6.87 3.79 4.92 6.13 5.96 4.83 10.88 8.87 +74 8 23 13.79 12.46 14.09 6.71 10.37 8.21 9.59 11.75 11.21 11.67 16.88 16.42 +74 8 24 15.16 16.21 13.88 6.13 9.79 8.46 10.04 14.54 10.79 11.29 20.25 19.92 +74 8 25 14.54 12.92 12.58 5.29 13.70 8.08 10.54 11.08 11.96 9.71 16.96 19.83 +74 8 26 15.67 11.71 8.42 4.83 9.92 5.50 6.67 6.34 5.79 6.00 11.17 12.33 +74 8 27 12.00 12.17 8.63 3.92 9.75 6.17 8.50 9.62 7.46 7.21 16.96 12.96 +74 8 28 17.67 14.04 15.04 7.75 12.12 8.87 7.71 13.59 11.12 11.92 19.41 20.33 +74 8 29 7.46 6.71 9.67 2.04 4.58 2.54 7.46 4.38 5.63 4.38 7.83 9.62 +74 8 30 8.67 7.21 13.37 4.04 5.96 4.71 7.46 6.08 7.21 6.04 7.96 10.67 +74 8 31 5.37 7.54 5.79 2.25 4.75 3.54 3.33 5.63 5.83 4.21 4.04 12.08 +74 9 1 13.50 11.75 7.38 3.00 8.17 3.88 4.42 6.42 4.92 3.63 11.79 10.67 +74 9 2 22.75 17.88 19.95 11.04 14.58 10.54 12.92 9.83 11.12 9.00 6.83 15.37 +74 9 3 16.04 15.34 12.50 6.83 12.96 6.58 10.54 6.71 8.42 8.33 6.13 14.67 +74 9 4 16.21 15.37 14.58 7.17 16.17 9.59 12.79 9.38 12.25 6.63 12.46 15.50 +74 9 5 16.50 11.92 13.37 4.96 11.87 6.42 8.04 8.38 8.63 6.83 8.58 11.12 +74 9 6 20.17 16.33 14.71 7.54 13.04 7.92 8.29 8.96 8.96 5.88 10.29 10.50 +74 9 7 29.54 20.54 23.21 13.70 21.71 13.83 16.21 12.62 14.54 11.29 15.04 26.42 +74 9 8 16.58 11.38 15.71 5.63 13.54 8.33 10.88 8.79 10.67 7.87 10.71 16.83 +74 9 9 10.21 9.08 8.92 3.42 7.83 5.04 6.92 5.91 7.29 4.38 9.29 11.87 +74 9 10 11.08 13.67 12.67 5.00 9.59 7.96 8.00 9.71 9.59 8.42 16.83 19.25 +74 9 11 16.71 13.00 12.67 5.54 12.46 9.33 9.13 10.34 9.17 6.71 9.17 11.71 +74 9 12 13.13 9.42 14.83 7.08 9.13 7.54 9.42 9.92 10.54 9.21 9.50 19.46 +74 9 13 10.00 9.75 9.13 5.75 10.83 7.54 10.37 9.75 9.25 7.92 13.50 18.05 +74 9 14 14.50 14.29 12.38 6.34 10.92 7.33 5.46 9.00 8.04 7.04 10.79 14.83 +74 9 15 10.92 7.00 6.67 3.58 6.13 3.00 2.79 5.37 3.04 4.38 7.08 10.25 +74 9 16 8.83 9.29 8.71 3.54 5.58 4.63 6.13 9.08 5.75 5.79 11.00 13.96 +74 9 17 12.87 10.63 11.34 5.46 7.87 4.50 7.67 6.38 6.13 6.96 10.46 19.33 +74 9 18 5.21 3.96 6.21 1.50 3.08 1.67 4.58 5.09 2.62 4.75 9.54 14.67 +74 9 19 10.00 8.25 7.75 4.79 10.58 6.21 9.50 10.96 9.67 8.58 14.71 23.16 +74 9 20 12.79 10.29 12.96 5.41 10.75 7.04 9.67 12.00 9.87 9.38 18.54 19.83 +74 9 21 14.71 18.88 11.12 7.71 14.75 7.67 13.37 13.04 11.42 10.88 23.04 27.12 +74 9 22 17.92 17.71 13.08 7.83 15.29 8.87 12.21 12.42 11.50 9.92 17.46 20.62 +74 9 23 27.00 25.08 19.70 10.54 16.62 9.59 11.17 12.92 11.00 10.04 18.46 26.63 +74 9 24 15.96 16.04 11.58 7.54 11.29 7.58 10.25 9.17 8.83 8.33 14.50 18.38 +74 9 25 24.04 20.21 17.29 12.00 18.58 11.12 13.00 13.75 12.92 9.87 19.92 19.25 +74 9 26 8.50 7.21 7.33 2.37 4.29 2.88 8.04 2.88 5.17 3.88 6.42 13.21 +74 9 27 14.12 9.13 12.42 4.46 6.79 3.17 6.46 6.46 4.42 2.96 10.37 8.83 +74 9 28 15.92 16.71 10.92 5.83 11.21 6.46 8.38 9.79 7.17 6.46 17.08 10.92 +74 9 29 14.12 10.96 8.50 3.96 8.50 4.00 7.83 7.71 5.79 7.33 12.62 11.12 +74 9 30 5.09 3.33 7.08 1.58 1.79 1.50 7.46 4.54 3.63 4.83 7.50 13.59 +74 10 1 8.54 4.08 8.33 3.96 5.50 2.00 6.79 4.88 4.63 4.08 7.33 16.54 +74 10 2 19.95 14.21 15.96 9.08 12.83 8.08 13.92 11.38 10.75 11.21 17.16 25.75 +74 10 3 13.88 10.41 19.41 7.21 5.91 4.67 9.92 8.92 7.87 9.59 13.67 25.21 +74 10 4 16.46 13.17 15.87 7.75 10.00 7.33 10.17 9.75 8.08 11.00 15.71 23.67 +74 10 5 10.54 8.42 11.42 4.88 6.29 4.79 9.62 6.38 4.88 6.96 11.87 18.00 +74 10 6 19.41 18.79 11.67 6.96 17.83 8.50 13.29 13.54 10.71 8.58 22.63 19.25 +74 10 7 25.08 18.12 17.96 10.25 13.88 8.87 12.67 12.92 9.33 9.87 20.00 25.46 +74 10 8 13.33 9.21 13.50 5.54 8.38 5.21 9.33 7.62 5.63 6.04 13.37 17.12 +74 10 9 10.88 4.75 9.83 3.00 4.42 1.96 8.38 6.38 5.13 4.12 9.79 15.37 +74 10 10 13.08 9.92 13.17 5.50 8.83 4.04 10.00 7.62 6.46 7.41 12.50 20.83 +74 10 11 15.16 9.17 13.96 5.04 7.54 6.08 9.75 6.50 6.87 9.25 11.29 18.38 +74 10 12 9.67 3.33 10.54 2.67 5.75 2.17 8.33 5.46 4.21 3.42 9.08 10.50 +74 10 13 8.12 5.09 4.79 2.33 6.63 2.04 8.17 3.96 5.54 3.42 8.46 11.71 +74 10 14 4.17 7.38 2.71 0.46 6.04 1.96 4.00 5.29 3.75 3.42 10.25 9.71 +74 10 15 8.12 2.71 3.79 2.00 2.67 0.79 3.37 1.29 1.08 1.04 3.37 5.37 +74 10 16 9.38 8.33 3.88 2.08 6.79 2.29 5.41 5.83 3.58 2.54 10.50 10.83 +74 10 17 14.79 9.67 10.71 4.21 8.96 5.04 7.87 9.21 6.75 6.79 13.67 16.00 +74 10 18 19.41 16.33 14.58 8.08 16.33 7.96 14.37 9.46 11.21 8.71 14.92 19.21 +74 10 19 13.21 13.08 7.08 5.83 11.00 5.29 11.71 8.21 7.92 5.29 15.96 19.46 +74 10 20 23.79 17.75 13.92 11.75 17.62 10.25 15.59 14.09 11.67 8.50 20.50 26.34 +74 10 21 16.29 11.75 14.62 9.38 8.96 6.46 11.87 8.21 7.87 6.87 14.92 21.59 +74 10 22 16.92 12.79 14.88 6.96 9.79 6.34 10.96 8.12 7.83 8.50 15.75 23.58 +74 10 23 10.08 8.08 13.33 4.88 5.71 3.50 8.87 5.41 6.04 7.29 8.75 16.29 +74 10 24 8.04 8.33 6.17 3.21 8.50 4.25 10.79 6.42 8.08 6.08 12.50 20.58 +74 10 25 13.96 8.71 7.87 7.17 11.08 6.71 13.67 11.71 10.71 7.12 13.79 18.08 +74 10 26 16.04 11.34 9.33 8.29 14.83 8.58 15.59 12.08 12.21 10.29 15.50 23.21 +74 10 27 26.50 17.33 15.34 15.75 19.92 14.12 22.29 18.66 15.87 20.88 22.46 36.63 +74 10 28 19.50 18.75 17.21 12.96 14.00 9.46 15.92 13.59 12.87 12.79 18.96 31.91 +74 10 29 16.38 12.71 19.12 8.92 10.67 7.33 13.13 8.67 9.54 9.25 12.33 24.25 +74 10 30 12.83 5.46 12.29 5.58 7.92 5.88 11.42 7.58 7.67 6.96 9.04 15.34 +74 10 31 9.25 6.79 7.67 3.88 6.54 4.21 8.54 6.29 6.29 4.67 8.38 8.96 +74 11 1 10.63 11.29 7.54 2.92 6.83 3.42 6.92 8.58 6.42 5.54 11.21 12.12 +74 11 2 14.17 12.87 13.21 5.29 11.67 7.12 9.21 10.63 10.25 11.00 15.46 17.37 +74 11 3 19.95 15.04 14.09 11.12 16.17 9.38 12.71 10.41 11.21 8.38 12.54 12.75 +74 11 4 6.63 3.92 10.96 2.46 2.67 1.04 5.96 3.67 2.58 2.17 7.21 8.29 +74 11 5 9.59 13.37 8.96 3.71 9.92 5.41 6.79 9.54 7.83 6.25 15.96 18.54 +74 11 6 8.46 4.63 12.17 2.83 5.58 1.13 5.41 2.33 5.17 1.63 1.96 6.34 +74 11 7 10.41 11.46 7.83 3.42 8.83 5.33 5.33 10.46 7.50 6.00 14.37 17.75 +74 11 8 13.59 12.58 12.21 6.42 10.41 6.67 11.21 9.83 10.58 8.83 12.96 17.25 +74 11 9 18.29 17.29 16.62 10.00 18.34 11.92 20.04 17.67 16.79 15.75 25.29 34.96 +74 11 10 22.71 21.87 20.17 12.33 20.38 11.75 19.25 18.16 15.46 15.63 24.96 27.54 +74 11 11 14.58 19.21 10.58 8.00 14.50 9.62 20.21 13.00 14.00 13.29 20.08 31.54 +74 11 12 13.54 13.54 9.67 4.21 11.08 5.41 11.75 7.83 8.79 6.83 10.79 19.21 +74 11 13 27.58 22.25 21.92 13.92 17.37 12.12 12.79 12.33 13.88 10.17 11.08 16.50 +74 11 14 22.63 18.66 24.37 13.92 20.04 13.25 19.08 9.87 18.25 14.29 8.79 17.29 +74 11 15 7.71 4.21 8.38 3.21 7.08 4.38 10.63 7.33 9.04 8.58 11.67 21.75 +74 11 16 4.33 4.25 5.91 1.58 6.21 4.00 9.62 7.33 8.54 7.58 13.88 19.87 +74 11 17 4.25 2.33 5.63 0.33 3.88 1.46 5.88 1.63 3.88 2.00 2.96 10.04 +74 11 18 7.04 2.17 8.33 0.75 1.87 0.13 8.25 0.37 2.75 3.04 1.25 10.79 +74 11 19 11.92 14.37 7.29 2.17 9.17 2.75 4.71 5.75 3.42 3.42 5.54 9.54 +74 11 20 15.41 13.37 20.41 6.29 10.88 4.88 14.29 11.63 10.00 6.58 8.50 12.75 +74 11 21 8.79 7.92 19.55 5.21 6.87 3.63 9.25 8.12 7.29 3.00 4.38 14.17 +74 11 22 6.67 3.79 8.08 2.67 5.91 1.50 4.83 3.13 4.29 2.21 3.25 12.92 +74 11 23 14.67 9.62 9.79 6.29 8.54 4.17 9.71 3.79 6.17 3.33 2.75 6.17 +74 11 24 18.79 19.83 14.33 10.58 20.88 11.96 18.00 18.84 16.25 16.66 23.63 28.84 +74 11 25 12.67 13.17 11.08 7.29 14.29 7.96 17.79 10.54 13.25 13.25 16.66 26.63 +74 11 26 4.00 8.58 4.38 1.63 8.46 2.83 6.96 4.54 4.54 4.04 7.62 11.25 +74 11 27 22.71 23.00 13.42 13.54 24.04 13.42 22.50 20.04 17.83 18.63 25.12 31.88 +74 11 28 20.04 16.33 13.50 13.21 19.41 10.96 20.67 13.33 14.67 15.25 18.63 30.71 +74 11 29 9.08 10.29 8.96 2.29 7.41 4.29 9.96 7.08 7.46 4.96 9.38 14.04 +74 11 30 12.92 12.96 10.37 5.00 14.37 7.08 13.29 12.12 11.12 8.21 14.04 18.79 +74 12 1 17.16 19.12 16.17 7.87 16.66 11.12 14.62 15.75 14.92 13.96 23.13 23.79 +74 12 2 11.38 10.37 12.83 5.04 9.46 5.04 9.87 6.87 9.25 8.83 11.25 19.46 +74 12 3 17.50 18.25 15.16 7.92 15.16 11.83 12.04 15.96 12.92 13.54 21.87 21.17 +74 12 4 12.96 16.83 10.04 7.50 17.37 8.58 17.41 14.29 13.75 13.08 21.62 26.83 +74 12 5 12.04 11.29 8.54 5.54 12.12 6.25 15.75 11.58 12.33 9.29 14.00 23.83 +74 12 6 13.92 13.54 10.29 6.04 16.38 7.87 17.04 10.79 14.12 10.21 16.08 23.33 +74 12 7 14.88 13.79 10.96 10.13 22.00 10.37 21.67 16.08 17.62 12.25 19.58 24.79 +74 12 8 16.83 17.75 14.88 9.29 15.59 10.46 14.92 13.83 14.71 13.96 20.04 25.08 +74 12 9 14.29 18.58 9.21 8.75 16.29 8.08 17.46 14.92 13.59 12.71 21.25 26.00 +74 12 10 18.25 22.54 14.25 11.29 21.04 10.41 20.21 15.50 15.67 12.21 21.21 29.38 +74 12 11 20.12 16.38 15.00 9.87 14.58 7.62 13.75 10.63 10.50 10.00 14.29 21.92 +74 12 12 29.50 19.87 15.50 16.08 22.83 13.79 17.58 19.70 16.88 15.75 17.92 22.92 +74 12 13 14.42 14.50 11.63 8.75 15.79 8.96 13.13 14.12 13.08 10.50 18.29 19.67 +74 12 14 12.00 13.88 10.92 7.87 13.13 8.04 14.88 13.96 11.71 9.62 16.29 21.84 +74 12 15 9.71 11.12 8.12 4.25 9.38 5.17 10.58 8.83 9.50 8.71 12.79 21.00 +74 12 16 21.21 22.25 15.09 12.75 23.13 13.33 20.79 21.09 17.92 16.75 25.12 29.95 +74 12 17 25.12 24.96 13.96 15.12 24.58 15.96 25.46 22.37 18.58 19.08 26.75 38.25 +74 12 18 12.04 12.46 8.46 6.54 15.00 6.13 16.66 9.29 12.71 9.46 11.79 20.17 +74 12 19 23.25 21.37 19.70 9.87 15.25 11.00 18.63 20.83 16.66 15.46 27.33 27.88 +74 12 20 26.54 23.00 22.75 13.88 16.04 12.17 17.46 17.50 16.88 15.25 21.50 23.50 +74 12 21 25.00 20.67 22.21 11.67 15.37 11.38 16.25 17.37 16.00 15.16 24.41 26.00 +74 12 22 22.58 19.55 17.88 10.13 15.50 9.67 15.21 16.58 14.00 14.17 19.55 22.42 +74 12 23 27.54 23.54 24.00 18.88 24.87 17.54 17.75 22.42 25.00 23.58 25.04 33.04 +74 12 24 10.41 12.75 8.79 3.79 11.87 5.29 11.12 7.21 10.34 8.04 13.33 20.79 +74 12 25 27.29 25.29 22.67 13.21 20.17 12.58 17.83 16.92 16.46 13.67 18.16 20.67 +74 12 26 25.41 22.21 19.55 12.87 20.50 12.71 19.50 14.50 16.75 12.87 15.16 17.79 +74 12 27 22.50 22.00 17.46 10.58 22.17 12.71 20.50 17.41 17.29 13.88 19.79 27.33 +74 12 28 25.84 22.83 20.88 14.96 25.92 16.62 25.33 20.04 22.63 16.88 15.75 25.96 +74 12 29 14.83 11.58 12.71 9.29 13.70 8.00 14.96 11.42 13.75 9.04 12.92 22.50 +74 12 30 13.29 13.42 13.17 3.63 9.75 6.34 11.08 12.17 10.83 9.00 18.16 22.13 +74 12 31 16.04 16.29 15.21 8.42 13.67 9.75 15.25 16.13 15.04 13.46 18.54 18.46 +75 1 1 14.04 13.54 11.29 5.46 12.58 5.58 8.12 8.96 9.29 5.17 7.71 11.63 +75 1 2 9.17 11.46 9.13 2.54 8.71 4.58 8.58 13.75 10.67 10.54 17.79 20.96 +75 1 3 9.54 5.63 7.29 3.50 7.71 3.33 9.96 7.12 8.46 7.38 11.25 21.84 +75 1 4 5.37 6.00 9.38 3.50 8.96 5.83 16.38 10.17 12.75 11.46 16.38 24.87 +75 1 5 11.92 12.25 12.17 5.75 14.92 10.50 21.59 13.13 16.38 14.58 22.13 30.88 +75 1 6 19.83 17.08 17.08 10.21 19.29 10.08 19.12 12.87 15.59 12.87 18.58 23.33 +75 1 7 11.58 10.79 8.75 6.00 12.62 6.38 10.88 10.29 9.46 5.09 11.46 13.29 +75 1 8 10.71 11.00 8.75 5.83 11.46 7.17 10.63 11.17 10.71 6.96 16.21 16.33 +75 1 9 14.71 14.79 12.25 6.29 12.29 8.50 14.25 15.71 13.50 12.29 19.87 20.62 +75 1 10 21.96 17.46 17.75 10.21 13.25 8.54 11.83 12.46 13.37 12.12 22.92 17.46 +75 1 11 22.13 18.12 19.00 11.12 15.67 10.04 17.41 14.42 16.42 13.37 24.92 21.84 +75 1 12 18.79 21.09 17.46 10.96 17.29 10.71 15.79 14.96 16.17 15.09 27.33 27.42 +75 1 13 33.12 25.58 25.88 19.00 21.79 17.50 19.62 20.91 21.00 21.54 28.71 28.71 +75 1 14 19.12 12.54 19.92 10.13 11.92 7.96 13.96 12.29 12.50 13.83 20.33 26.54 +75 1 15 18.05 11.58 16.50 10.58 12.96 7.83 10.83 9.08 12.67 10.17 12.96 17.79 +75 1 16 8.29 8.00 8.67 1.75 9.42 2.92 5.88 6.92 7.62 4.29 10.13 14.33 +75 1 17 8.00 10.71 6.54 3.75 10.08 4.04 9.62 7.17 9.71 6.08 11.46 9.17 +75 1 18 14.37 10.37 11.29 6.13 8.17 3.29 7.25 6.54 7.08 4.58 12.58 9.54 +75 1 19 22.37 22.08 17.67 9.21 16.33 11.00 12.12 16.62 13.88 12.92 23.63 22.46 +75 1 20 20.50 22.29 12.62 9.33 19.29 11.50 16.79 16.33 16.00 15.79 29.88 29.71 +75 1 21 19.55 18.29 13.25 8.58 14.21 8.33 14.42 12.12 13.88 10.50 17.50 20.79 +75 1 22 26.50 29.50 21.29 14.67 26.16 15.50 20.91 21.34 20.58 19.55 32.30 32.33 +75 1 23 20.62 23.63 14.62 12.87 22.29 14.75 19.50 20.12 18.96 16.13 31.49 34.54 +75 1 24 16.25 14.37 12.50 6.75 11.38 7.29 10.92 10.00 11.46 9.54 16.58 22.08 +75 1 25 19.41 16.42 15.29 8.83 13.59 8.21 13.17 10.71 12.38 10.71 17.12 23.13 +75 1 26 22.21 14.88 17.88 7.96 11.83 8.12 10.25 11.54 11.29 10.13 18.50 19.95 +75 1 27 18.66 19.46 11.21 6.46 12.50 5.29 6.67 7.62 7.41 5.66 13.59 17.37 +75 1 28 16.29 13.67 14.04 8.92 14.12 8.67 14.75 12.21 13.37 11.46 17.25 26.16 +75 1 29 17.62 18.38 10.54 4.50 10.46 7.00 7.87 10.92 9.67 6.34 16.04 17.29 +75 1 30 21.09 20.58 17.96 10.71 16.88 11.96 14.92 19.12 17.04 16.04 26.92 28.58 +75 1 31 18.34 18.66 14.25 9.04 13.83 9.17 14.58 14.09 13.75 10.83 23.75 22.17 +75 2 1 12.50 17.46 12.12 5.83 11.12 6.29 9.62 13.92 10.67 9.75 22.95 18.16 +75 2 2 11.96 21.46 8.87 6.34 12.46 6.08 4.42 9.75 10.29 7.79 18.91 11.08 +75 2 3 10.75 15.37 8.12 5.96 10.88 5.41 6.08 8.42 9.79 6.21 14.46 12.92 +75 2 4 12.04 9.33 9.54 4.00 7.83 3.67 4.12 7.33 4.21 4.67 7.41 10.92 +75 2 5 12.38 7.12 11.38 3.25 7.87 3.50 8.12 6.34 8.29 5.29 7.67 9.42 +75 2 6 19.00 17.79 15.92 5.54 11.71 6.46 8.46 11.63 9.42 8.08 15.96 17.33 +75 2 7 15.87 14.00 11.42 6.42 10.58 6.63 8.58 13.00 11.75 7.29 16.46 17.00 +75 2 8 15.41 14.17 10.54 4.08 11.29 5.83 7.54 9.42 9.62 5.71 12.38 14.92 +75 2 9 12.79 12.29 8.67 2.79 9.46 2.37 5.21 7.71 8.00 3.33 8.87 9.04 +75 2 10 14.25 17.54 10.04 5.33 11.63 7.00 7.00 8.92 8.46 3.50 10.67 11.29 +75 2 11 14.00 11.63 13.46 4.88 10.41 7.79 5.66 9.29 7.54 3.88 10.96 7.87 +75 2 12 7.46 6.04 9.00 2.62 4.50 2.67 4.67 3.04 3.79 0.92 6.08 6.54 +75 2 13 11.63 15.59 7.33 5.04 12.25 7.46 9.79 8.33 10.54 5.17 14.58 8.87 +75 2 14 14.21 8.58 9.92 1.96 7.67 2.21 4.21 3.92 5.91 1.38 3.75 7.29 +75 2 15 9.17 7.17 9.21 3.33 9.42 5.54 6.96 7.04 8.38 6.50 9.92 14.88 +75 2 16 14.42 14.00 16.96 10.50 11.96 11.42 12.38 11.83 13.92 13.59 19.25 23.16 +75 2 17 13.42 13.54 10.92 7.33 13.25 9.54 14.00 12.67 14.00 10.37 20.08 23.25 +75 2 18 3.71 5.29 4.33 0.67 3.13 0.63 4.00 3.04 2.46 1.50 8.00 11.34 +75 2 19 17.46 17.62 16.17 7.92 16.33 11.71 10.63 12.42 12.79 11.63 17.88 23.42 +75 2 20 9.67 7.50 16.08 4.58 5.17 1.67 6.00 1.63 4.33 1.13 6.25 6.58 +75 2 21 8.67 3.08 10.92 4.46 5.00 5.50 5.21 3.67 7.62 5.96 16.25 16.50 +75 2 22 16.46 14.42 14.37 8.17 12.92 9.96 7.92 12.75 12.79 12.92 21.00 22.25 +75 2 23 10.67 9.42 11.34 5.63 8.04 5.13 6.96 5.37 7.21 3.96 5.79 11.50 +75 2 24 11.38 15.29 9.13 5.91 10.71 8.21 6.34 10.71 10.54 7.29 12.54 14.96 +75 2 25 16.88 21.29 14.17 6.42 12.71 10.67 9.21 11.67 11.00 7.38 14.96 19.87 +75 2 26 18.08 19.17 15.83 6.42 16.38 10.50 9.25 10.46 10.46 7.96 15.50 18.00 +75 2 27 15.46 17.04 11.54 3.96 15.16 7.29 7.87 8.79 8.79 4.71 11.42 10.41 +75 2 28 11.21 16.88 12.71 5.75 13.83 7.83 7.92 9.96 9.33 5.37 12.29 9.54 +75 3 1 12.79 11.46 14.62 5.09 10.00 6.83 10.13 7.54 8.25 3.75 8.04 11.42 +75 3 2 11.67 11.42 13.46 5.71 10.17 7.21 10.00 7.96 9.71 5.79 10.37 12.92 +75 3 3 4.33 5.04 7.87 2.29 3.96 2.92 7.38 4.88 6.67 3.88 9.75 12.12 +75 3 4 4.63 5.46 5.66 0.50 3.42 0.00 1.63 1.54 0.54 0.25 5.50 5.41 +75 3 5 7.87 7.21 5.83 1.83 3.50 2.17 4.88 3.92 3.96 5.00 8.92 9.33 +75 3 6 14.62 14.71 14.00 7.46 14.50 9.83 14.46 11.71 13.54 13.17 19.70 22.37 +75 3 7 13.79 14.54 10.63 7.33 14.62 8.33 14.00 9.79 12.71 12.04 18.96 20.83 +75 3 8 9.50 6.54 7.21 3.17 6.79 2.58 5.33 5.37 5.91 5.83 11.87 14.54 +75 3 9 17.04 13.08 12.21 6.13 10.54 6.25 10.08 8.08 9.38 9.04 15.12 16.33 +75 3 10 15.29 13.83 19.00 7.04 10.83 8.33 12.96 11.08 10.46 11.92 16.92 21.75 +75 3 11 18.84 13.92 28.33 11.25 14.29 12.92 19.29 11.83 16.00 15.34 15.59 19.00 +75 3 12 10.63 9.04 15.21 4.79 7.50 5.91 10.75 7.12 9.75 8.25 6.63 17.16 +75 3 13 9.00 5.00 16.00 5.04 6.29 2.79 7.62 4.33 6.83 6.25 5.17 8.63 +75 3 14 12.38 6.42 15.54 5.54 6.63 2.88 6.46 4.38 6.87 7.00 4.54 9.17 +75 3 15 10.37 6.00 15.09 4.79 4.21 1.87 7.83 5.71 5.50 7.04 9.13 18.63 +75 3 16 11.38 9.46 12.17 3.04 4.21 3.21 5.58 5.13 5.83 4.92 4.12 10.67 +75 3 17 12.42 8.63 13.37 3.37 5.37 4.17 7.79 6.63 6.38 5.54 7.46 11.67 +75 3 18 12.83 11.12 13.21 4.54 7.96 4.21 10.50 7.00 6.29 7.04 7.92 12.08 +75 3 19 11.58 8.92 18.34 5.41 8.58 4.46 9.62 5.91 6.58 6.50 8.25 14.33 +75 3 20 10.71 6.63 20.54 4.50 6.13 2.46 8.71 6.96 8.87 6.04 7.71 15.67 +75 3 21 16.33 14.46 14.50 7.83 11.54 10.13 11.12 9.83 12.29 11.96 14.88 22.34 +75 3 22 16.54 13.00 9.59 7.62 11.46 6.63 10.92 9.04 10.13 8.87 13.04 14.21 +75 3 23 15.63 9.54 10.58 6.25 11.87 7.21 10.63 9.13 9.83 10.96 12.21 19.75 +75 3 24 17.16 7.67 12.08 8.00 9.71 6.75 11.67 8.12 10.21 12.42 9.04 22.95 +75 3 25 8.50 6.29 8.75 3.75 7.08 5.66 10.88 7.71 10.50 8.79 11.04 10.58 +75 3 26 9.21 8.63 13.29 3.08 6.29 5.63 7.33 7.54 8.96 7.00 14.42 16.71 +75 3 27 15.63 11.87 17.79 8.42 9.25 5.21 10.17 8.38 10.96 10.58 13.67 19.70 +75 3 28 15.87 12.67 12.17 6.00 10.21 7.62 9.42 9.29 10.75 10.00 16.17 20.62 +75 3 29 15.37 12.54 10.79 7.08 9.46 6.46 9.62 8.25 9.33 9.83 18.05 20.12 +75 3 30 16.08 16.96 15.12 7.17 9.75 6.54 8.58 8.42 9.50 9.71 15.87 14.62 +75 3 31 12.79 10.83 8.29 6.58 8.87 6.29 9.46 7.62 8.96 9.59 12.92 15.59 +75 4 1 16.50 11.54 10.50 7.71 9.25 8.08 11.71 8.92 11.04 12.17 13.79 18.16 +75 4 2 17.50 15.12 16.75 8.87 12.87 8.25 10.75 12.17 11.34 10.88 17.41 19.29 +75 4 3 15.04 11.54 17.58 8.04 9.29 7.08 11.79 9.08 12.04 14.83 15.16 25.62 +75 4 4 12.62 10.63 18.34 6.58 6.46 3.46 9.79 8.04 9.17 8.42 11.54 16.75 +75 4 5 9.92 7.33 13.54 4.79 5.29 2.00 7.00 4.92 7.12 4.88 10.41 11.92 +75 4 6 12.50 7.75 13.83 6.92 6.34 3.71 8.33 6.29 8.29 5.88 8.04 13.21 +75 4 7 21.84 15.83 15.00 11.58 16.00 10.92 17.71 14.04 15.71 20.54 20.91 33.04 +75 4 8 20.21 17.12 17.00 11.79 12.12 11.58 15.92 12.75 13.50 15.46 20.33 31.25 +75 4 9 15.63 9.08 13.13 7.54 8.71 8.04 10.54 6.38 9.46 10.41 13.50 18.63 +75 4 10 16.54 11.00 9.87 7.46 12.62 9.62 11.79 12.29 12.54 10.83 15.00 19.25 +75 4 11 14.88 7.87 8.08 6.21 9.46 7.41 12.83 8.96 11.63 10.34 12.50 18.41 +75 4 12 6.96 3.33 6.79 4.92 7.58 5.91 10.29 6.79 9.42 7.67 9.59 12.42 +75 4 13 12.33 14.29 10.37 5.66 8.33 6.63 9.08 11.50 10.13 9.75 16.42 14.00 +75 4 14 18.46 15.59 15.96 7.87 12.83 9.38 10.00 7.87 11.87 7.62 11.71 10.58 +75 4 15 13.08 9.13 7.75 3.54 6.96 2.62 4.46 3.96 5.88 4.08 8.38 6.71 +75 4 16 8.25 11.87 8.17 3.58 7.58 5.54 5.54 8.12 9.54 6.50 14.92 11.17 +75 4 17 10.17 11.50 10.92 4.71 8.42 6.63 8.38 9.00 8.92 8.38 15.92 12.00 +75 4 18 7.41 11.08 5.46 3.92 10.54 6.92 6.79 8.75 9.50 6.67 19.87 13.17 +75 4 19 13.62 13.21 8.92 5.41 13.04 8.63 9.79 10.08 10.63 8.71 17.54 18.50 +75 4 20 19.62 16.04 17.71 7.87 10.08 9.00 11.38 9.54 12.42 9.33 11.34 9.62 +75 4 21 10.46 7.62 13.50 4.17 5.54 4.00 4.67 7.71 8.79 7.50 9.62 7.25 +75 4 22 4.58 5.63 3.29 2.42 7.41 2.29 4.04 4.71 5.88 6.83 6.54 9.17 +75 4 23 8.08 5.71 10.79 4.21 5.75 3.00 2.54 3.50 6.71 5.54 4.17 9.96 +75 4 24 4.58 1.96 12.96 2.21 4.17 1.87 1.21 1.46 4.17 1.92 6.13 5.25 +75 4 25 4.25 1.42 6.38 1.92 3.63 0.17 1.87 3.54 2.17 2.13 4.79 2.29 +75 4 26 8.75 4.12 6.29 3.00 5.96 3.17 3.08 4.54 6.04 4.75 7.92 12.12 +75 4 27 7.62 9.62 12.71 4.75 6.92 3.67 4.83 3.75 5.75 5.00 8.75 13.42 +75 4 28 10.67 11.00 9.21 4.88 12.50 6.79 7.21 9.04 11.42 8.79 17.88 18.29 +75 4 29 14.17 16.50 10.34 8.17 16.42 9.83 12.96 11.96 12.83 13.25 19.33 23.25 +75 4 30 18.50 15.75 14.92 8.38 16.50 9.87 10.41 11.34 13.33 12.67 17.88 19.33 +75 5 1 22.54 16.04 17.16 7.75 13.92 8.75 13.88 11.04 13.42 11.46 15.25 21.67 +75 5 2 14.46 10.96 11.38 6.92 14.88 2.50 4.38 2.42 4.54 5.66 6.67 15.41 +75 5 3 6.25 6.29 4.92 1.71 3.54 0.29 2.54 2.42 1.04 2.04 6.63 6.38 +75 5 4 1.63 3.96 5.37 0.46 4.08 0.63 0.92 1.42 3.42 1.67 3.83 3.79 +75 5 5 6.13 4.21 15.71 3.88 5.09 3.96 5.63 3.58 5.46 3.37 7.83 7.33 +75 5 6 8.79 8.63 21.59 6.54 8.12 5.54 6.96 5.04 7.54 5.09 13.75 6.29 +75 5 7 11.83 9.33 27.67 8.21 7.58 6.54 12.04 6.04 9.29 6.75 9.83 10.54 +75 5 8 17.92 13.13 24.00 8.67 15.50 7.04 11.08 13.54 12.17 10.79 15.41 10.88 +75 5 9 16.66 15.41 13.67 7.00 14.09 8.08 7.41 12.96 11.25 13.17 13.92 19.62 +75 5 10 15.96 11.17 9.46 6.13 10.92 8.42 9.54 9.83 10.67 12.25 12.67 20.46 +75 5 11 11.42 9.04 9.17 3.58 7.00 3.33 5.33 5.17 5.83 5.88 10.37 11.58 +75 5 12 13.54 10.04 11.87 5.21 11.63 7.75 7.33 8.25 11.00 7.00 11.58 13.54 +75 5 13 6.79 6.13 5.91 1.67 5.09 1.63 2.13 2.92 3.92 3.83 8.00 8.96 +75 5 14 6.87 4.67 9.54 2.71 8.08 4.50 6.21 7.62 6.17 7.46 14.50 14.79 +75 5 15 10.04 9.25 22.17 5.33 8.63 5.63 7.87 5.41 6.21 3.71 14.17 10.71 +75 5 16 6.71 7.08 14.92 3.54 5.00 0.79 3.13 4.50 2.29 2.29 6.46 5.58 +75 5 17 6.29 2.83 11.58 1.87 3.75 0.83 2.21 1.92 2.04 2.04 4.33 6.08 +75 5 18 6.21 4.71 3.46 1.87 3.46 1.08 3.92 3.75 1.92 2.62 8.83 5.83 +75 5 19 4.38 6.46 3.04 1.50 3.13 1.33 4.04 5.41 3.50 4.21 15.54 13.54 +75 5 20 9.67 2.50 10.00 2.50 4.29 4.04 2.54 2.96 3.58 4.04 9.08 14.25 +75 5 21 6.79 2.75 13.42 3.92 5.00 4.17 3.71 5.41 6.42 5.37 15.75 18.71 +75 5 22 6.38 4.96 16.66 5.54 7.71 4.42 6.21 7.79 8.50 9.96 14.67 18.88 +75 5 23 8.21 9.59 10.79 4.50 6.42 4.71 5.88 7.17 8.12 9.29 10.88 15.92 +75 5 24 9.00 4.04 13.33 4.08 6.38 2.88 5.71 4.83 6.38 4.58 11.58 10.00 +75 5 25 11.75 5.75 16.50 4.79 6.54 5.88 7.96 6.63 8.21 7.12 10.50 12.21 +75 5 26 10.29 5.96 19.67 6.38 7.96 7.71 9.62 9.29 10.08 7.54 12.87 7.29 +75 5 27 12.83 8.21 23.58 7.38 9.50 8.75 9.92 9.59 9.25 7.67 11.42 8.25 +75 5 28 12.25 6.67 24.54 4.83 9.92 7.83 6.87 9.59 9.67 5.79 11.58 7.12 +75 5 29 6.92 5.17 16.21 3.33 4.29 3.21 3.92 5.83 4.88 2.21 12.67 4.33 +75 5 30 9.42 4.42 12.75 2.96 6.46 4.08 5.33 7.79 7.17 3.33 19.08 13.88 +75 5 31 9.33 7.17 7.92 3.21 5.71 3.42 3.00 7.21 5.09 5.79 9.38 13.54 +75 6 1 10.96 8.79 9.50 4.75 9.62 5.58 8.38 9.75 9.29 8.75 11.75 18.34 +75 6 2 23.21 16.58 18.79 13.13 15.92 12.08 17.21 15.46 14.58 20.00 20.25 32.79 +75 6 3 9.62 4.92 10.37 3.88 5.58 3.33 5.91 4.79 6.46 6.58 6.29 11.21 +75 6 4 11.83 12.71 10.54 4.96 8.87 4.83 3.75 6.96 8.04 5.79 14.12 12.83 +75 6 5 12.33 16.17 11.46 7.50 12.87 9.92 9.13 12.71 13.25 10.50 17.58 14.17 +75 6 6 11.12 18.38 12.12 9.25 16.54 10.67 7.46 11.67 14.54 13.04 18.75 22.79 +75 6 7 6.63 9.50 5.04 3.04 4.96 3.83 2.88 8.17 6.04 5.79 14.54 10.75 +75 6 8 7.67 8.96 2.92 3.54 8.54 4.92 3.92 7.00 6.96 6.50 6.79 9.04 +75 6 9 3.96 3.67 7.00 1.79 6.08 2.46 4.58 4.00 5.75 4.67 6.29 10.04 +75 6 10 7.00 7.54 3.67 1.25 6.42 1.00 1.58 4.33 2.75 0.54 5.75 5.91 +75 6 11 7.96 1.96 2.88 1.63 4.00 1.25 1.58 3.54 2.00 2.00 10.67 6.54 +75 6 12 10.17 6.58 5.88 2.88 5.46 1.75 3.75 4.96 4.58 4.54 6.42 10.13 +75 6 13 10.08 3.96 6.87 4.17 9.29 5.46 7.58 7.21 7.12 6.92 11.08 14.62 +75 6 14 13.33 9.29 8.92 6.71 11.92 7.92 9.00 10.83 9.46 9.92 13.08 17.88 +75 6 15 10.54 10.58 8.67 4.71 9.08 6.04 5.63 8.00 7.00 5.71 11.46 13.79 +75 6 16 9.79 7.92 7.38 1.92 6.54 2.13 3.33 4.25 4.96 3.13 7.50 9.21 +75 6 17 10.75 8.79 11.12 3.75 7.33 3.96 4.42 8.21 7.38 5.58 11.71 10.92 +75 6 18 15.00 15.21 14.75 8.33 12.75 9.79 10.46 14.79 12.58 12.58 21.50 20.46 +75 6 19 15.37 12.96 16.13 9.21 12.71 8.96 11.71 14.09 12.21 11.00 20.33 19.38 +75 6 20 5.41 1.79 6.38 2.00 4.88 1.25 4.42 4.33 5.37 3.63 8.25 11.08 +75 6 21 5.79 3.96 9.33 1.92 4.17 2.29 3.54 3.67 6.50 4.12 5.00 15.63 +75 6 22 5.75 3.21 6.13 2.25 4.71 1.63 2.50 6.38 2.67 3.63 7.00 8.63 +75 6 23 11.38 6.75 5.71 4.83 6.87 4.04 6.04 6.13 6.21 5.04 7.96 11.54 +75 6 24 8.25 9.46 12.58 4.96 6.58 3.79 4.08 5.75 7.41 6.13 6.17 8.79 +75 6 25 6.17 6.25 9.62 2.37 5.71 1.04 1.79 4.50 3.42 3.37 5.63 9.96 +75 6 26 9.50 9.71 17.00 5.88 9.42 5.91 5.46 9.46 8.87 8.12 10.41 14.96 +75 6 27 10.54 9.54 14.79 4.29 7.21 3.67 6.87 9.00 8.83 3.92 13.33 10.96 +75 6 28 10.54 5.54 13.62 3.71 5.75 5.58 6.04 7.00 9.00 4.33 8.58 8.04 +75 6 29 8.17 4.71 11.54 2.50 4.25 0.25 1.83 4.63 3.37 1.17 5.21 7.25 +75 6 30 9.13 3.21 5.21 2.21 5.54 1.50 1.63 3.83 3.25 4.46 4.67 10.67 +75 7 1 6.25 3.25 5.50 1.92 3.46 1.33 2.92 2.75 2.37 2.21 6.13 11.46 +75 7 2 4.96 4.54 3.50 2.29 4.46 3.54 4.79 4.25 4.50 2.08 5.91 7.00 +75 7 3 10.83 5.17 6.21 3.58 5.41 2.83 3.96 4.67 6.42 3.37 7.67 5.63 +75 7 4 10.08 8.00 6.83 3.42 7.21 2.46 4.12 7.29 4.38 2.00 12.54 6.17 +75 7 5 8.08 4.50 4.33 3.08 4.54 2.62 4.71 6.21 8.50 4.42 13.04 7.75 +75 7 6 7.33 4.63 9.96 2.00 5.79 1.58 4.63 3.83 5.58 3.00 6.87 7.87 +75 7 7 14.33 6.83 16.00 4.63 7.92 6.54 8.50 9.29 10.08 6.13 8.79 9.54 +75 7 8 11.71 6.96 12.83 6.17 8.63 8.92 8.67 12.00 11.25 6.71 10.71 13.21 +75 7 9 10.34 6.92 9.67 5.04 10.41 6.87 8.29 9.62 8.83 6.13 9.29 16.58 +75 7 10 10.08 7.25 12.08 5.46 7.12 3.42 6.67 2.96 7.87 3.33 7.17 7.96 +75 7 11 7.83 7.58 8.79 4.33 7.75 5.00 9.13 6.67 7.96 4.58 6.67 8.83 +75 7 12 12.79 12.71 11.25 5.50 10.46 5.75 5.96 7.79 9.13 5.04 7.67 10.96 +75 7 13 13.37 8.92 12.87 7.12 9.92 7.00 6.58 5.17 10.08 6.34 9.13 9.71 +75 7 14 15.41 10.75 15.87 7.62 9.62 6.54 10.71 5.41 11.17 8.00 9.92 9.54 +75 7 15 15.04 11.58 13.54 6.96 13.75 9.29 14.37 9.62 12.21 10.17 12.38 16.08 +75 7 16 1.71 3.63 7.29 3.17 4.46 2.71 7.58 5.37 5.63 4.50 8.25 4.67 +75 7 17 8.67 6.50 2.92 2.13 6.67 2.92 2.79 4.17 2.71 2.04 5.33 7.00 +75 7 18 7.00 9.54 7.96 3.96 7.71 4.63 5.21 5.71 6.67 4.29 13.37 5.37 +75 7 19 11.79 12.58 12.00 5.04 8.42 6.67 8.54 11.21 10.63 8.79 16.21 12.46 +75 7 20 10.13 10.71 9.71 5.13 10.75 5.58 9.79 7.75 9.71 6.08 15.25 15.75 +75 7 21 12.58 13.17 13.08 5.71 15.59 9.08 13.79 12.75 13.25 11.71 20.83 21.34 +75 7 22 18.88 16.29 20.04 9.71 20.12 11.71 17.29 11.08 15.63 12.25 16.88 15.16 +75 7 23 15.96 14.88 13.42 8.54 15.67 9.13 14.62 13.42 13.13 10.83 16.75 15.87 +75 7 24 16.75 12.87 12.04 7.96 15.75 8.67 13.75 11.79 11.04 10.21 15.09 22.46 +75 7 25 7.87 7.58 8.96 2.54 9.59 4.75 9.59 6.67 9.46 7.33 13.88 13.59 +75 7 26 4.17 5.41 9.13 3.00 6.87 4.79 9.46 7.08 8.63 5.71 15.12 15.63 +75 7 27 5.33 2.83 5.21 1.83 3.17 0.92 4.08 3.00 2.92 1.46 11.54 11.08 +75 7 28 6.34 6.04 6.04 1.96 4.88 3.33 5.83 10.17 7.38 7.92 17.62 15.46 +75 7 29 9.00 6.25 12.04 3.50 5.75 4.83 6.04 8.75 8.71 6.92 12.62 13.96 +75 7 30 7.25 9.25 11.96 2.62 6.58 3.54 3.75 5.83 6.96 5.17 7.38 10.21 +75 7 31 9.21 10.41 21.42 5.21 6.87 3.46 6.04 4.25 6.54 2.50 3.88 6.87 +75 8 1 8.12 5.29 16.38 2.96 4.29 0.83 2.71 2.58 3.37 1.63 3.71 13.92 +75 8 2 7.41 1.08 11.12 2.29 2.54 0.46 3.33 1.58 4.75 2.37 4.29 7.29 +75 8 3 5.83 2.46 5.54 2.62 2.00 1.25 4.38 0.46 4.08 1.96 3.71 5.21 +75 8 4 9.50 5.13 5.25 5.17 8.17 4.71 3.83 6.63 7.92 6.75 7.29 11.71 +75 8 5 12.46 15.12 10.96 9.33 14.96 8.63 7.75 9.50 11.63 8.92 8.29 15.87 +75 8 6 14.71 15.75 11.46 10.63 14.62 9.25 9.46 12.04 13.70 12.29 20.12 17.79 +75 8 7 8.92 10.58 6.46 5.09 10.34 6.42 4.83 9.46 9.71 8.54 20.08 14.21 +75 8 8 8.42 3.29 8.08 3.79 4.67 1.54 4.83 2.88 3.50 3.29 7.87 6.00 +75 8 9 17.83 8.46 11.79 7.92 7.54 4.75 5.29 8.92 9.54 6.67 9.21 14.50 +75 8 10 8.08 3.54 5.63 2.75 2.67 1.04 0.92 2.54 4.75 0.46 6.54 6.50 +75 8 11 6.13 5.41 5.79 3.92 5.58 2.29 2.75 1.38 5.41 2.96 4.79 6.54 +75 8 12 11.92 7.58 9.59 5.41 9.04 4.63 5.88 4.96 7.83 1.92 6.75 4.00 +75 8 13 6.04 4.38 5.13 3.00 4.96 2.92 2.62 4.75 7.46 4.54 6.42 9.38 +75 8 14 6.67 7.38 7.33 3.96 6.71 3.83 3.25 6.38 6.54 2.42 12.08 6.79 +75 8 15 6.87 7.87 6.42 3.46 8.96 4.96 5.75 6.00 8.79 6.25 10.75 8.46 +75 8 16 8.46 4.92 10.13 4.92 6.17 5.17 9.54 7.58 8.00 8.12 8.50 12.38 +75 8 17 3.67 5.29 4.67 1.79 3.37 0.92 2.79 2.13 0.87 2.25 8.38 8.21 +75 8 18 4.92 6.96 5.46 2.71 3.58 2.79 5.33 4.92 6.54 5.13 9.00 11.08 +75 8 19 14.25 13.50 13.92 6.17 11.92 6.92 8.38 11.96 11.21 8.92 15.25 14.25 +75 8 20 14.67 10.54 12.92 6.29 14.17 9.08 11.50 10.58 12.08 10.96 16.04 19.75 +75 8 21 13.42 9.87 8.25 4.33 10.00 5.71 8.42 7.50 8.50 7.21 12.29 18.75 +75 8 22 12.12 8.25 10.00 7.00 9.13 5.66 9.42 7.08 8.46 7.87 9.13 16.38 +75 8 23 9.50 6.92 8.63 4.88 8.58 5.09 6.29 7.96 8.08 7.21 11.63 13.37 +75 8 24 5.46 4.17 6.46 2.17 5.58 3.33 6.34 6.00 7.29 3.54 10.00 12.38 +75 8 25 5.37 5.83 6.34 1.96 3.83 2.42 5.00 6.92 6.38 4.88 12.71 13.70 +75 8 26 3.13 5.66 7.21 1.46 1.46 1.13 2.46 6.96 5.37 4.33 12.58 11.12 +75 8 27 4.21 3.75 3.46 1.50 2.08 1.58 3.00 3.04 2.96 1.29 7.00 4.75 +75 8 28 4.58 2.75 3.33 1.50 2.75 0.75 3.17 2.75 2.75 2.25 7.62 7.83 +75 8 29 12.87 9.42 14.50 5.75 7.04 4.46 8.29 8.46 7.83 7.58 11.50 17.41 +75 8 30 17.50 9.71 16.62 9.25 8.12 6.79 14.00 6.58 10.17 10.63 8.04 16.00 +75 8 31 8.08 3.46 9.13 3.96 2.46 1.75 6.42 2.88 4.79 1.46 8.67 9.79 +75 9 1 5.96 2.71 5.29 1.67 2.96 0.58 5.50 3.25 2.25 1.46 12.42 11.04 +75 9 2 7.33 7.58 8.87 3.58 6.17 3.83 7.46 8.63 7.21 4.67 14.25 14.42 +75 9 3 9.08 5.54 7.71 3.88 4.96 2.33 6.54 2.62 6.71 5.50 8.54 12.38 +75 9 4 9.17 7.83 9.17 5.04 8.29 5.29 9.71 6.79 8.46 6.63 15.37 17.12 +75 9 5 7.08 6.34 7.50 3.88 6.50 3.13 7.04 4.92 6.83 3.83 10.50 13.54 +75 9 6 7.21 7.00 6.46 1.63 6.25 3.17 5.09 5.17 6.21 3.88 7.54 7.79 +75 9 7 6.08 4.00 5.66 1.96 2.08 1.38 4.96 4.96 3.92 1.92 9.83 8.21 +75 9 8 11.50 9.75 11.38 5.75 10.25 6.75 10.00 9.71 10.13 9.42 17.62 18.79 +75 9 9 16.62 13.17 13.00 5.54 13.62 7.87 11.50 9.92 12.08 9.29 15.34 18.75 +75 9 10 10.37 9.59 9.42 3.37 9.79 5.79 9.33 6.96 8.75 6.42 12.21 14.83 +75 9 11 15.83 16.92 12.46 5.63 14.62 8.12 8.79 6.75 9.29 3.33 12.29 12.12 +75 9 12 16.88 10.67 12.54 8.33 12.92 8.50 12.87 8.63 10.58 10.21 13.21 18.75 +75 9 13 10.25 8.83 13.75 3.54 5.17 3.92 9.25 4.96 5.71 5.00 8.92 16.46 +75 9 14 20.50 12.83 16.46 8.21 10.41 8.17 12.92 9.38 10.13 11.08 18.12 25.46 +75 9 15 10.37 7.21 10.25 3.25 5.33 2.92 7.75 5.91 6.50 6.46 12.62 16.33 +75 9 16 5.63 3.88 7.83 1.38 3.96 4.21 4.92 5.00 7.46 3.92 9.83 13.42 +75 9 17 9.04 5.71 14.50 4.21 4.63 3.79 6.29 6.04 7.25 5.04 10.71 14.17 +75 9 18 9.38 5.83 8.96 4.42 4.75 4.12 6.63 5.04 5.96 5.00 8.58 13.08 +75 9 19 14.37 17.08 11.83 5.71 13.00 9.29 8.25 13.25 11.54 11.17 18.91 18.75 +75 9 20 12.46 11.96 11.04 5.50 13.13 8.33 11.42 9.62 11.29 10.96 19.58 25.58 +75 9 21 8.75 10.21 7.17 3.79 7.00 5.50 9.29 8.08 8.50 7.79 18.00 18.63 +75 9 22 22.21 20.91 19.67 12.04 16.21 14.96 16.25 19.29 17.54 18.12 28.79 30.54 +75 9 23 12.33 10.54 11.87 6.83 12.42 7.92 12.25 10.00 10.67 10.46 19.33 26.96 +75 9 24 23.54 20.08 19.04 9.38 15.37 12.96 15.67 18.25 15.37 14.62 25.50 25.41 +75 9 25 13.50 12.12 11.50 6.58 12.67 8.04 12.42 10.67 11.87 10.21 13.59 17.75 +75 9 26 11.50 6.71 8.75 3.88 5.25 3.58 8.12 4.17 7.04 4.50 7.25 14.83 +75 9 27 19.75 15.04 18.41 9.25 13.92 10.58 14.12 11.21 12.21 13.13 12.62 19.12 +75 9 28 20.33 16.92 17.33 8.67 13.59 8.50 9.96 10.13 10.71 9.46 13.21 15.79 +75 9 29 19.79 12.75 17.83 11.71 12.46 10.29 14.42 10.63 14.46 14.46 14.88 22.37 +75 9 30 13.17 11.25 14.88 4.79 8.92 6.75 8.67 6.34 8.29 6.83 7.71 13.46 +75 10 1 13.79 11.04 14.67 6.29 10.29 7.04 11.25 6.46 10.50 6.17 9.17 16.71 +75 10 2 19.00 17.00 16.04 8.38 12.75 9.42 9.75 9.71 11.04 8.42 11.50 16.58 +75 10 3 13.29 13.25 11.17 5.79 14.71 9.04 13.88 11.38 12.38 11.63 22.79 24.67 +75 10 4 16.25 15.46 15.46 8.12 20.67 12.46 18.46 14.67 16.04 14.00 26.71 29.08 +75 10 5 14.25 14.83 15.21 5.91 12.25 8.50 13.33 10.34 11.58 10.29 18.05 25.00 +75 10 6 3.25 3.21 4.38 1.71 1.83 1.17 5.09 2.13 3.88 3.54 8.71 12.46 +75 10 7 7.21 7.12 4.08 1.25 3.63 1.46 2.08 3.21 3.63 1.25 5.21 5.54 +75 10 8 4.21 5.75 6.58 0.33 1.75 0.17 1.08 1.13 0.29 0.21 5.17 6.96 +75 10 9 4.92 3.21 3.75 1.00 3.21 0.79 4.58 2.67 3.25 2.46 8.58 8.25 +75 10 10 12.08 12.12 14.17 5.50 9.17 5.29 8.38 6.38 7.96 4.79 11.21 12.54 +75 10 11 8.42 3.79 13.42 3.92 4.42 1.87 6.00 2.88 5.09 1.67 6.08 8.38 +75 10 12 5.37 7.12 4.92 0.96 4.96 2.13 1.46 3.50 4.17 2.42 10.58 8.63 +75 10 13 17.62 15.79 13.13 3.37 13.04 9.25 7.96 11.21 7.04 7.83 16.13 13.17 +75 10 14 9.83 9.29 11.54 3.00 10.25 6.08 7.08 5.54 8.58 9.08 11.00 16.00 +75 10 15 16.21 12.17 12.58 5.00 10.37 6.13 6.96 6.46 7.75 5.13 7.17 11.96 +75 10 16 12.12 10.08 7.62 3.50 8.50 4.63 5.09 5.66 6.67 5.71 10.58 9.21 +75 10 17 4.21 5.13 5.91 0.42 3.54 0.29 6.04 1.54 2.25 1.25 4.46 5.58 +75 10 18 11.21 16.75 6.42 2.21 10.08 4.67 4.29 7.00 6.08 4.71 11.21 12.04 +75 10 19 17.79 22.46 16.50 9.71 19.38 12.83 14.00 14.33 12.83 12.50 22.79 24.41 +75 10 20 22.00 24.41 18.21 9.67 23.13 13.70 16.04 15.87 15.34 15.37 24.04 27.84 +75 10 21 23.83 25.84 18.88 9.59 22.79 14.37 16.66 16.71 14.75 12.50 20.67 24.04 +75 10 22 27.42 22.54 24.41 14.42 24.41 19.55 21.42 19.29 20.30 19.79 23.50 32.46 +75 10 23 13.75 16.42 15.92 8.29 12.75 8.25 11.75 10.54 13.62 12.17 20.88 19.75 +75 10 24 17.50 17.25 15.29 9.00 13.46 8.79 8.04 12.46 13.00 12.46 24.58 22.08 +75 10 25 17.75 21.04 14.42 12.62 18.84 12.71 9.96 16.04 17.08 15.34 26.71 27.25 +75 10 26 14.67 18.16 12.42 9.50 15.00 12.17 3.46 14.33 16.21 12.17 19.17 23.63 +75 10 27 12.21 18.79 10.25 7.25 14.29 8.42 2.29 9.87 12.83 8.04 13.92 17.71 +75 10 28 10.75 15.54 11.54 8.29 12.25 9.46 5.50 7.41 11.54 7.00 13.88 13.79 +75 10 29 15.63 18.08 13.83 7.92 14.00 10.63 9.46 9.92 12.79 8.29 11.46 15.09 +75 10 30 19.92 17.96 17.21 9.50 14.29 9.79 11.42 12.75 13.37 12.92 19.04 20.58 +75 10 31 15.25 10.34 15.16 7.41 10.79 7.92 12.46 9.83 11.92 11.34 12.00 19.12 +75 11 1 14.12 11.92 9.71 4.08 8.54 3.67 9.92 4.79 6.58 6.17 11.21 12.71 +75 11 2 15.54 15.29 13.75 6.46 14.62 9.13 9.71 12.21 11.08 10.29 22.88 21.62 +75 11 3 9.75 12.46 8.25 4.79 12.33 5.88 11.67 8.58 9.54 8.75 20.08 22.46 +75 11 4 17.92 13.79 13.92 5.33 12.83 8.46 12.50 11.29 12.42 12.29 19.04 21.21 +75 11 5 10.00 10.13 8.46 2.08 9.08 2.54 6.38 3.63 7.08 5.25 10.71 14.21 +75 11 6 8.75 4.67 6.87 1.25 5.29 1.96 8.58 2.54 4.88 4.38 6.83 16.29 +75 11 7 3.33 2.46 8.38 0.37 3.08 0.08 5.50 0.63 0.37 0.75 5.88 8.25 +75 11 8 9.08 7.08 14.71 1.67 7.00 3.25 8.79 4.71 4.67 3.58 7.29 8.67 +75 11 9 12.42 8.92 16.13 4.25 6.21 3.71 11.67 7.04 5.54 5.79 7.96 11.92 +75 11 10 6.46 7.21 8.00 3.29 4.50 1.96 6.13 4.42 6.87 6.50 4.29 16.42 +75 11 11 7.33 4.96 8.00 0.67 2.58 0.29 5.66 2.75 6.29 3.50 4.21 10.25 +75 11 12 17.04 14.12 16.04 5.79 11.96 8.58 9.71 8.67 7.58 5.79 7.92 12.04 +75 11 13 11.38 9.00 11.71 3.67 11.67 5.63 6.96 6.83 5.54 4.83 6.46 12.67 +75 11 14 9.75 9.67 9.25 2.54 7.71 3.88 4.96 4.17 5.58 3.25 5.58 9.75 +75 11 15 13.67 14.00 11.75 5.17 11.34 6.54 9.87 8.54 9.87 7.75 11.54 14.00 +75 11 16 27.63 20.25 23.38 15.12 18.21 11.04 18.21 15.00 13.96 15.67 22.25 36.08 +75 11 17 22.75 19.12 23.16 13.00 13.00 7.75 14.00 10.41 11.08 11.46 18.96 29.63 +75 11 18 9.21 7.33 9.96 2.17 8.00 3.08 11.54 5.91 6.75 5.66 10.67 16.25 +75 11 19 12.87 13.00 9.83 8.50 16.96 10.46 18.54 14.50 14.42 14.21 16.92 25.08 +75 11 20 11.04 5.13 7.79 3.37 5.71 2.46 7.08 2.67 4.21 3.88 3.67 9.79 +75 11 21 2.67 2.17 1.50 0.58 2.71 0.37 0.63 2.04 0.42 1.21 5.79 8.12 +75 11 22 18.21 17.29 10.37 8.71 13.42 9.25 9.38 11.96 11.63 11.12 18.75 19.00 +75 11 23 14.29 7.50 12.21 5.83 8.33 5.66 9.21 5.75 10.29 9.38 12.25 14.25 +75 11 24 9.17 10.88 8.71 3.33 10.13 5.13 10.92 8.17 8.63 8.54 14.92 17.83 +75 11 25 13.13 15.37 9.83 5.96 12.42 6.17 11.87 8.50 10.41 8.21 15.29 17.16 +75 11 26 14.83 11.38 7.92 4.42 10.79 6.00 12.00 7.21 9.54 8.21 15.79 17.08 +75 11 27 19.00 18.41 16.46 9.71 19.46 10.50 18.66 12.29 14.92 14.58 20.17 28.42 +75 11 28 7.50 6.25 6.34 2.50 6.96 3.25 10.83 5.41 8.54 6.92 8.67 21.37 +75 11 29 6.38 4.63 4.83 0.17 3.63 0.92 8.38 1.87 5.00 5.21 7.67 20.04 +75 11 30 10.96 10.34 6.71 0.71 8.00 4.25 10.63 4.04 6.34 5.21 8.79 16.25 +75 12 1 20.30 20.04 18.16 8.54 18.91 9.71 13.96 11.00 14.17 10.17 17.71 21.04 +75 12 2 26.96 22.08 20.67 14.33 19.55 12.92 16.62 16.88 15.83 17.83 26.38 36.08 +75 12 3 14.09 10.04 13.54 5.83 7.62 4.04 10.46 6.92 8.00 6.92 12.38 23.00 +75 12 4 7.38 5.37 7.50 2.79 7.92 3.42 11.29 6.21 10.41 6.50 9.75 18.00 +75 12 5 8.75 4.42 5.96 2.54 5.33 1.67 10.46 5.09 7.17 6.75 7.21 17.21 +75 12 6 7.79 3.67 7.92 2.58 2.92 0.96 6.29 2.29 5.58 4.67 5.58 12.33 +75 12 7 8.33 3.58 6.79 3.25 4.83 2.50 8.87 4.38 6.83 5.96 9.79 20.17 +75 12 8 6.29 2.29 10.04 2.04 2.21 0.13 6.04 0.67 2.08 3.25 4.58 12.58 +75 12 9 5.63 3.96 7.25 1.17 1.25 0.13 7.29 0.21 2.29 1.75 5.13 13.67 +75 12 10 4.33 5.50 6.92 0.58 1.13 0.00 5.71 0.08 1.83 0.92 4.58 8.79 +75 12 11 2.21 3.00 3.08 0.58 4.79 2.37 5.33 5.25 5.63 4.42 13.21 17.46 +75 12 12 20.00 16.75 18.08 9.67 10.00 6.38 11.63 7.62 9.83 8.54 19.00 24.83 +75 12 13 13.62 7.00 18.50 4.08 3.71 1.50 9.50 1.96 6.63 4.67 6.79 12.87 +75 12 14 8.29 1.54 9.08 1.04 2.37 1.13 8.42 2.08 6.71 4.21 6.50 15.67 +75 12 15 8.58 2.62 9.92 2.04 1.21 0.21 7.92 1.71 3.37 2.17 4.08 13.00 +75 12 16 9.08 3.00 10.50 3.54 2.62 2.00 9.42 3.83 7.12 5.88 10.17 18.54 +75 12 17 16.17 13.33 24.41 8.50 8.12 5.96 12.04 5.79 9.00 6.71 11.04 16.62 +75 12 18 10.67 2.50 9.87 1.79 3.04 0.67 10.00 2.13 4.75 3.42 6.92 14.83 +75 12 19 6.71 0.54 6.92 1.21 0.54 0.25 6.67 1.08 2.58 2.08 4.46 12.21 +75 12 20 3.37 2.50 3.92 0.33 1.67 3.04 9.17 2.25 6.79 4.79 8.54 14.75 +75 12 21 9.87 9.96 8.92 3.08 7.87 5.71 12.33 6.79 10.58 9.21 16.88 20.04 +75 12 22 10.58 11.87 7.96 4.79 8.04 6.87 10.88 10.00 10.83 11.46 20.38 21.25 +75 12 23 16.17 14.04 14.29 7.17 8.71 6.87 12.50 9.33 12.08 10.50 13.70 20.58 +75 12 24 12.67 12.62 7.92 3.29 8.42 4.33 12.21 8.58 10.58 8.12 15.46 21.75 +75 12 25 18.71 12.33 12.58 9.33 12.71 8.75 13.96 11.00 12.87 13.59 15.79 23.00 +75 12 26 8.38 5.29 6.96 4.29 7.04 4.00 11.38 5.91 10.17 7.25 14.21 20.00 +75 12 27 12.92 12.92 11.92 5.79 7.38 6.83 13.17 13.04 11.96 12.42 20.08 21.96 +75 12 28 16.29 15.04 14.37 8.00 9.87 8.33 13.04 11.67 13.21 12.71 14.71 19.17 +75 12 29 12.42 13.62 12.04 5.25 8.46 6.42 9.46 8.75 9.42 8.71 14.58 17.50 +75 12 30 19.17 15.54 18.34 9.04 13.17 11.25 17.79 14.71 16.25 15.71 21.92 30.91 +75 12 31 15.59 12.33 13.42 2.37 4.08 1.17 7.08 4.25 5.91 6.34 11.38 19.55 +76 1 1 18.34 17.67 14.83 8.00 16.62 10.13 13.17 9.04 13.13 5.75 11.38 14.96 +76 1 2 29.20 25.29 20.25 15.46 23.58 14.88 18.96 17.25 17.62 18.29 24.71 27.54 +76 1 3 11.25 9.59 7.62 5.46 9.46 4.00 13.29 6.38 10.13 9.00 12.12 23.29 +76 1 4 12.67 12.79 12.92 6.46 12.92 8.71 13.62 10.41 13.13 6.96 14.04 17.12 +76 1 5 12.79 11.67 12.58 4.96 9.71 6.08 15.63 10.13 13.04 10.63 15.16 19.04 +76 1 6 11.17 12.08 13.37 3.33 9.92 7.50 14.83 13.33 13.13 10.96 18.71 19.33 +76 1 7 17.79 15.75 15.71 5.88 10.29 9.67 14.58 14.83 13.67 15.59 23.63 25.70 +76 1 8 15.59 16.96 15.41 7.87 11.08 9.50 14.37 5.50 11.34 5.25 4.21 11.42 +76 1 9 15.21 14.62 11.75 3.92 7.08 4.50 7.17 2.88 7.83 1.46 5.33 8.00 +76 1 10 18.00 20.75 14.29 12.96 23.29 15.04 21.29 18.63 19.12 16.38 23.83 28.42 +76 1 11 14.12 11.67 11.25 9.54 16.62 10.92 19.12 18.46 16.38 14.62 19.00 26.71 +76 1 12 12.58 12.12 11.67 6.92 14.25 8.29 16.42 10.88 14.33 10.88 17.41 23.50 +76 1 13 13.79 14.46 10.63 4.83 8.46 5.63 11.46 9.83 11.50 9.08 16.46 18.29 +76 1 14 9.13 8.87 8.67 4.79 9.13 5.21 11.92 8.96 10.96 10.46 16.75 22.04 +76 1 15 2.92 7.41 4.67 2.04 4.92 2.88 8.38 5.75 8.29 7.46 11.21 16.54 +76 1 16 1.63 4.33 4.29 0.21 1.17 0.96 8.25 1.17 5.17 4.46 6.38 14.50 +76 1 17 5.13 7.38 3.67 0.63 5.71 2.25 3.42 4.63 4.38 4.33 10.54 14.04 +76 1 18 16.50 15.09 11.46 7.54 12.83 8.12 13.83 12.29 12.58 12.71 18.88 25.00 +76 1 19 19.79 21.00 16.88 11.96 20.83 12.96 20.75 18.66 19.41 16.25 25.75 30.63 +76 1 20 24.25 23.50 17.58 15.34 26.25 16.75 25.96 21.29 22.50 21.79 29.33 40.12 +76 1 21 18.54 19.17 12.50 11.17 21.46 14.71 20.79 19.33 18.63 18.58 23.54 32.55 +76 1 22 20.58 19.70 15.67 10.71 20.12 14.29 21.67 18.54 20.17 18.71 22.83 29.29 +76 1 23 22.54 18.41 13.88 10.83 16.46 9.00 14.12 12.58 12.92 10.00 20.21 23.54 +76 1 24 19.92 17.25 19.08 8.96 10.00 8.08 13.29 8.50 12.38 12.46 22.13 32.91 +76 1 25 16.96 10.34 17.46 5.83 7.71 5.13 10.21 3.00 9.50 7.75 14.00 23.58 +76 1 26 11.96 7.62 11.00 6.54 7.25 5.09 11.46 7.21 10.00 9.04 12.87 20.88 +76 1 27 13.13 12.04 9.13 4.04 9.96 6.04 9.25 7.08 8.08 6.87 11.21 13.79 +76 1 28 20.30 11.34 20.79 12.21 12.29 11.08 16.71 7.41 16.50 18.08 6.54 21.34 +76 1 29 26.00 18.71 27.12 15.87 21.75 20.21 23.13 21.87 22.21 20.12 21.87 29.33 +76 1 30 21.17 14.37 26.08 12.33 17.46 16.83 23.50 19.12 18.63 16.29 17.88 34.25 +76 1 31 11.46 9.50 17.67 4.88 6.96 4.67 18.21 8.92 11.63 7.96 8.54 22.13 +76 2 1 9.04 6.13 12.04 3.04 3.83 1.58 11.58 5.54 5.66 6.17 8.00 13.79 +76 2 2 10.96 10.96 14.33 3.88 6.46 4.08 11.21 8.58 7.33 7.46 10.54 17.33 +76 2 3 13.37 10.96 15.37 4.88 9.83 5.09 10.58 8.63 8.79 5.91 7.04 15.34 +76 2 4 11.42 10.54 17.41 6.04 8.75 6.58 13.62 9.67 11.21 9.46 10.46 22.50 +76 2 5 11.46 11.87 14.00 4.33 7.21 3.08 12.79 7.87 11.12 10.75 9.04 18.79 +76 2 6 8.42 12.46 4.33 2.04 6.46 1.96 4.58 5.46 7.12 4.79 9.29 11.96 +76 2 7 16.75 16.08 12.04 9.17 14.04 9.50 9.50 10.88 13.62 9.87 17.21 18.08 +76 2 8 10.50 12.71 9.75 4.42 7.79 4.88 11.17 7.58 9.21 7.33 15.12 13.88 +76 2 9 16.46 19.08 16.83 8.71 15.79 11.29 16.17 16.83 16.58 15.71 27.58 28.71 +76 2 10 14.46 19.75 11.25 7.54 13.92 7.41 15.16 11.96 13.04 11.21 23.16 22.58 +76 2 11 16.88 18.46 10.67 8.50 16.79 7.17 17.12 12.67 13.29 10.83 21.87 23.87 +76 2 12 18.63 19.95 15.21 11.87 19.00 11.63 17.41 15.34 15.12 12.21 17.79 22.21 +76 2 13 12.12 7.25 14.04 5.63 5.09 2.37 8.79 3.21 4.38 3.54 5.83 8.38 +76 2 14 6.96 7.08 6.96 2.75 3.54 3.92 4.25 7.41 7.96 6.04 13.50 16.96 +76 2 15 8.00 12.46 13.33 5.00 6.38 4.08 9.42 4.96 6.67 6.63 6.00 11.12 +76 2 16 11.67 9.83 10.88 3.33 6.75 2.75 8.50 5.54 6.42 5.41 8.54 11.42 +76 2 17 9.04 11.34 7.79 2.75 9.13 5.75 4.38 8.25 8.21 6.42 14.71 14.88 +76 2 18 5.29 11.25 5.13 1.17 6.17 2.21 2.92 5.58 4.88 2.37 11.34 12.54 +76 2 19 16.04 19.33 12.00 4.92 12.71 7.38 10.08 10.13 10.34 5.58 13.92 16.25 +76 2 20 17.25 21.84 14.42 9.59 15.25 10.41 12.25 13.54 13.29 10.00 17.54 22.13 +76 2 21 12.62 13.79 12.83 7.25 9.59 5.09 10.17 7.00 10.63 8.87 11.04 13.96 +76 2 22 18.16 18.84 15.46 10.83 13.88 11.71 12.08 14.67 15.92 16.92 22.71 25.25 +76 2 23 14.46 7.79 14.37 7.12 6.54 3.79 11.29 6.29 8.17 6.50 10.34 14.62 +76 2 24 5.66 8.38 8.75 4.88 7.58 5.21 13.29 14.62 11.38 10.63 21.04 25.58 +76 2 25 10.08 11.46 14.33 5.04 8.58 6.21 14.17 13.33 13.70 13.79 19.79 22.67 +76 2 26 4.42 7.29 5.88 2.00 3.88 1.83 8.46 7.00 7.12 6.08 14.25 15.37 +76 2 27 7.25 10.71 6.42 4.58 7.04 3.17 5.75 6.58 7.71 6.79 11.50 11.29 +76 2 28 8.54 10.54 9.46 4.92 7.50 5.29 6.71 8.04 10.58 9.96 14.75 16.83 +76 2 29 10.41 10.79 11.08 5.96 8.58 6.21 11.71 10.58 10.34 10.17 17.16 22.29 +76 3 1 6.13 4.79 3.42 3.21 7.50 2.50 6.50 3.67 5.54 4.04 7.75 11.42 +76 3 2 7.96 7.75 7.50 4.00 8.92 5.37 6.96 5.25 7.79 5.79 8.87 11.46 +76 3 3 7.62 12.46 9.62 5.09 8.83 4.54 10.04 8.33 10.21 8.42 15.54 13.29 +76 3 4 11.92 14.92 10.34 6.75 12.08 6.96 7.87 12.12 11.67 11.75 17.62 19.12 +76 3 5 15.50 19.38 9.83 9.38 18.00 13.83 11.54 15.12 16.25 15.83 17.75 23.96 +76 3 6 21.00 18.54 21.17 10.25 20.21 15.00 20.79 12.75 16.79 14.33 16.29 23.91 +76 3 7 20.25 21.17 17.37 8.33 19.08 10.83 14.33 13.04 12.17 12.71 15.09 20.96 +76 3 8 10.88 13.92 5.91 3.29 11.46 3.25 7.54 7.00 8.08 6.75 11.67 9.29 +76 3 9 20.00 16.38 10.75 6.83 14.92 9.08 7.58 9.42 12.17 8.38 16.50 20.08 +76 3 10 23.96 18.71 18.46 12.04 18.75 11.75 12.71 13.67 16.46 15.92 17.83 22.92 +76 3 11 14.83 9.13 13.00 8.17 9.96 6.79 11.34 9.46 11.00 11.87 11.58 16.04 +76 3 12 25.33 24.04 19.67 11.12 20.21 13.96 15.92 17.92 15.37 13.13 16.71 21.71 +76 3 13 19.04 15.09 14.29 8.25 11.25 6.29 12.00 7.83 8.38 7.33 11.42 11.17 +76 3 14 12.87 14.83 12.21 6.50 13.13 9.00 15.37 11.92 13.21 14.04 16.50 24.25 +76 3 15 3.71 8.50 3.17 0.67 4.00 1.33 9.59 6.04 7.87 7.29 10.21 19.00 +76 3 16 8.21 9.54 9.33 3.83 9.21 3.88 10.79 7.41 10.54 8.25 11.63 17.16 +76 3 17 7.50 5.29 9.25 2.62 3.00 0.83 8.04 2.21 4.54 6.08 5.63 8.17 +76 3 18 16.88 16.62 13.46 5.58 13.62 6.38 11.12 11.42 10.67 7.54 12.08 11.79 +76 3 19 13.46 10.96 18.29 8.50 11.79 10.88 14.58 11.42 13.92 13.21 13.04 26.12 +76 3 20 19.29 18.00 22.67 14.92 16.92 14.09 16.88 14.12 19.83 19.67 20.04 29.17 +76 3 21 9.54 10.21 7.58 3.67 8.33 3.88 6.83 6.21 7.75 8.54 9.38 11.21 +76 3 22 12.33 5.37 11.46 5.13 3.83 1.79 5.71 2.50 6.92 4.71 9.83 10.00 +76 3 23 8.83 11.83 7.83 4.83 10.17 6.34 5.96 7.12 11.25 8.54 12.54 20.17 +76 3 24 11.83 12.96 13.13 6.46 11.92 6.46 12.96 10.79 12.87 12.00 15.41 18.79 +76 3 25 18.46 17.75 18.88 8.96 19.83 10.34 15.29 11.54 15.96 10.96 17.58 16.96 +76 3 26 13.92 17.21 13.04 9.00 17.29 10.00 16.58 14.04 15.59 14.21 23.00 24.41 +76 3 27 14.25 14.62 14.54 9.13 20.46 12.17 20.88 17.75 20.83 18.41 23.21 28.58 +76 3 28 17.21 16.13 18.16 9.17 17.04 13.04 18.71 17.50 19.67 19.75 24.41 31.20 +76 3 29 16.17 14.54 13.83 9.92 17.16 11.12 17.00 14.00 16.04 15.67 20.30 26.25 +76 3 30 14.29 12.83 12.21 9.17 16.71 8.50 15.63 13.54 15.12 13.79 17.41 20.46 +76 3 31 14.96 14.21 13.13 9.92 16.71 10.41 17.00 12.67 16.21 16.96 20.54 25.00 +76 4 1 7.58 9.21 7.33 3.96 7.96 3.37 6.87 4.00 7.75 7.58 10.37 13.67 +76 4 2 17.88 12.17 13.08 7.79 10.67 5.41 10.79 7.87 9.17 9.67 16.17 18.63 +76 4 3 14.96 12.17 12.83 6.67 13.13 8.08 12.87 10.96 13.50 14.33 17.79 25.50 +76 4 4 10.67 9.50 8.50 5.46 10.63 5.66 12.21 8.92 12.08 10.58 14.79 18.08 +76 4 5 13.79 8.21 9.42 8.00 13.04 8.46 16.38 14.29 14.62 13.79 16.33 23.91 +76 4 6 20.96 10.37 8.54 7.75 14.37 7.79 14.71 13.42 13.21 14.75 14.33 19.92 +76 4 7 13.21 12.25 15.09 6.79 12.04 5.58 10.63 8.04 9.29 10.58 11.08 13.79 +76 4 8 7.54 3.54 7.87 2.62 4.50 2.04 7.21 4.25 5.79 5.58 8.54 13.96 +76 4 9 5.96 2.17 5.13 2.08 3.79 1.33 6.00 3.33 5.79 5.17 9.79 13.67 +76 4 10 11.50 11.67 11.17 5.33 8.54 7.46 10.34 15.87 13.08 12.87 27.00 23.33 +76 4 11 16.88 14.50 16.71 8.21 10.13 5.88 11.34 7.50 9.79 7.96 13.75 14.88 +76 4 12 12.75 9.46 15.46 6.04 5.88 2.54 8.29 4.17 8.04 6.75 12.79 10.41 +76 4 13 20.91 16.46 14.09 10.04 15.87 12.17 15.00 15.83 15.50 15.25 22.54 25.04 +76 4 14 27.84 21.37 20.38 13.79 17.79 12.92 17.67 15.50 15.79 17.58 20.46 26.87 +76 4 15 14.71 10.13 15.96 6.29 8.38 4.83 8.79 4.96 8.63 8.08 9.50 11.96 +76 4 16 6.50 2.67 4.79 1.50 5.50 0.58 6.46 2.54 5.91 4.17 11.17 15.87 +76 4 17 4.92 3.96 5.13 1.54 5.46 3.33 9.42 4.96 8.50 6.83 12.79 16.17 +76 4 18 4.33 0.54 5.75 0.63 2.50 0.21 5.63 1.46 2.13 1.42 7.96 7.17 +76 4 19 11.29 8.42 11.54 1.46 4.46 1.38 5.88 5.29 7.58 5.71 6.34 9.25 +76 4 20 13.88 10.67 10.63 3.29 6.13 4.21 8.00 6.75 9.21 7.92 9.13 15.50 +76 4 21 17.71 11.00 13.37 5.83 9.25 9.59 8.83 11.21 11.04 8.42 11.96 12.42 +76 4 22 16.04 12.25 16.42 6.83 10.41 10.17 14.79 10.21 11.42 8.38 11.50 15.29 +76 4 23 10.29 7.25 14.37 4.12 6.25 3.67 9.96 6.21 6.38 4.63 9.83 7.50 +76 4 24 5.88 3.33 14.96 4.38 4.42 3.33 9.87 3.63 6.25 3.67 8.75 5.71 +76 4 25 8.96 3.67 17.71 4.71 4.79 5.00 11.25 5.75 8.38 7.54 11.54 5.96 +76 4 26 11.38 5.21 17.25 5.13 5.91 6.00 8.25 5.54 8.33 6.25 11.75 8.21 +76 4 27 12.21 6.34 14.79 5.88 7.04 5.21 9.59 5.04 7.33 4.75 7.29 9.21 +76 4 28 9.92 7.29 11.34 2.71 5.75 3.08 7.29 4.21 5.96 3.79 6.87 6.63 +76 4 29 6.04 3.79 5.75 1.87 3.46 0.29 3.54 1.42 1.25 3.17 7.58 11.25 +76 4 30 9.29 5.17 5.04 1.00 3.08 0.58 5.54 3.25 4.46 3.17 13.33 8.83 +76 5 1 16.66 13.46 13.04 7.17 13.13 8.46 11.96 11.17 10.71 10.54 18.29 19.29 +76 5 2 14.79 12.08 13.54 6.87 12.71 8.33 12.38 9.42 11.75 7.96 17.12 18.71 +76 5 3 17.83 13.75 11.75 10.08 16.46 9.96 14.96 10.96 13.88 13.25 17.92 15.87 +76 5 4 7.41 2.25 8.54 2.79 3.29 1.83 7.08 3.63 4.46 4.38 9.33 8.12 +76 5 5 8.96 7.41 6.54 2.46 4.12 2.75 5.54 4.00 6.08 3.88 13.29 9.54 +76 5 6 5.66 3.50 12.46 1.54 2.25 1.92 5.66 3.50 7.92 6.75 10.17 11.42 +76 5 7 8.29 9.54 6.17 2.67 5.71 4.29 5.33 6.54 6.79 6.00 13.83 11.21 +76 5 8 9.46 7.92 7.67 2.75 5.54 3.37 7.25 9.04 6.58 7.21 19.75 16.54 +76 5 9 9.96 8.25 6.79 3.96 5.46 3.88 4.33 6.29 6.50 5.63 11.17 13.17 +76 5 10 12.33 11.34 10.21 6.38 10.71 6.29 11.25 8.00 9.46 8.58 16.17 17.79 +76 5 11 16.04 13.75 12.83 8.17 14.92 9.62 14.17 11.58 14.09 11.42 18.91 11.96 +76 5 12 25.17 15.63 15.67 12.67 19.41 13.04 16.29 13.37 14.96 14.04 19.41 23.71 +76 5 13 11.58 9.29 11.04 5.33 6.34 6.17 8.96 9.21 10.46 9.21 15.63 14.17 +76 5 14 21.00 16.54 17.83 11.00 13.92 11.12 13.37 11.29 15.63 16.29 23.33 21.12 +76 5 15 18.41 14.37 18.84 8.96 14.04 8.75 13.25 8.08 13.75 12.38 13.92 15.41 +76 5 16 23.63 21.34 20.79 11.83 15.96 11.96 16.50 15.79 16.75 18.46 23.21 24.13 +76 5 17 19.17 11.50 20.08 10.79 9.25 4.83 13.88 8.50 10.79 8.71 12.21 14.88 +76 5 18 7.62 6.21 8.46 3.25 4.29 2.29 7.04 4.00 6.00 4.25 7.04 7.38 +76 5 19 12.21 11.83 7.67 3.63 7.58 3.08 7.08 2.62 5.09 3.54 6.13 4.50 +76 5 20 14.17 8.63 8.25 6.79 10.71 6.25 8.38 6.17 8.42 7.04 12.54 9.08 +76 5 21 15.37 15.16 12.17 5.88 10.37 7.62 9.83 9.13 11.21 11.21 18.41 17.46 +76 5 22 13.62 14.21 13.00 7.58 10.17 8.96 10.54 9.08 13.21 9.25 18.71 16.58 +76 5 23 14.17 16.38 11.79 8.50 14.04 10.50 9.50 11.83 15.54 11.00 19.00 20.88 +76 5 24 15.50 15.21 12.83 7.71 15.46 9.42 11.08 11.63 15.34 12.12 21.54 25.04 +76 5 25 13.46 10.71 7.87 6.34 11.54 7.41 10.00 9.21 10.46 9.83 17.12 16.54 +76 5 26 7.38 7.08 5.88 1.92 2.17 0.83 7.12 2.37 5.00 3.88 9.67 10.00 +76 5 27 6.79 11.54 8.00 2.50 5.83 2.42 3.29 2.58 4.75 2.67 13.33 5.29 +76 5 28 9.13 8.67 5.13 2.62 9.33 3.50 4.63 5.00 8.04 6.04 10.21 11.04 +76 5 29 11.83 10.00 10.25 2.79 7.00 3.83 3.33 6.42 6.29 4.58 12.29 6.00 +76 5 30 15.92 13.42 14.09 6.63 13.00 6.54 8.29 10.13 11.79 7.54 17.54 12.71 +76 5 31 9.96 11.42 10.41 3.29 9.75 5.09 6.29 6.75 9.25 5.88 11.50 9.42 +76 6 1 13.04 8.83 10.79 7.21 10.83 6.96 12.92 8.25 9.96 10.92 11.34 14.75 +76 6 2 5.37 3.25 6.54 2.04 2.13 0.04 4.29 1.50 3.83 2.50 6.34 6.79 +76 6 3 5.58 5.04 6.13 1.13 1.54 0.71 3.04 1.42 2.88 1.71 7.00 5.09 +76 6 4 8.04 10.21 10.29 3.42 4.12 4.00 5.75 8.00 6.79 5.63 14.88 11.83 +76 6 5 8.71 10.37 13.08 3.21 4.17 4.88 6.50 10.50 9.33 8.50 16.58 16.04 +76 6 6 6.96 10.88 11.46 4.04 4.96 5.21 7.87 9.79 8.83 8.21 17.79 14.37 +76 6 7 11.29 13.37 6.83 3.83 10.21 6.67 5.54 5.13 8.38 5.75 11.34 9.71 +76 6 8 12.83 13.54 12.83 7.08 9.29 9.33 7.75 9.13 10.54 9.13 13.54 12.54 +76 6 9 14.17 13.92 14.21 7.71 13.62 9.59 10.83 10.25 12.42 10.17 17.88 16.79 +76 6 10 12.33 14.21 12.87 7.33 12.33 9.75 10.83 10.46 11.42 9.62 19.08 18.12 +76 6 11 19.04 16.79 16.38 9.38 11.79 11.50 10.63 13.25 14.04 12.50 20.67 19.67 +76 6 12 11.25 9.75 13.96 5.00 10.21 7.33 13.13 11.75 11.17 10.13 19.62 21.34 +76 6 13 12.21 11.54 13.08 6.46 9.13 8.12 10.79 12.46 10.37 11.04 20.33 20.83 +76 6 14 7.75 7.17 10.71 4.00 6.04 6.00 11.92 5.91 10.13 6.58 16.21 18.46 +76 6 15 7.79 7.46 10.21 1.25 3.04 2.83 9.79 7.58 7.71 5.29 13.75 15.00 +76 6 16 8.75 7.12 8.87 3.83 4.04 4.42 3.37 4.38 5.91 3.21 9.13 6.54 +76 6 17 12.79 7.75 8.25 4.04 5.50 4.46 7.00 5.71 7.75 5.37 13.37 8.75 +76 6 18 14.09 9.62 11.79 6.21 10.75 8.63 11.67 9.21 10.37 10.50 15.34 19.79 +76 6 19 2.92 2.50 5.29 3.67 5.21 5.09 11.08 6.17 9.33 6.63 14.46 20.33 +76 6 20 7.83 6.92 8.42 4.08 4.75 4.17 9.96 4.58 7.75 6.50 9.04 14.54 +76 6 21 10.79 11.96 11.04 5.33 8.21 8.17 7.12 7.00 10.37 8.00 12.75 12.92 +76 6 22 13.88 14.21 11.00 8.67 12.83 9.83 8.96 7.33 12.83 10.83 10.04 12.96 +76 6 23 10.41 12.33 11.04 6.46 9.67 8.29 10.04 9.38 11.04 10.17 18.75 13.67 +76 6 24 10.54 13.25 11.46 7.12 10.71 9.46 10.37 10.96 12.58 8.79 20.46 15.34 +76 6 25 6.00 11.04 5.46 3.46 8.46 6.17 7.00 5.33 7.12 5.21 7.79 5.04 +76 6 26 7.29 6.04 9.17 2.62 6.17 5.09 7.41 7.46 8.00 6.67 15.16 13.67 +76 6 27 4.46 3.83 4.92 1.96 3.21 2.67 3.42 7.08 5.37 4.88 16.50 20.25 +76 6 28 4.33 1.92 5.46 2.08 2.21 1.54 5.58 2.50 3.21 3.04 8.63 6.04 +76 6 29 5.29 1.00 6.38 1.75 1.63 0.54 5.58 2.25 4.21 2.92 9.50 6.54 +76 6 30 8.96 1.38 11.04 3.21 4.25 3.21 6.04 3.67 6.87 4.12 8.25 9.29 +76 7 1 8.50 1.75 6.58 2.13 2.75 2.21 5.37 2.04 5.88 4.50 4.96 10.63 +76 7 2 9.50 4.21 5.71 2.67 3.00 1.92 4.67 3.50 5.29 3.37 5.96 4.96 +76 7 3 5.66 6.00 5.71 2.37 2.21 1.54 4.88 3.00 5.41 2.96 7.50 7.17 +76 7 4 4.96 5.96 4.75 3.79 5.04 3.21 4.08 2.46 6.79 4.08 7.21 8.42 +76 7 5 8.12 7.21 5.21 3.17 6.17 2.67 1.54 4.17 4.83 1.67 7.87 5.09 +76 7 6 5.91 3.79 8.71 3.00 1.58 1.29 4.12 2.96 5.21 2.37 8.08 6.63 +76 7 7 3.04 2.00 5.58 1.67 1.29 0.29 5.50 0.92 5.58 2.88 4.12 4.17 +76 7 8 9.04 8.75 6.54 4.67 7.50 5.09 4.29 3.42 6.21 4.67 5.37 7.83 +76 7 9 14.58 14.12 13.08 6.29 14.21 7.96 10.34 10.46 11.42 8.58 17.33 11.79 +76 7 10 18.08 16.17 12.46 9.67 15.67 11.67 9.13 9.59 13.67 11.75 21.21 16.08 +76 7 11 11.92 9.29 9.21 6.83 11.00 8.46 9.33 5.54 10.41 9.08 10.37 16.66 +76 7 12 8.17 9.25 7.46 6.34 8.29 5.83 5.75 6.75 8.71 6.50 10.83 11.63 +76 7 13 15.75 15.12 12.54 7.08 15.71 9.46 9.04 7.00 10.83 8.58 9.29 11.08 +76 7 14 11.46 11.17 10.88 6.42 10.41 7.87 10.34 7.58 9.96 8.87 16.58 13.70 +76 7 15 12.62 9.67 13.50 6.67 11.21 8.17 10.08 6.79 11.58 8.67 11.71 14.67 +76 7 16 7.17 7.79 7.46 2.37 9.87 4.58 6.54 6.83 7.50 5.13 14.58 15.00 +76 7 17 8.33 9.29 8.25 2.92 7.46 4.21 5.79 5.58 7.87 4.63 12.33 10.75 +76 7 18 14.92 13.13 13.88 8.25 13.13 9.42 10.25 10.54 12.21 13.50 16.38 14.96 +76 7 19 9.87 7.41 8.92 5.04 9.67 5.83 9.96 5.91 8.50 8.46 10.50 15.79 +76 7 20 11.71 8.33 8.54 5.75 9.04 6.08 8.83 5.21 8.83 8.63 10.17 16.75 +76 7 21 9.13 6.29 7.96 3.92 6.67 4.12 7.92 3.67 7.29 6.42 8.42 11.83 +76 7 22 6.42 4.21 5.75 2.21 3.37 2.54 5.63 2.75 5.29 3.83 8.17 11.67 +76 7 23 8.46 6.46 7.25 4.42 5.96 3.79 8.96 3.79 7.04 6.13 8.08 12.75 +76 7 24 10.08 8.67 7.96 4.17 6.42 4.25 6.58 3.42 7.33 6.17 8.92 11.71 +76 7 25 9.25 9.54 7.00 3.92 4.75 4.50 5.58 3.67 7.17 6.46 10.25 10.71 +76 7 26 6.21 5.41 7.41 4.00 3.71 2.08 5.09 3.08 6.50 6.13 6.67 9.54 +76 7 27 8.87 6.17 7.38 4.04 4.33 2.75 4.92 3.33 7.12 6.58 8.50 12.54 +76 7 28 7.58 6.38 8.25 4.38 7.62 4.42 5.50 6.08 7.08 6.71 10.79 13.13 +76 7 29 10.34 6.04 5.96 4.88 7.50 4.38 9.25 6.63 8.08 7.71 11.17 17.00 +76 7 30 13.04 9.54 8.12 6.25 10.96 6.83 9.87 6.63 9.42 8.25 13.70 19.55 +76 7 31 11.63 8.29 8.29 4.29 8.38 5.33 7.71 5.91 7.17 7.96 11.17 15.09 +76 8 1 13.00 8.38 8.63 5.83 12.92 8.25 13.00 9.42 10.58 11.34 14.21 20.25 +76 8 2 8.83 7.21 7.83 4.92 9.75 6.96 10.58 7.29 9.29 9.59 11.71 19.95 +76 8 3 5.54 5.00 5.79 4.79 5.13 3.58 5.91 2.71 6.79 6.29 7.38 10.88 +76 8 4 7.33 3.04 5.58 3.29 3.54 3.63 6.75 3.88 5.00 5.25 8.79 13.59 +76 8 5 4.71 2.13 5.83 2.54 4.38 2.75 4.92 3.37 4.92 3.04 9.96 13.50 +76 8 6 6.04 3.88 5.41 2.21 3.92 2.92 3.46 2.00 4.38 2.29 8.42 10.58 +76 8 7 6.75 3.79 6.17 2.33 3.50 2.54 3.08 1.00 4.54 4.25 4.63 7.54 +76 8 8 4.33 1.17 8.83 2.25 3.25 1.50 1.67 1.17 1.54 1.17 4.54 4.12 +76 8 9 5.04 2.71 7.04 2.04 4.08 1.38 1.67 0.63 2.42 0.96 3.04 3.67 +76 8 10 5.50 2.71 4.46 1.42 2.58 1.75 2.67 2.62 3.42 3.58 8.96 4.67 +76 8 11 6.25 6.96 6.21 3.04 5.83 3.96 4.71 5.37 4.38 4.83 14.00 12.00 +76 8 12 6.63 6.25 5.83 3.04 4.29 3.42 1.46 2.62 4.21 3.17 5.91 7.25 +76 8 13 8.25 3.29 9.08 1.92 3.50 1.50 2.42 0.87 3.96 1.71 4.54 5.33 +76 8 14 7.29 2.67 14.50 1.96 3.13 2.54 3.79 2.42 7.33 4.58 6.38 8.71 +76 8 15 4.21 1.46 8.54 1.13 0.92 1.75 3.42 1.46 3.46 4.21 1.87 7.12 +76 8 16 5.46 3.75 5.96 1.38 2.75 2.42 1.87 0.67 2.79 1.25 3.08 6.67 +76 8 17 7.17 6.21 6.21 2.00 4.92 3.17 2.00 3.00 4.96 1.96 4.63 6.58 +76 8 18 4.67 4.96 9.62 1.33 4.12 4.04 4.38 3.08 7.62 4.25 4.50 11.21 +76 8 19 7.17 4.50 9.71 2.00 3.21 2.58 3.00 4.12 8.38 5.96 7.12 7.67 +76 8 20 9.83 10.41 11.08 2.00 2.83 2.79 4.04 3.54 6.83 4.58 5.88 8.46 +76 8 21 11.42 12.12 9.92 2.96 4.54 5.33 6.87 4.58 7.12 5.63 7.29 9.00 +76 8 22 15.34 10.92 9.59 4.75 6.83 8.04 7.08 6.92 10.21 7.92 8.33 13.08 +76 8 23 9.75 6.58 6.79 3.37 2.50 5.09 5.79 4.92 9.59 5.75 5.25 15.25 +76 8 24 5.96 4.42 7.04 4.29 4.88 5.54 6.04 3.33 7.21 5.46 4.42 8.71 +76 8 25 4.38 2.54 4.12 0.92 2.13 1.96 4.12 0.79 1.83 0.87 3.50 3.92 +76 8 26 4.17 2.08 14.46 3.58 3.63 2.83 3.88 2.08 3.46 1.00 7.83 4.63 +76 8 27 7.33 4.96 17.41 5.33 5.37 4.88 8.87 2.83 6.58 3.42 9.25 4.50 +76 8 28 9.46 6.83 20.75 5.09 6.17 5.13 13.59 4.83 9.08 7.12 9.17 12.25 +76 8 29 10.17 8.21 15.04 5.41 6.75 5.17 9.67 5.13 7.92 6.13 7.96 8.87 +76 8 30 15.46 10.92 13.88 6.58 8.25 6.92 9.21 4.46 8.83 7.58 9.21 11.38 +76 8 31 9.42 6.29 7.71 3.71 5.96 4.96 8.63 3.13 5.71 4.25 7.71 11.25 +76 9 1 11.87 11.00 7.38 6.87 7.75 8.33 10.34 6.46 10.17 9.29 12.75 19.55 +76 9 2 14.75 13.46 16.17 7.79 7.79 7.67 11.63 6.50 10.13 10.54 12.92 21.84 +76 9 3 9.83 4.79 8.12 4.75 4.29 5.79 10.04 3.71 8.71 5.63 8.83 15.16 +76 9 4 8.92 4.04 5.88 3.79 3.00 5.37 8.08 3.21 7.25 6.04 7.54 14.00 +76 9 5 4.54 4.29 5.17 1.75 1.00 2.33 3.79 1.83 4.12 4.08 5.46 10.17 +76 9 6 3.42 3.00 2.96 1.63 0.87 0.96 4.46 0.87 2.25 2.25 5.96 12.75 +76 9 7 4.75 4.75 3.96 1.29 1.58 2.13 4.38 0.54 0.58 1.13 4.67 8.96 +76 9 8 10.13 9.33 9.46 7.04 9.62 8.75 13.17 10.34 11.04 9.83 18.25 23.00 +76 9 9 24.54 20.00 20.50 15.09 16.08 13.17 21.25 12.96 16.21 17.37 21.54 35.13 +76 9 10 15.12 13.67 10.29 5.17 11.83 8.04 10.54 7.25 9.96 7.38 16.54 22.34 +76 9 11 23.33 22.37 22.67 13.29 17.83 15.04 20.54 14.83 15.37 18.88 25.12 32.08 +76 9 12 17.33 13.17 22.21 8.96 11.25 8.54 12.33 6.04 10.46 10.58 11.46 18.08 +76 9 13 8.71 8.25 5.71 2.13 9.71 5.21 6.71 6.25 8.00 5.13 12.75 18.12 +76 9 14 20.83 17.29 20.62 9.67 14.37 11.21 12.17 11.04 12.33 12.29 19.25 29.63 +76 9 15 12.08 7.50 14.12 6.04 8.08 7.00 6.58 3.63 7.92 7.96 10.34 18.12 +76 9 16 5.66 5.54 5.33 1.63 4.29 1.29 3.08 0.42 2.50 1.79 4.75 8.17 +76 9 17 12.21 10.46 8.71 4.17 11.71 9.04 4.42 5.54 8.04 6.46 9.42 12.42 +76 9 18 7.21 6.92 8.33 4.38 7.21 7.38 5.66 3.92 8.92 5.54 7.67 15.83 +76 9 19 12.83 14.21 13.37 7.00 11.25 10.00 9.75 7.58 12.71 8.25 12.79 18.88 +76 9 20 11.79 14.58 10.17 6.58 14.21 8.75 7.25 8.04 12.25 10.71 15.92 15.87 +76 9 21 6.25 6.38 6.67 1.83 4.17 3.79 3.21 2.17 4.63 3.46 8.71 6.92 +76 9 22 5.21 6.92 2.88 1.13 4.12 2.37 1.63 1.13 3.00 1.13 4.33 5.54 +76 9 23 17.04 16.00 13.88 6.17 15.04 9.62 6.34 10.96 10.71 6.46 11.67 18.08 +76 9 24 13.59 14.04 14.71 7.71 12.12 11.46 15.92 14.79 14.54 11.25 17.50 28.96 +76 9 25 10.92 12.58 5.88 3.67 8.42 6.42 10.13 7.17 10.34 9.92 15.34 33.17 +76 9 26 11.63 11.00 9.42 3.83 7.41 6.38 8.17 5.66 9.62 5.88 7.33 19.08 +76 9 27 11.25 9.50 11.17 4.71 9.38 6.83 7.04 9.08 9.59 4.67 10.88 16.71 +76 9 28 13.08 12.38 11.04 4.83 10.96 8.29 7.71 7.71 10.50 5.00 9.38 14.75 +76 9 29 13.50 9.54 7.83 3.37 10.75 5.88 6.96 9.00 8.92 5.63 11.83 8.79 +76 9 30 8.79 8.50 9.38 3.13 6.75 4.83 5.25 3.83 7.83 3.37 6.71 6.92 +76 10 1 10.96 6.71 10.41 4.63 7.58 5.04 5.04 5.54 6.50 3.92 6.79 5.00 +76 10 2 12.38 7.58 7.50 3.92 6.34 4.04 2.67 3.50 4.79 3.17 7.38 10.13 +76 10 3 12.38 10.63 12.08 6.34 11.21 8.67 8.96 8.75 10.75 9.00 14.37 15.83 +76 10 4 10.21 9.33 5.17 2.96 9.59 6.13 5.41 5.41 6.38 2.50 11.87 11.17 +76 10 5 22.04 20.71 17.46 10.21 18.25 13.62 11.54 16.29 13.62 12.50 21.54 21.46 +76 10 6 21.62 20.67 19.95 12.96 23.09 17.12 19.21 21.50 19.87 21.92 34.83 36.51 +76 10 7 16.33 13.08 12.12 5.75 11.96 8.58 7.71 6.42 7.46 5.88 12.00 16.58 +76 10 8 8.29 6.34 6.29 2.79 5.91 5.29 3.04 4.46 6.04 5.33 8.00 11.54 +76 10 9 5.66 6.21 7.54 1.38 6.58 5.75 1.63 7.92 5.37 6.08 14.67 15.12 +76 10 10 11.12 13.04 10.29 6.04 12.21 10.29 7.41 11.54 10.79 11.42 19.58 19.25 +76 10 11 17.16 14.71 10.67 5.50 11.96 7.92 5.29 9.79 9.38 8.38 13.17 13.50 +76 10 12 8.63 7.41 9.00 6.96 8.58 7.25 8.33 7.00 9.08 9.25 11.96 21.12 +76 10 13 7.92 7.29 5.88 2.50 7.79 4.63 2.25 4.50 5.21 3.13 8.79 11.46 +76 10 14 28.08 16.00 26.83 13.88 15.59 12.08 13.83 9.71 12.00 12.42 12.12 16.54 +76 10 15 15.59 10.41 12.83 10.25 10.96 10.67 14.83 8.42 11.58 13.62 12.79 27.08 +76 10 16 12.92 12.54 10.37 3.63 10.54 7.58 4.88 5.29 5.58 4.88 7.21 11.42 +76 10 17 13.96 9.67 14.79 6.79 9.54 10.08 13.50 9.29 11.04 12.50 9.83 22.50 +76 10 18 8.63 4.00 7.71 2.04 5.46 4.08 1.54 2.46 4.38 3.63 4.58 18.46 +76 10 19 9.00 12.08 4.58 0.42 9.71 5.29 2.42 5.71 5.50 4.83 9.87 12.75 +76 10 20 16.38 13.62 9.50 3.00 11.75 6.50 6.96 6.50 5.13 6.42 14.50 8.87 +76 10 21 14.46 13.67 13.59 5.37 14.17 8.29 9.17 9.79 10.71 11.17 19.50 17.88 +76 10 22 9.62 5.09 8.79 2.83 7.92 5.50 6.04 3.75 6.79 6.67 8.79 16.08 +76 10 23 11.87 7.33 10.58 5.17 7.67 5.91 6.21 5.66 6.71 6.83 9.42 13.42 +76 10 24 6.08 3.04 5.50 1.21 3.92 4.50 1.92 0.63 3.29 4.12 8.25 14.62 +76 10 25 4.58 1.79 7.50 1.42 0.87 0.83 0.92 0.17 1.46 3.13 7.12 6.17 +76 10 26 12.79 12.58 7.25 2.17 10.04 5.21 2.58 6.04 5.37 3.88 9.59 7.50 +76 10 27 7.87 6.34 7.08 2.46 7.38 5.96 6.54 9.13 6.83 6.38 13.08 17.58 +76 10 28 9.71 3.83 10.08 2.75 2.88 1.83 2.58 2.42 2.67 4.46 5.37 8.71 +76 10 29 12.79 5.83 14.67 5.66 4.79 4.96 6.71 4.83 6.13 7.54 9.17 11.87 +76 10 30 10.71 3.25 13.79 4.50 4.79 2.33 4.46 2.92 4.29 5.83 3.50 9.25 +76 10 31 15.50 11.96 10.04 5.96 12.17 8.17 4.21 9.59 9.42 10.13 17.33 18.05 +76 11 1 13.96 15.67 10.29 6.46 12.79 9.08 10.00 9.67 10.21 11.63 23.09 21.96 +76 11 2 12.71 15.04 8.83 4.79 11.34 8.83 11.79 7.75 9.71 9.59 18.88 18.71 +76 11 3 9.21 8.12 6.17 2.96 7.46 7.50 7.54 6.00 8.17 7.92 15.16 20.00 +76 11 4 10.46 12.29 9.33 4.75 9.92 9.08 5.96 7.87 9.04 8.63 15.41 18.63 +76 11 5 17.37 15.50 11.38 5.96 13.25 9.17 9.62 8.71 11.54 12.92 18.58 19.25 +76 11 6 15.37 12.29 10.29 4.46 12.21 10.46 5.17 9.33 9.75 10.50 12.46 16.21 +76 11 7 10.83 10.41 7.79 2.54 9.83 8.29 8.08 6.67 6.71 7.33 11.29 15.67 +76 11 8 9.79 9.13 6.17 1.71 8.58 8.04 5.33 7.33 5.71 7.87 10.34 17.88 +76 11 9 7.00 4.29 4.33 0.75 4.88 4.08 5.75 2.17 1.87 3.75 11.25 13.21 +76 11 10 6.13 5.79 4.88 1.33 4.79 6.04 8.38 1.63 3.58 4.21 7.71 13.50 +76 11 11 3.50 2.83 3.04 0.13 2.88 3.08 4.96 1.08 0.58 0.92 7.25 8.71 +76 11 12 6.29 1.79 9.38 1.75 0.25 0.83 8.83 0.00 0.92 1.42 1.92 6.00 +76 11 13 7.75 9.50 4.88 0.21 5.50 5.66 6.58 3.29 2.67 4.29 7.54 9.75 +76 11 14 15.21 9.17 13.33 6.21 8.83 10.17 11.38 5.91 10.00 8.83 8.42 18.63 +76 11 15 10.88 14.09 9.87 4.17 8.12 10.13 8.29 8.75 8.04 9.13 20.41 19.50 +76 11 16 9.67 6.42 10.71 3.79 1.58 3.96 8.63 1.50 3.17 3.88 5.54 9.96 +76 11 17 10.96 13.92 11.38 4.25 9.54 8.67 7.41 9.79 7.79 9.92 16.00 17.54 +76 11 18 9.79 6.87 10.50 3.79 2.71 5.66 7.50 4.50 6.17 4.04 7.38 8.25 +76 11 19 6.21 3.92 5.50 0.54 1.92 0.96 2.17 0.87 0.17 1.21 2.96 4.38 +76 11 20 5.66 2.71 6.50 1.00 0.17 0.67 3.71 0.08 0.79 1.92 3.71 9.29 +76 11 21 7.50 1.42 9.59 1.79 1.29 2.75 8.46 1.54 2.25 5.54 6.38 14.33 +76 11 22 7.62 3.92 9.38 2.50 3.46 3.46 7.83 2.37 2.88 5.75 6.46 12.42 +76 11 23 9.87 3.96 6.87 1.42 3.08 2.92 8.54 1.75 3.21 4.29 6.08 12.00 +76 11 24 7.75 2.96 6.25 1.79 4.29 6.83 11.21 5.13 6.00 7.21 13.96 17.75 +76 11 25 17.46 15.25 12.17 5.83 9.17 11.00 13.04 12.42 11.71 13.83 22.54 22.17 +76 11 26 18.00 16.38 15.92 8.71 13.00 12.38 16.75 12.04 13.00 14.21 16.71 17.04 +76 11 27 20.46 19.38 16.00 10.58 16.08 14.09 15.50 13.67 13.92 15.71 25.75 24.87 +76 11 28 16.38 19.29 15.16 8.71 18.16 13.33 21.84 12.83 13.92 15.00 28.79 29.75 +76 11 29 13.46 10.83 11.21 4.25 10.37 8.38 13.21 5.37 9.29 9.54 16.21 20.41 +76 11 30 11.63 10.17 8.96 3.75 8.33 5.29 8.29 3.71 4.54 4.38 8.87 12.79 +76 12 1 13.46 16.42 9.21 4.54 10.75 8.67 10.88 4.83 8.79 5.91 8.83 13.67 +76 12 2 13.08 13.46 9.54 3.33 7.41 6.13 10.00 3.75 4.88 5.04 10.58 11.29 +76 12 3 12.12 12.62 7.50 1.96 6.54 4.17 5.75 1.08 3.08 2.75 6.58 8.17 +76 12 4 10.29 9.62 9.21 1.50 3.50 2.67 11.00 0.63 3.63 4.67 4.04 8.87 +76 12 5 16.88 13.37 14.42 5.33 11.50 9.04 11.83 6.83 8.83 7.67 12.75 15.29 +76 12 6 21.12 22.71 15.96 8.54 19.08 12.71 16.75 11.17 13.17 13.79 18.08 18.88 +76 12 7 16.00 18.05 13.37 6.96 14.09 11.79 15.46 5.04 11.38 9.50 9.54 14.92 +76 12 8 12.21 8.75 8.12 3.83 7.08 5.88 10.75 4.12 7.08 6.75 11.50 18.91 +76 12 9 4.54 3.00 3.71 0.17 4.71 3.29 7.25 0.75 1.33 4.08 3.92 16.66 +76 12 10 4.46 2.17 4.54 0.58 1.87 2.50 9.00 0.37 2.04 4.17 4.79 11.92 +76 12 11 4.58 8.54 3.17 0.00 4.83 5.33 2.71 2.62 1.50 2.42 8.79 11.08 +76 12 12 12.92 11.96 4.58 0.33 6.04 4.17 1.21 2.88 0.92 1.75 6.21 8.92 +76 12 13 20.21 16.83 10.50 4.00 11.87 8.75 1.21 4.79 5.79 5.04 8.00 11.17 +76 12 14 15.92 14.29 12.71 4.08 11.29 8.54 5.33 6.58 7.67 7.83 7.50 12.33 +76 12 15 14.17 10.71 14.58 4.04 8.25 7.17 5.66 3.75 6.42 5.63 3.46 14.12 +76 12 16 7.62 8.08 10.92 2.33 8.96 6.87 6.63 6.42 6.29 5.41 7.75 14.62 +76 12 17 8.29 4.67 9.38 0.67 4.12 2.92 5.63 2.83 3.67 3.75 8.38 15.96 +76 12 18 14.00 8.58 14.67 4.21 6.71 4.58 9.92 4.88 6.83 7.58 7.00 14.29 +76 12 19 9.79 3.54 8.54 3.37 6.13 2.58 3.17 2.92 3.42 6.42 2.88 17.21 +76 12 20 7.54 1.58 6.50 1.96 2.46 0.96 6.21 0.33 2.67 2.37 1.08 4.58 +76 12 21 8.87 9.59 8.75 2.37 10.58 4.58 6.50 7.04 4.25 2.92 9.46 9.00 +76 12 22 12.25 9.04 12.00 4.88 9.92 8.63 9.71 8.79 8.21 10.08 10.67 21.42 +76 12 23 12.38 11.38 12.92 3.58 9.75 8.38 6.63 8.63 7.50 6.67 8.29 17.96 +76 12 24 13.83 12.42 11.96 3.29 7.33 8.04 8.25 8.04 8.00 7.29 7.96 15.09 +76 12 25 9.59 6.13 14.83 4.38 5.75 4.96 5.96 3.92 5.00 4.88 4.67 12.00 +76 12 26 8.21 6.34 9.08 1.38 0.75 0.79 6.50 1.21 2.08 3.21 0.67 11.92 +76 12 27 9.04 6.21 7.87 2.83 4.79 6.96 11.67 4.42 7.38 8.58 14.50 23.42 +76 12 28 9.62 5.96 13.59 3.71 3.83 4.29 7.58 4.71 5.71 5.54 8.46 16.58 +76 12 29 23.83 16.38 17.16 7.25 13.08 12.38 12.33 11.71 13.83 16.04 13.37 23.33 +76 12 30 15.34 11.46 16.04 5.83 8.67 8.29 9.67 2.67 8.71 8.46 6.17 15.50 +76 12 31 8.67 8.83 9.38 3.67 5.37 4.58 7.92 1.79 4.46 4.38 6.38 15.67 +77 1 1 20.04 11.92 20.25 9.13 9.29 8.04 10.75 5.88 9.00 9.00 14.88 25.70 +77 1 2 9.75 1.54 12.54 1.83 3.79 2.75 9.46 1.21 2.33 4.58 8.25 12.38 +77 1 3 13.21 16.66 9.25 1.71 9.46 8.17 7.87 8.96 7.75 7.21 22.25 21.59 +77 1 4 20.12 15.92 18.91 6.75 10.25 11.83 15.41 14.09 12.83 14.71 20.50 27.16 +77 1 5 12.50 9.50 12.04 4.67 9.25 6.87 11.50 8.00 8.33 9.75 13.33 18.08 +77 1 6 5.09 0.96 6.87 0.37 1.79 2.00 8.04 1.54 4.12 5.58 10.08 17.88 +77 1 7 5.29 3.00 6.67 1.67 4.25 3.54 8.04 1.54 6.58 6.34 8.29 16.46 +77 1 8 8.54 6.46 8.25 4.42 8.04 6.08 11.38 6.50 9.67 8.08 13.00 17.16 +77 1 9 19.92 16.00 9.96 9.79 17.12 10.96 12.71 11.42 12.08 11.08 20.12 20.96 +77 1 10 18.16 13.59 16.46 9.38 12.17 8.67 10.75 10.21 8.54 10.96 22.08 31.75 +77 1 11 12.12 10.37 13.17 4.25 5.13 3.17 7.62 4.75 3.54 3.58 12.75 15.09 +77 1 12 7.79 1.75 7.54 1.21 5.54 1.42 4.96 2.88 1.87 1.67 7.17 11.04 +77 1 13 26.92 19.12 24.96 14.09 18.46 13.59 17.04 12.62 12.58 14.17 13.79 22.95 +77 1 14 25.84 15.79 24.54 15.00 16.66 13.50 22.08 9.67 14.58 21.04 18.38 34.29 +77 1 15 17.75 11.79 14.42 10.41 11.04 9.79 11.75 6.34 8.63 9.92 12.04 17.96 +77 1 16 8.04 5.50 6.46 1.29 3.63 1.67 7.17 1.75 2.79 4.00 3.54 14.00 +77 1 17 19.46 18.05 15.12 6.00 12.87 10.96 9.21 10.04 8.21 8.58 12.12 16.08 +77 1 18 11.42 8.21 15.37 7.08 9.92 11.58 14.83 9.00 10.83 14.09 11.25 24.25 +77 1 19 14.58 17.62 10.25 5.58 10.63 9.83 7.17 10.54 8.67 10.50 16.17 17.79 +77 1 20 22.37 15.09 22.50 13.88 15.83 16.62 17.12 14.37 16.54 18.50 15.46 26.12 +77 1 21 15.29 10.88 15.34 9.42 12.54 13.04 14.79 10.71 14.67 18.75 11.83 27.04 +77 1 22 3.92 6.83 5.96 0.58 4.00 4.88 4.63 5.50 4.79 7.38 10.13 17.88 +77 1 23 4.67 8.75 4.08 0.92 4.58 5.54 2.04 4.29 3.50 4.42 10.75 12.71 +77 1 24 15.50 14.75 14.46 7.71 12.58 11.87 10.34 11.00 11.63 13.04 15.34 19.00 +77 1 25 16.71 10.96 13.59 6.96 11.00 9.29 10.88 6.67 10.96 12.33 6.83 15.79 +77 1 26 8.50 11.83 7.71 2.50 6.38 5.66 4.96 2.96 4.75 4.75 6.13 7.50 +77 1 27 8.75 6.50 11.83 7.41 11.25 11.38 12.17 12.71 12.17 10.71 13.92 22.95 +77 1 28 9.29 11.17 15.96 6.00 9.00 8.29 8.58 8.08 8.87 9.17 8.63 14.09 +77 1 29 6.21 6.08 8.29 2.83 2.92 3.25 2.54 2.29 2.00 3.37 6.04 11.58 +77 1 30 17.62 12.04 13.04 5.25 10.08 11.04 12.79 6.75 12.00 9.00 7.50 15.71 +77 1 31 10.17 3.08 9.92 4.33 4.50 2.88 4.75 1.29 1.87 2.92 3.54 10.79 +77 2 1 11.83 9.71 11.00 4.25 8.58 8.71 6.17 5.66 8.29 7.58 11.71 16.50 +77 2 2 16.38 13.33 15.54 8.79 11.12 10.75 9.21 9.25 11.21 11.34 12.46 17.75 +77 2 3 14.21 14.04 13.88 7.46 11.67 11.58 18.29 9.50 12.67 12.92 16.08 20.04 +77 2 4 13.88 15.09 12.17 4.00 11.00 10.88 10.50 7.46 9.33 9.17 11.50 15.75 +77 2 5 14.58 14.75 12.67 5.96 10.21 8.71 10.08 7.00 7.83 9.08 13.96 17.83 +77 2 6 19.38 17.79 15.96 6.04 10.75 9.71 7.58 5.79 7.25 5.71 8.25 13.13 +77 2 7 18.75 18.96 15.04 10.00 15.63 12.50 16.66 9.96 12.87 10.58 13.79 14.42 +77 2 8 5.46 8.96 7.62 3.17 6.63 7.83 7.96 3.04 5.88 3.71 4.17 8.79 +77 2 9 9.67 10.50 10.25 4.00 7.00 9.25 9.96 4.75 9.13 6.34 6.21 15.04 +77 2 10 11.75 8.46 10.08 6.34 11.96 9.92 12.25 8.87 10.21 3.58 12.12 27.84 +77 2 11 3.13 2.62 7.08 2.13 3.50 6.34 9.13 3.08 7.25 4.63 7.33 26.25 +77 2 12 6.04 6.83 6.29 1.63 4.17 4.83 5.25 2.92 5.54 6.54 7.04 22.21 +77 2 13 8.12 5.58 9.83 2.17 7.71 6.38 5.46 4.96 6.96 7.75 8.46 12.04 +77 2 14 11.34 9.59 7.46 2.08 7.25 2.92 8.21 1.96 4.29 4.08 7.54 6.83 +77 2 15 13.70 12.21 11.63 4.75 10.13 10.96 11.50 8.08 9.54 8.54 11.83 12.29 +77 2 16 5.58 8.54 6.25 1.13 6.67 6.87 5.91 4.50 6.00 5.79 11.08 12.83 +77 2 17 17.71 15.12 15.59 7.62 14.29 11.75 11.04 10.04 9.50 8.83 11.71 15.87 +77 2 18 11.46 9.67 10.17 5.37 8.75 8.04 15.09 8.21 11.29 12.12 14.21 17.33 +77 2 19 14.42 11.92 10.79 7.12 10.63 10.00 13.04 9.71 11.25 9.83 11.79 12.92 +77 2 20 11.63 10.21 11.25 4.83 8.25 8.83 9.08 7.00 8.63 7.92 9.33 21.59 +77 2 21 9.83 9.87 8.46 2.08 8.33 5.00 3.83 8.96 6.08 10.21 13.50 23.09 +77 2 22 10.17 15.09 10.96 4.58 11.46 9.87 10.96 11.83 9.75 11.34 16.83 19.92 +77 2 23 12.54 15.21 20.62 10.25 14.37 14.37 17.92 13.50 14.75 15.37 17.12 24.37 +77 2 24 8.67 8.87 10.88 5.63 11.46 10.29 17.71 10.92 12.04 13.29 14.37 27.00 +77 2 25 5.50 3.08 13.00 2.13 3.17 6.58 10.46 6.50 7.41 8.67 6.21 14.71 +77 2 26 14.62 14.33 10.04 3.42 11.34 7.58 8.71 8.75 6.46 6.04 9.42 11.63 +77 2 27 25.41 24.79 22.58 11.50 20.41 17.79 17.92 16.62 14.67 12.00 15.79 23.21 +77 2 28 19.67 18.05 19.38 10.46 17.33 15.63 16.71 14.21 14.88 10.96 16.38 20.54 +77 3 1 8.63 14.83 10.29 3.75 6.63 8.79 5.00 8.12 7.87 6.42 13.54 13.67 +77 3 2 12.62 15.34 15.59 7.33 13.04 12.87 13.25 12.21 13.29 13.04 22.46 22.17 +77 3 3 11.12 12.50 12.92 7.29 11.21 10.25 16.71 11.96 14.79 14.29 18.25 23.29 +77 3 4 12.67 11.08 11.54 6.92 11.75 10.79 18.66 13.79 13.92 13.50 17.92 24.92 +77 3 5 8.29 8.08 10.67 2.92 5.91 7.04 11.04 6.83 7.08 8.58 10.67 17.33 +77 3 6 11.87 15.09 11.29 8.25 13.83 12.54 9.42 6.42 12.54 8.96 9.67 12.50 +77 3 7 16.58 15.96 14.92 7.21 13.13 12.50 14.00 11.92 12.12 9.79 15.96 18.79 +77 3 8 26.20 24.00 18.66 13.33 20.50 18.38 17.67 18.54 18.05 19.79 29.29 27.37 +77 3 9 21.17 15.96 15.16 9.83 17.46 13.62 16.88 13.75 14.42 15.50 16.38 21.71 +77 3 10 33.84 26.92 24.41 20.08 23.75 20.58 20.21 18.71 21.92 22.75 23.09 27.58 +77 3 11 14.33 12.42 13.13 7.41 14.92 12.12 14.29 11.12 13.42 13.50 14.62 22.46 +77 3 12 9.79 9.29 10.54 4.12 8.92 7.75 9.67 6.00 8.21 5.63 8.08 13.25 +77 3 13 12.92 11.92 15.29 5.88 9.79 8.63 13.33 8.79 10.46 9.92 11.12 16.13 +77 3 14 17.46 17.79 14.71 7.75 16.38 11.38 16.33 12.29 13.29 12.87 21.04 20.62 +77 3 15 28.33 19.55 22.00 16.79 18.88 15.67 19.79 16.42 18.46 18.21 19.87 26.16 +77 3 16 24.75 18.84 17.25 11.63 15.21 13.21 15.34 14.79 14.88 16.29 22.92 19.75 +77 3 17 27.50 18.75 20.21 14.46 17.00 14.88 18.34 17.50 15.96 17.54 20.88 23.54 +77 3 18 16.79 14.62 14.04 7.33 17.79 13.08 15.41 12.54 12.79 12.17 13.88 15.83 +77 3 19 21.29 15.75 12.12 8.83 14.67 11.38 11.08 12.58 9.54 9.50 14.46 13.62 +77 3 20 16.79 11.83 25.04 8.50 11.83 10.41 17.41 9.21 9.79 10.83 15.75 16.88 +77 3 21 14.54 11.08 28.25 9.75 10.46 8.58 18.21 7.38 10.79 7.71 9.79 14.58 +77 3 22 10.54 8.29 17.71 5.71 6.92 8.08 13.50 7.00 7.29 7.00 8.54 14.46 +77 3 23 9.33 3.96 8.67 2.88 6.54 5.46 12.08 5.13 8.17 7.33 7.92 18.29 +77 3 24 11.58 11.83 4.96 2.79 9.42 6.00 9.71 5.25 6.00 5.66 5.41 10.29 +77 3 25 19.12 19.50 14.62 7.58 17.67 14.25 12.08 12.92 10.58 8.75 12.79 14.04 +77 3 26 14.75 13.67 13.50 7.25 15.21 12.87 12.54 12.25 10.29 6.96 12.04 17.58 +77 3 27 14.50 15.09 30.84 10.41 12.87 12.08 19.33 13.42 12.17 12.87 19.79 24.13 +77 3 28 12.17 8.38 21.34 5.91 6.38 5.37 10.13 5.04 6.34 9.33 6.58 14.67 +77 3 29 8.58 5.50 5.54 2.04 3.58 4.71 7.79 4.54 4.58 5.54 13.67 12.62 +77 3 30 25.04 19.50 20.38 13.13 18.79 16.75 14.12 15.92 16.71 19.17 28.42 29.79 +77 3 31 26.16 22.17 24.08 13.79 21.67 18.41 19.46 19.87 19.46 19.70 26.96 25.12 +77 4 1 21.67 16.00 17.33 13.59 20.83 15.96 25.62 17.62 19.41 20.67 24.37 30.09 +77 4 2 12.17 6.79 10.13 6.17 9.21 8.67 12.33 9.08 9.62 11.29 13.54 22.79 +77 4 3 19.70 12.46 20.04 10.08 13.29 12.25 14.92 11.83 11.67 15.34 20.00 30.04 +77 4 4 12.96 9.21 9.21 5.00 6.17 5.96 9.38 5.41 7.04 7.46 12.25 14.92 +77 4 5 8.63 7.25 7.25 4.33 7.21 7.17 11.17 5.96 7.83 9.46 10.79 16.46 +77 4 6 14.37 13.21 15.04 8.46 11.17 11.38 15.67 10.79 11.34 17.83 18.25 27.54 +77 4 7 18.12 14.71 17.75 7.58 12.25 11.00 13.17 10.00 9.96 15.12 16.33 22.46 +77 4 8 15.75 9.79 10.21 5.91 10.13 8.58 8.63 8.42 8.08 8.33 15.54 13.33 +77 4 9 11.50 9.96 9.79 4.21 7.58 7.62 6.13 4.33 5.63 6.92 6.75 9.62 +77 4 10 17.33 12.83 9.96 9.13 11.67 10.21 13.83 8.33 9.83 10.00 12.46 15.75 +77 4 11 11.96 10.96 11.04 6.04 11.34 10.08 13.04 10.17 10.67 9.17 14.71 15.00 +77 4 12 17.21 15.71 13.62 10.50 18.34 15.54 21.62 16.38 16.62 15.41 18.25 22.21 +77 4 13 19.29 13.42 12.54 10.25 15.29 12.87 18.54 10.83 12.21 16.50 16.46 22.50 +77 4 14 14.79 8.54 10.46 6.83 10.88 8.96 14.12 6.25 9.29 11.34 10.58 17.83 +77 4 15 6.87 6.21 5.88 1.96 2.42 3.50 8.00 2.79 2.67 4.54 8.00 7.41 +77 4 16 11.08 9.75 9.75 3.54 7.21 7.04 8.42 4.92 4.83 5.50 10.37 11.17 +77 4 17 7.08 6.04 14.12 4.04 5.25 5.83 8.58 3.67 5.13 6.96 12.96 12.87 +77 4 18 9.79 9.62 9.17 3.67 8.92 9.13 8.21 6.87 8.00 7.17 7.33 9.79 +77 4 19 8.12 6.67 10.34 2.75 3.92 5.71 7.75 5.21 5.29 6.79 9.17 15.87 +77 4 20 13.13 13.67 14.54 7.21 9.67 10.25 14.29 12.04 12.12 11.04 18.34 15.37 +77 4 21 21.59 19.75 19.70 12.33 15.37 13.17 18.46 16.62 15.34 15.59 22.79 18.63 +77 4 22 20.30 17.58 20.04 12.46 21.25 15.59 26.42 16.33 18.12 18.71 23.75 22.63 +77 4 23 16.96 18.12 14.50 10.63 16.88 12.38 20.25 11.46 12.83 12.00 17.50 20.12 +77 4 24 14.29 13.67 12.54 7.21 10.54 10.04 13.21 9.17 10.29 8.79 14.33 13.08 +77 4 25 17.96 14.96 16.79 9.04 14.21 12.92 14.50 15.87 13.21 16.04 25.21 26.63 +77 4 26 13.70 15.34 9.42 7.83 15.92 10.41 14.37 11.21 11.79 10.75 19.50 21.96 +77 4 27 22.63 17.37 19.87 11.17 15.50 12.38 17.54 7.79 12.25 11.75 16.66 18.54 +77 4 28 16.88 14.54 11.58 7.54 14.37 10.67 14.09 11.58 10.08 10.54 17.62 14.88 +77 4 29 17.33 13.70 11.04 7.58 14.37 10.17 13.79 8.33 10.83 12.79 16.88 21.46 +77 4 30 15.50 10.96 7.04 5.63 11.04 8.67 10.58 7.96 8.29 8.79 17.12 17.29 +77 5 1 6.42 7.12 8.67 3.58 4.58 4.00 6.75 6.13 3.33 4.50 19.21 12.38 +77 5 2 6.63 5.29 10.75 3.42 4.63 3.46 7.41 5.46 4.71 4.12 13.59 10.71 +77 5 3 12.79 7.38 11.58 6.21 7.29 7.21 11.04 6.75 8.29 9.96 10.37 15.83 +77 5 4 8.83 4.25 6.21 2.46 4.79 6.92 8.96 5.41 6.25 9.25 11.38 15.12 +77 5 5 8.75 4.75 7.50 1.79 3.29 5.71 7.96 3.08 3.17 3.50 8.25 12.08 +77 5 6 7.58 6.71 8.54 3.67 6.87 7.50 9.87 5.79 6.42 6.63 11.63 15.59 +77 5 7 11.71 10.13 11.38 8.87 12.67 11.63 17.08 13.00 13.00 15.16 16.38 25.75 +77 5 8 8.79 8.38 8.54 5.79 7.12 7.17 8.87 5.37 6.42 5.75 7.71 9.33 +77 5 9 13.54 9.75 9.21 4.83 9.13 6.83 6.58 4.96 5.09 3.71 8.21 6.87 +77 5 10 5.41 8.17 7.62 3.67 4.42 6.21 7.67 4.04 4.58 5.04 12.33 12.87 +77 5 11 17.41 14.71 16.66 7.71 14.09 11.58 15.71 12.62 12.71 13.37 18.08 15.87 +77 5 12 17.92 14.33 9.17 6.38 12.04 9.46 10.75 7.67 8.42 9.62 14.96 18.21 +77 5 13 7.96 5.00 10.58 5.09 5.25 5.33 7.96 4.46 4.63 7.50 8.21 11.92 +77 5 14 8.42 9.83 6.29 3.83 6.13 4.83 6.67 3.75 4.46 3.13 7.75 7.62 +77 5 15 14.21 12.67 17.04 5.75 8.75 9.17 8.71 7.79 6.34 6.29 11.04 10.25 +77 5 16 12.17 11.79 23.16 7.62 7.79 5.46 9.62 8.96 5.91 7.29 12.29 14.79 +77 5 17 6.87 4.63 16.33 3.37 2.96 4.79 5.09 3.37 4.71 3.58 4.63 9.71 +77 5 18 3.88 4.42 12.21 1.25 2.33 1.50 4.71 2.42 4.12 5.09 9.46 9.92 +77 5 19 4.54 5.41 5.96 1.83 2.21 2.96 4.50 5.25 3.67 2.04 13.25 8.83 +77 5 20 6.38 6.04 15.63 4.17 2.79 6.25 10.83 3.13 7.46 4.38 5.71 12.92 +77 5 21 12.71 7.41 22.46 7.58 7.04 8.71 11.96 4.92 7.87 5.91 7.67 9.00 +77 5 22 11.38 9.25 18.63 6.17 5.17 9.21 8.08 5.04 7.12 4.04 8.08 4.08 +77 5 23 12.29 6.63 16.46 4.29 6.08 8.08 9.04 2.92 6.58 3.67 10.41 4.54 +77 5 24 11.92 7.00 20.17 4.50 7.33 8.83 11.58 7.17 9.62 7.33 11.17 12.33 +77 5 25 11.04 6.42 21.25 5.66 6.83 9.71 11.50 4.96 8.79 6.50 8.50 11.96 +77 5 26 11.00 1.25 13.00 4.04 4.71 8.04 10.54 8.00 10.63 7.92 9.92 15.50 +77 5 27 6.87 6.75 6.17 4.33 8.04 6.83 9.04 6.38 9.42 7.50 8.42 16.08 +77 5 28 4.21 5.04 5.88 1.63 4.33 3.75 7.29 3.54 3.79 1.29 6.67 5.04 +77 5 29 5.09 5.37 13.00 3.25 4.00 4.75 10.17 5.29 6.92 4.67 8.42 9.92 +77 5 30 7.96 2.88 13.50 3.79 4.12 7.38 12.50 4.79 7.50 4.38 7.21 15.04 +77 5 31 8.00 3.63 12.58 3.21 5.37 4.12 7.58 2.37 5.75 4.29 5.71 9.96 +77 6 1 7.08 5.25 9.71 2.83 2.21 3.50 5.29 1.42 2.00 0.92 5.21 5.63 +77 6 2 4.75 5.75 14.67 3.42 3.17 3.46 6.87 2.17 3.42 2.75 4.71 2.58 +77 6 3 9.62 5.13 6.17 5.71 8.17 5.50 8.50 4.79 4.00 5.71 7.83 12.21 +77 6 4 16.71 7.21 10.58 6.21 11.34 9.50 12.83 9.62 10.50 9.92 13.54 14.54 +77 6 5 17.79 11.75 11.17 7.75 15.92 10.41 13.04 9.17 10.54 11.46 14.09 17.08 +77 6 6 20.62 18.71 14.71 9.83 18.46 13.04 14.67 13.29 12.87 12.71 21.34 21.84 +77 6 7 17.62 11.17 11.21 6.79 13.29 8.17 11.67 9.04 7.87 9.54 16.13 18.79 +77 6 8 9.00 6.87 7.08 3.17 6.87 4.71 6.71 5.58 5.63 5.63 11.08 13.25 +77 6 9 7.41 8.50 12.83 3.00 6.67 3.75 7.58 4.29 5.88 3.79 12.33 9.79 +77 6 10 14.12 12.75 27.25 8.29 10.88 8.17 16.00 10.08 9.54 10.04 19.62 20.79 +77 6 11 13.75 10.58 21.00 8.08 9.46 10.17 14.79 8.63 9.83 10.96 18.34 19.12 +77 6 12 7.00 6.79 8.58 4.63 6.34 7.38 7.67 4.33 6.63 6.17 8.17 9.33 +77 6 13 12.87 8.08 9.25 4.58 7.00 6.63 6.21 5.91 5.58 5.58 9.46 7.00 +77 6 14 11.92 11.17 18.66 6.87 9.87 8.79 11.08 8.75 9.33 9.29 13.62 16.62 +77 6 15 7.21 9.21 20.50 4.79 6.08 6.87 11.00 5.54 7.46 7.54 14.00 9.83 +77 6 16 8.50 2.58 18.00 2.21 6.34 9.46 10.00 5.83 9.87 7.46 12.29 9.62 +77 6 17 11.46 4.29 15.59 2.88 8.38 9.25 9.42 7.58 9.21 5.25 13.04 5.71 +77 6 18 6.21 7.00 13.79 3.25 7.38 6.00 5.54 6.00 4.92 4.29 13.50 12.25 +77 6 19 7.08 7.29 8.75 3.00 7.21 5.58 4.00 6.87 6.50 5.83 10.50 12.00 +77 6 20 4.83 4.54 12.54 1.96 4.88 2.83 4.00 1.00 3.37 1.46 9.29 4.88 +77 6 21 4.83 4.38 10.75 2.04 5.63 2.25 2.96 2.21 1.67 2.42 5.79 4.79 +77 6 22 6.00 3.25 4.21 1.71 3.79 3.58 2.79 1.17 2.92 2.96 2.96 3.58 +77 6 23 7.33 7.71 6.50 3.50 6.08 6.29 5.00 3.71 4.42 5.37 8.33 8.33 +77 6 24 13.50 11.71 10.79 4.12 10.41 8.17 6.04 4.50 5.54 4.12 9.38 6.25 +77 6 25 16.25 7.04 9.38 6.50 10.17 9.04 8.79 6.00 7.62 8.63 9.13 12.42 +77 6 26 9.79 6.92 9.38 4.38 9.38 7.79 9.75 5.04 9.25 7.12 12.12 11.58 +77 6 27 11.08 7.54 12.12 4.21 7.92 6.71 12.25 4.71 8.79 5.83 6.00 7.08 +77 6 28 14.58 8.71 8.42 5.75 9.33 8.12 7.08 5.66 6.63 7.00 9.71 10.79 +77 6 29 13.08 11.25 7.25 5.25 13.25 8.92 7.50 7.00 7.46 6.25 12.46 12.54 +77 6 30 19.21 17.46 16.00 9.21 17.83 12.25 14.96 8.04 12.71 11.50 15.67 15.04 +77 7 1 15.41 16.29 17.08 6.25 11.83 11.83 12.29 10.58 10.41 7.21 17.37 7.83 +77 7 2 15.59 15.87 15.34 8.46 13.62 11.79 13.08 11.96 11.63 11.79 24.50 17.33 +77 7 3 6.25 12.62 9.00 4.83 10.54 8.96 7.33 8.29 8.54 10.21 19.79 12.50 +77 7 4 6.71 12.17 4.08 4.71 10.04 7.83 4.17 6.46 8.58 9.42 15.54 10.79 +77 7 5 5.79 1.13 7.33 2.37 1.58 2.62 4.21 2.08 6.17 4.21 10.00 5.09 +77 7 6 4.46 3.08 9.71 2.08 3.13 4.42 6.21 0.21 5.79 3.33 6.87 7.17 +77 7 7 8.87 9.21 6.50 1.92 8.12 4.21 4.29 5.25 2.83 3.37 8.21 7.87 +77 7 8 18.08 12.25 13.88 7.04 10.37 7.58 8.42 7.92 8.12 9.00 12.71 12.46 +77 7 9 8.96 8.79 20.33 6.42 8.25 6.96 8.87 6.87 6.42 4.17 14.62 6.25 +77 7 10 8.58 5.00 16.33 4.04 7.29 7.21 8.42 4.33 9.29 6.00 10.46 4.50 +77 7 11 7.25 4.17 15.71 3.46 2.83 5.66 6.79 2.79 5.71 4.92 8.42 5.58 +77 7 12 6.58 2.75 12.50 3.13 6.08 7.67 9.04 5.09 7.17 3.75 14.58 6.17 +77 7 13 4.63 3.08 14.33 4.58 5.00 5.79 6.79 3.92 4.67 3.08 12.00 5.04 +77 7 14 4.79 2.46 8.46 2.75 4.42 2.67 6.17 0.37 3.79 2.50 4.50 6.34 +77 7 15 9.38 5.21 6.38 3.50 5.58 6.08 7.17 5.13 5.71 5.37 11.00 10.37 +77 7 16 11.00 6.87 7.54 3.46 6.58 4.29 9.08 5.66 5.50 5.09 12.46 13.50 +77 7 17 18.63 13.54 14.17 8.79 15.54 11.29 14.17 12.08 12.38 11.34 18.25 19.04 +77 7 18 15.46 10.75 11.12 9.00 15.67 12.04 18.16 12.42 11.83 14.00 18.12 18.75 +77 7 19 14.04 12.71 11.00 7.92 15.59 12.04 17.50 11.63 12.46 10.67 17.92 18.00 +77 7 20 16.25 9.33 10.63 7.96 11.71 9.25 15.29 7.62 10.21 11.83 11.63 18.21 +77 7 21 5.50 8.42 7.92 2.96 8.46 6.46 7.83 2.71 7.38 5.88 10.37 10.00 +77 7 22 8.04 10.37 9.67 4.25 9.96 8.29 13.21 9.08 10.04 9.59 16.58 13.08 +77 7 23 18.79 14.96 15.92 8.87 13.21 12.04 15.50 12.83 12.75 15.25 18.08 19.04 +77 7 24 13.33 13.62 11.50 9.38 15.12 11.58 17.21 11.83 11.63 12.71 16.92 23.21 +77 7 25 20.33 16.25 13.67 11.79 15.59 12.29 15.41 9.83 11.04 13.33 15.34 23.29 +77 7 26 12.79 7.92 8.21 5.71 11.42 7.33 11.58 6.46 7.79 8.08 10.63 15.63 +77 7 27 13.17 7.87 6.46 5.25 9.38 6.71 9.42 4.83 7.12 6.08 9.83 11.00 +77 7 28 10.63 7.00 11.42 4.63 6.96 6.25 9.21 5.75 6.96 7.58 9.00 12.96 +77 7 29 8.75 3.96 6.87 3.92 4.42 4.79 7.38 2.04 4.54 4.08 9.96 11.71 +77 7 30 10.88 7.04 5.17 4.25 7.54 6.17 7.41 4.29 6.87 7.71 8.12 12.79 +77 7 31 8.42 3.88 7.08 4.33 3.63 3.50 7.21 2.00 4.08 4.67 6.87 12.29 +77 8 1 4.33 2.96 4.42 2.33 0.96 1.08 4.96 1.87 2.33 2.04 10.50 9.83 +77 8 2 5.46 5.00 7.96 2.88 6.17 4.50 8.87 3.00 4.71 4.17 9.62 10.29 +77 8 3 11.29 6.58 9.54 4.67 7.00 5.83 9.62 4.33 7.12 4.50 11.42 10.41 +77 8 4 16.79 14.12 15.16 7.17 13.59 10.79 14.88 9.59 13.00 11.71 15.41 15.79 +77 8 5 8.75 8.87 11.42 4.92 5.04 5.46 9.00 4.42 5.79 6.83 9.46 13.00 +77 8 6 6.71 2.71 13.37 2.88 1.71 2.79 6.34 1.75 3.54 2.75 4.58 7.29 +77 8 7 4.54 3.67 6.75 2.29 1.54 2.37 7.04 1.04 3.96 3.50 4.25 7.38 +77 8 8 3.92 3.08 4.54 1.42 1.92 2.17 4.46 1.38 3.63 2.79 3.75 9.87 +77 8 9 5.79 2.50 5.46 1.92 1.42 1.96 3.71 1.13 2.33 1.79 5.91 5.04 +77 8 10 5.04 10.25 5.41 3.79 6.63 5.37 5.83 3.75 5.75 5.88 11.96 9.83 +77 8 11 6.87 11.87 5.79 5.25 8.67 7.54 6.50 4.58 7.21 6.25 11.79 11.08 +77 8 12 6.29 13.25 4.75 3.54 9.29 7.17 7.21 3.67 5.54 7.00 6.04 12.25 +77 8 13 12.00 16.33 4.88 3.88 10.63 7.54 6.54 6.29 7.08 6.75 12.96 16.96 +77 8 14 7.58 6.67 6.96 5.46 7.50 8.63 7.87 5.33 7.17 5.83 9.75 11.75 +77 8 15 3.17 2.92 7.08 2.75 1.13 3.71 7.67 1.00 5.63 5.33 5.63 12.54 +77 8 16 11.71 7.79 18.00 6.21 7.71 9.25 15.37 7.54 10.75 8.38 10.21 16.00 +77 8 17 13.67 10.58 27.88 10.00 10.75 10.63 19.17 8.12 11.34 10.46 13.13 11.92 +77 8 18 10.08 4.83 18.00 4.04 5.41 4.25 9.17 3.75 4.96 3.46 7.62 6.29 +77 8 19 6.50 3.42 11.75 3.42 4.46 4.17 7.12 1.33 4.29 3.29 5.04 3.96 +77 8 20 10.88 5.58 12.75 5.41 6.58 4.88 7.46 2.83 5.83 3.96 6.58 3.08 +77 8 21 11.83 5.37 8.63 4.58 4.12 2.79 7.96 2.83 4.38 1.50 6.50 8.50 +77 8 22 6.79 6.21 15.21 3.63 3.50 4.29 9.21 1.54 4.67 3.92 4.71 11.21 +77 8 23 11.83 12.42 10.04 6.63 12.67 8.67 8.54 6.83 7.96 7.21 10.63 10.50 +77 8 24 13.62 9.25 17.00 6.54 8.83 11.00 16.29 6.04 10.83 12.58 8.83 23.42 +77 8 25 11.04 9.59 9.96 3.96 11.42 7.62 9.67 3.33 7.79 4.58 8.21 6.79 +77 8 26 9.92 12.33 9.21 5.29 13.00 7.25 10.67 9.21 7.25 9.21 18.84 24.08 +77 8 27 19.38 11.08 17.83 8.00 9.13 8.38 10.54 5.66 7.17 7.08 10.00 14.29 +77 8 28 10.88 11.25 10.29 2.71 6.79 7.79 9.08 12.00 9.13 8.75 22.29 20.67 +77 8 29 12.17 8.21 11.34 5.17 9.67 8.00 11.58 10.00 9.25 9.50 17.67 20.88 +77 8 30 9.79 3.58 8.92 3.83 3.21 4.17 7.46 1.87 2.96 1.58 9.54 5.96 +77 8 31 7.62 7.29 10.75 3.50 4.79 4.75 7.46 4.83 4.58 3.96 11.75 10.58 +77 9 1 17.37 16.33 16.83 8.58 14.46 11.83 15.09 13.92 13.29 13.88 23.29 25.17 +77 9 2 12.75 11.87 11.17 6.54 12.92 10.25 14.37 11.04 10.41 12.50 18.96 24.25 +77 9 3 11.12 11.75 9.38 4.63 10.00 8.46 12.12 9.17 7.67 8.04 19.38 19.12 +77 9 4 19.25 15.83 17.00 7.50 15.04 12.54 16.04 12.71 13.04 15.04 21.71 26.12 +77 9 5 9.00 10.50 8.17 4.71 9.71 7.46 11.63 7.29 9.25 8.58 16.25 20.58 +77 9 6 16.66 12.42 14.12 7.92 12.12 9.21 14.46 8.00 10.29 9.75 14.25 17.00 +77 9 7 6.46 3.17 4.75 1.08 3.37 4.21 8.17 2.75 4.88 4.33 11.50 17.33 +77 9 8 10.92 7.46 8.38 4.83 9.21 7.21 10.58 5.13 8.33 6.87 12.00 14.54 +77 9 9 11.38 11.34 10.71 5.33 8.42 8.50 11.75 8.83 8.21 7.33 15.87 17.29 +77 9 10 15.75 15.54 18.50 8.83 13.88 11.04 20.46 11.08 12.46 9.79 17.21 15.41 +77 9 11 10.29 8.75 12.25 6.21 10.29 10.83 14.04 10.67 12.42 12.08 17.12 22.92 +77 9 12 8.79 6.96 8.92 4.17 3.04 4.38 7.92 2.75 4.25 5.50 7.00 14.09 +77 9 13 3.88 4.42 4.29 1.54 2.79 2.83 4.58 2.88 3.92 3.92 9.21 11.87 +77 9 14 3.21 3.54 4.92 1.63 2.29 3.04 8.58 1.63 4.75 5.21 9.29 17.04 +77 9 15 4.58 2.25 8.71 1.38 2.46 1.42 2.42 0.42 1.79 0.83 4.83 8.58 +77 9 16 12.04 5.21 11.25 3.63 7.71 8.12 13.46 7.41 9.33 6.96 10.71 16.17 +77 9 17 12.71 12.71 14.00 4.46 9.38 7.50 10.58 6.04 6.96 5.71 11.00 14.04 +77 9 18 10.34 6.54 13.96 3.21 5.46 5.83 8.38 3.00 5.00 4.04 8.58 6.54 +77 9 19 9.92 4.63 11.83 3.33 3.67 4.50 8.50 2.42 4.58 3.42 6.92 7.29 +77 9 20 9.38 7.33 10.37 2.96 5.37 4.79 7.50 2.83 4.96 4.21 7.29 8.87 +77 9 21 6.46 2.71 8.21 2.42 4.29 2.83 5.13 0.29 1.67 0.29 4.33 2.08 +77 9 22 8.92 11.42 7.00 1.87 7.54 3.29 5.00 3.67 4.83 4.08 8.63 9.71 +77 9 23 24.79 23.09 15.71 10.00 20.58 14.46 15.21 12.46 11.71 11.75 16.79 18.25 +77 9 24 17.00 13.13 18.38 10.41 14.37 16.08 20.12 12.58 14.75 17.79 17.54 27.04 +77 9 25 13.83 12.46 12.46 4.46 11.12 8.42 11.08 10.29 8.92 9.00 15.16 16.88 +77 9 26 12.50 12.04 12.08 6.04 9.71 8.87 8.67 10.21 9.54 10.34 14.92 15.59 +77 9 27 14.50 15.54 11.67 7.58 10.37 7.54 9.83 9.46 9.00 7.08 12.08 13.21 +77 9 28 19.83 18.05 15.46 12.54 21.34 15.34 21.09 18.05 16.42 16.46 23.75 29.63 +77 9 29 20.33 17.04 17.25 10.96 21.71 13.37 20.30 14.67 16.46 15.04 23.79 28.84 +77 9 30 20.21 18.25 17.75 10.41 19.70 13.13 21.12 16.04 15.75 15.37 22.17 25.46 +77 10 1 16.75 15.34 12.25 9.42 16.38 11.38 18.50 13.92 14.09 14.46 22.34 29.67 +77 10 2 7.41 5.46 7.62 2.92 6.75 5.33 10.79 6.17 7.83 7.00 9.75 16.29 +77 10 3 14.62 13.54 14.29 5.09 10.13 8.21 10.17 9.75 10.08 6.87 14.62 15.16 +77 10 4 13.33 14.33 9.62 5.63 12.79 8.63 11.21 9.59 9.92 7.71 14.79 16.29 +77 10 5 7.33 6.34 6.54 1.42 6.63 4.58 7.75 5.83 7.00 6.87 11.54 15.71 +77 10 6 17.25 18.08 21.00 8.75 11.75 8.17 14.96 12.00 10.63 10.08 19.79 21.67 +77 10 7 9.75 8.96 9.08 4.58 9.75 7.33 10.88 9.87 9.13 9.04 12.17 17.37 +77 10 8 8.00 4.25 8.08 2.83 5.37 6.54 10.41 10.08 9.96 10.04 16.38 18.25 +77 10 9 16.33 15.41 11.79 8.21 16.58 10.71 15.25 13.33 11.79 9.75 17.58 13.46 +77 10 10 12.21 11.54 7.62 3.71 8.00 6.21 9.75 6.71 6.75 6.34 9.04 13.21 +77 10 11 25.92 20.46 20.96 13.46 18.05 13.67 16.29 17.37 16.58 17.46 24.25 24.04 +77 10 12 16.83 15.83 14.67 8.25 16.50 12.87 16.71 17.92 14.83 17.12 26.58 28.46 +77 10 13 13.88 14.83 11.79 5.66 12.67 8.67 10.58 13.00 10.50 7.41 16.42 15.83 +77 10 14 13.21 14.04 13.08 7.46 13.62 10.37 12.54 12.12 12.79 7.92 15.21 20.25 +77 10 15 17.00 18.08 15.67 8.38 15.46 14.58 18.21 14.71 14.50 8.38 16.29 22.79 +77 10 16 13.08 18.41 11.29 4.75 14.71 10.50 11.29 13.17 11.67 8.96 16.21 20.38 +77 10 17 12.50 14.79 12.54 5.79 12.46 13.29 13.33 9.08 10.21 6.63 12.54 16.17 +77 10 18 13.50 13.70 13.70 6.96 12.17 11.58 12.17 11.17 13.46 9.75 12.29 20.79 +77 10 19 15.34 11.21 13.79 7.87 9.21 9.87 12.04 11.96 12.67 11.46 15.29 17.12 +77 10 20 8.33 10.13 10.04 3.21 6.25 6.58 8.92 8.00 7.67 7.54 10.96 13.17 +77 10 21 14.62 13.37 13.75 8.29 10.88 9.21 11.83 9.92 12.83 9.79 10.63 12.58 +77 10 22 18.25 11.50 15.16 6.13 9.25 7.33 10.58 9.71 9.75 10.37 14.54 18.63 +77 10 23 22.29 20.08 16.00 7.87 14.00 12.50 16.50 14.46 13.70 12.71 21.25 21.59 +77 10 24 15.79 11.21 12.67 7.25 9.67 9.46 14.88 11.92 11.63 10.63 19.41 22.58 +77 10 25 10.67 12.71 8.83 4.08 8.12 8.79 9.79 12.83 8.46 8.92 21.87 18.38 +77 10 26 20.04 18.05 15.25 8.83 13.79 12.42 13.00 14.67 13.96 14.09 28.75 25.84 +77 10 27 11.79 13.96 8.54 6.04 12.17 8.50 13.25 12.29 11.25 11.17 24.67 24.96 +77 10 28 14.25 12.83 11.12 4.79 12.83 9.33 14.92 14.54 13.37 10.37 22.67 23.42 +77 10 29 23.91 18.41 16.42 10.96 14.46 12.08 14.37 16.21 14.50 16.50 25.66 25.41 +77 10 30 27.71 20.08 25.12 15.00 13.54 12.92 18.05 17.41 14.54 16.79 26.67 27.12 +77 10 31 13.25 15.83 9.13 5.79 11.21 8.21 11.75 8.42 9.87 8.42 16.71 18.54 +77 11 1 16.71 11.54 12.17 4.17 8.54 7.17 11.12 6.46 8.25 6.21 11.04 15.63 +77 11 2 11.54 10.92 7.38 3.92 9.00 6.67 8.46 7.87 7.50 6.42 15.16 15.50 +77 11 3 15.59 18.91 12.33 8.75 15.46 9.96 18.29 12.79 12.42 10.92 20.96 27.50 +77 11 4 14.62 14.17 10.54 4.75 10.13 8.38 12.62 9.25 9.13 8.75 14.83 19.79 +77 11 5 20.33 17.75 16.46 9.00 13.50 10.63 15.29 13.17 12.42 12.96 16.96 20.38 +77 11 6 20.38 19.67 15.63 9.17 14.50 12.12 17.46 17.04 13.88 15.25 24.37 28.12 +77 11 7 21.17 17.16 19.33 10.21 14.88 12.21 19.33 9.04 12.83 11.21 16.71 19.38 +77 11 8 16.17 16.83 15.29 6.13 14.50 11.58 16.88 13.79 13.13 12.67 24.71 26.87 +77 11 9 16.66 18.21 15.34 7.62 11.58 10.79 12.12 12.00 10.58 8.75 15.79 15.25 +77 11 10 23.91 23.79 20.04 13.46 15.34 13.96 17.79 22.50 15.71 19.12 33.34 26.38 +77 11 11 30.84 30.34 26.42 18.05 25.80 17.71 24.13 21.29 19.21 20.71 25.84 29.58 +77 11 12 21.12 22.71 14.37 10.92 21.59 12.58 19.29 16.38 14.33 12.83 23.42 30.13 +77 11 13 15.25 13.96 11.54 8.75 14.29 10.96 16.21 13.25 13.54 13.21 18.75 27.75 +77 11 14 27.92 25.25 19.33 18.71 28.46 19.50 28.16 24.00 20.79 22.58 30.91 38.66 +77 11 15 23.21 17.83 13.54 12.50 16.13 11.83 18.79 14.54 13.54 14.21 22.21 32.42 +77 11 16 18.79 18.63 12.62 8.25 15.16 10.54 13.54 12.25 10.67 6.63 21.50 17.41 +77 11 17 22.29 15.63 16.42 8.25 10.92 8.83 13.59 10.04 10.17 10.29 17.37 27.25 +77 11 18 11.34 4.38 11.75 4.17 6.42 4.83 11.38 6.83 7.38 6.96 12.62 20.83 +77 11 19 17.21 18.88 14.54 10.46 17.00 12.00 19.92 14.09 14.67 13.17 22.25 29.29 +77 11 20 20.46 18.66 16.71 8.08 10.41 7.71 13.33 9.83 10.41 8.71 17.16 26.08 +77 11 21 20.38 16.25 18.46 10.00 10.88 9.92 14.17 11.58 12.08 11.63 20.75 31.42 +77 11 22 16.29 10.63 12.21 6.08 8.42 8.00 13.46 9.17 9.83 10.63 14.92 24.21 +77 11 23 18.00 19.87 15.00 11.42 19.38 13.75 23.83 19.70 17.37 16.58 26.38 34.83 +77 11 24 18.46 13.00 14.00 9.87 9.50 9.54 17.08 10.63 10.34 14.79 14.25 31.88 +77 11 25 5.88 4.46 8.46 1.00 1.79 1.96 7.54 2.08 2.13 1.79 2.13 8.12 +77 11 26 9.83 11.63 5.33 0.25 3.92 2.46 4.04 5.46 1.87 3.54 6.92 10.37 +77 11 27 9.75 10.58 8.71 0.83 7.12 4.83 4.00 6.79 3.04 3.92 10.00 10.46 +77 11 28 8.67 10.83 9.25 1.58 2.17 1.71 5.71 3.17 2.13 4.04 4.04 7.71 +77 11 29 9.00 6.75 5.21 0.71 2.08 0.96 1.87 1.38 0.00 0.04 6.13 8.46 +77 11 30 6.63 4.12 8.46 0.46 3.79 1.75 2.13 2.21 0.21 1.29 5.04 8.33 +77 12 1 13.37 10.92 12.42 2.37 5.79 6.13 8.96 7.38 6.29 5.71 8.54 12.42 +77 12 2 21.79 15.12 20.96 10.25 15.96 15.00 20.33 14.54 14.83 14.17 15.34 24.30 +77 12 3 26.20 24.87 24.17 11.25 22.71 20.21 24.08 18.96 17.88 18.38 19.55 29.95 +77 12 4 25.17 23.91 22.04 11.54 22.00 21.34 22.46 21.84 16.21 18.16 22.54 28.12 +77 12 5 16.33 17.04 19.25 9.21 14.29 14.00 20.21 15.34 13.83 15.04 16.38 25.84 +77 12 6 10.63 4.38 15.09 5.75 7.96 8.75 18.34 13.46 12.29 11.04 12.62 31.96 +77 12 7 14.71 11.54 16.58 6.83 11.92 12.58 15.75 17.12 13.70 14.00 16.04 33.45 +77 12 8 6.63 4.54 10.83 3.75 4.58 4.75 9.00 6.42 5.33 4.79 8.12 15.83 +77 12 9 15.63 15.63 15.67 6.79 12.42 11.04 14.17 10.54 11.38 10.71 12.96 19.58 +77 12 10 15.29 14.62 11.71 5.21 10.13 8.21 9.75 11.50 10.21 10.83 18.00 20.00 +77 12 11 20.79 13.96 17.92 7.50 10.25 8.75 12.33 7.92 8.92 7.46 9.50 11.21 +77 12 12 11.71 14.09 11.25 5.71 12.62 8.38 12.33 7.71 9.38 7.29 11.67 12.42 +77 12 13 11.38 13.04 12.38 3.58 8.63 8.75 13.42 13.17 10.37 10.13 16.66 15.04 +77 12 14 10.96 11.42 11.79 2.96 7.00 7.92 13.79 13.96 9.38 11.38 19.67 21.75 +77 12 15 7.75 12.08 6.75 2.21 6.54 4.50 7.58 7.75 6.25 5.54 9.04 12.58 +77 12 16 8.25 9.17 6.79 3.33 7.08 5.46 6.54 3.75 7.21 5.09 7.46 12.67 +77 12 17 5.41 4.83 7.38 1.21 4.00 1.71 2.67 1.25 1.33 0.67 2.29 9.87 +77 12 18 4.92 2.21 5.09 1.13 2.37 2.33 2.71 1.71 3.46 2.50 2.37 7.54 +77 12 19 7.50 7.71 6.25 3.37 9.17 6.71 4.79 4.12 6.71 4.04 5.83 11.29 +77 12 20 13.00 16.33 14.29 7.25 13.79 10.21 11.67 9.83 11.38 6.42 11.67 11.46 +77 12 21 17.62 17.88 18.71 8.67 14.17 14.54 14.17 13.88 11.87 10.50 13.83 24.33 +77 12 22 19.70 14.37 17.00 9.83 11.42 10.25 10.71 9.42 10.83 11.29 13.83 17.62 +77 12 23 19.58 15.16 17.79 9.87 11.58 10.41 12.96 8.17 8.92 7.29 11.42 12.79 +77 12 24 17.79 14.25 14.75 11.67 17.67 12.62 21.75 13.54 15.25 12.96 16.88 23.16 +77 12 25 10.29 8.54 9.33 3.17 8.21 6.46 10.96 8.67 9.62 7.50 13.08 15.34 +77 12 26 11.96 14.58 9.75 4.08 10.54 7.75 11.96 9.87 10.92 7.79 15.12 14.42 +77 12 27 22.08 18.16 15.16 11.04 13.75 10.67 16.08 12.54 11.12 10.54 19.46 26.96 +77 12 28 19.70 12.75 15.63 9.75 10.00 5.83 12.58 9.59 10.00 8.83 14.54 26.83 +77 12 29 14.33 10.41 9.92 7.12 14.21 9.42 15.71 11.75 12.33 10.75 15.50 23.71 +77 12 30 21.75 13.96 12.12 10.88 17.29 11.21 16.83 14.58 13.00 12.00 16.33 26.30 +77 12 31 15.09 7.62 8.79 7.08 10.63 7.58 15.59 11.54 12.25 9.08 14.12 19.55 +78 1 1 8.33 7.12 7.71 3.54 8.50 7.50 14.71 10.00 11.83 10.00 15.09 20.46 +78 1 2 14.62 11.83 10.50 7.41 14.21 9.62 17.08 13.46 13.50 11.67 22.63 27.92 +78 1 3 20.67 17.29 14.54 12.12 18.91 13.54 21.96 16.62 15.09 15.50 20.33 28.04 +78 1 4 12.96 10.67 7.62 6.42 13.88 8.50 8.38 11.83 5.91 3.75 14.29 15.29 +78 1 5 12.12 10.46 11.29 3.37 8.79 7.87 13.88 15.04 12.54 13.17 20.41 23.50 +78 1 6 16.50 13.83 14.21 6.42 9.87 9.54 11.29 12.87 11.12 13.21 20.41 21.62 +78 1 7 6.00 3.04 7.08 2.04 4.71 3.75 8.08 6.87 5.46 6.17 12.08 15.63 +78 1 8 9.21 11.58 6.63 2.04 8.38 7.83 8.12 12.04 7.25 10.46 19.75 20.75 +78 1 9 14.88 17.46 12.12 8.17 13.75 9.08 17.33 11.00 11.71 9.83 18.75 22.63 +78 1 10 16.38 21.54 14.42 9.42 16.83 9.50 16.62 10.29 12.17 10.29 19.46 19.79 +78 1 11 25.96 23.00 23.50 13.37 17.16 13.75 19.41 13.42 14.33 15.12 23.63 34.70 +78 1 12 13.00 8.67 18.66 6.29 6.38 5.29 11.58 4.54 5.91 6.13 9.87 19.79 +78 1 13 7.38 3.04 8.83 1.46 3.88 1.83 9.87 4.63 3.96 3.25 6.04 15.50 +78 1 14 4.67 1.08 8.04 2.79 2.33 0.71 4.17 1.21 1.67 2.37 3.96 10.63 +78 1 15 2.00 3.88 6.67 0.87 4.12 2.29 1.58 6.13 3.54 4.50 9.96 14.42 +78 1 16 14.79 11.92 12.83 5.37 8.50 5.04 7.87 6.38 7.04 5.46 8.75 13.25 +78 1 17 12.83 5.83 7.87 2.75 6.54 3.46 8.33 5.09 4.96 4.88 9.33 12.71 +78 1 18 12.92 10.63 12.42 4.79 11.87 7.67 7.92 8.50 8.04 8.12 13.62 17.00 +78 1 19 14.46 15.09 9.92 5.96 13.42 5.29 10.29 8.54 8.12 5.04 15.79 15.46 +78 1 20 15.00 11.75 10.21 6.46 11.83 7.17 13.79 11.79 10.92 10.08 14.88 19.58 +78 1 21 21.54 19.17 15.54 9.42 16.96 11.50 11.08 15.09 12.62 14.42 20.54 20.88 +78 1 22 15.12 14.62 10.79 7.71 13.88 8.38 15.71 10.08 11.92 10.25 13.29 20.38 +78 1 23 15.75 12.12 14.37 9.29 14.42 10.21 13.50 11.92 13.96 11.50 12.42 18.41 +78 1 24 11.21 5.37 8.17 6.83 7.41 6.58 13.92 8.54 9.75 8.83 12.29 25.75 +78 1 25 8.25 10.25 7.58 2.75 10.29 4.67 8.33 6.46 6.25 5.04 10.79 12.58 +78 1 26 13.08 11.29 10.04 6.67 13.75 7.00 16.50 10.88 12.04 10.96 17.88 26.42 +78 1 27 18.54 9.59 15.67 6.42 10.34 7.04 11.63 9.38 9.46 7.58 11.42 24.87 +78 1 28 35.38 29.88 18.00 15.96 26.92 15.67 15.87 26.34 15.04 17.75 34.42 35.83 +78 1 29 29.38 18.54 28.08 17.12 17.50 13.75 25.54 15.67 18.08 20.50 19.12 38.20 +78 1 30 9.62 8.71 9.59 2.71 7.58 3.54 6.08 6.08 5.33 4.46 10.41 12.83 +78 1 31 10.50 8.79 9.54 4.42 10.58 5.46 8.00 5.71 6.50 6.38 6.54 17.37 +78 2 1 27.25 24.21 18.16 17.46 27.54 18.05 20.96 25.04 20.04 17.50 27.71 21.12 +78 2 2 13.29 9.67 12.54 9.25 11.54 8.12 14.54 10.25 10.75 12.38 10.13 22.34 +78 2 3 7.50 11.25 8.54 2.96 10.92 6.87 8.12 7.41 8.46 4.04 11.75 17.58 +78 2 4 9.21 11.08 7.67 4.67 12.42 7.25 8.75 11.63 9.87 6.92 16.54 16.42 +78 2 5 14.04 14.50 9.25 5.75 14.29 7.00 13.46 9.04 10.08 6.04 15.87 15.63 +78 2 6 8.58 8.46 8.21 2.62 10.00 4.88 9.59 8.33 7.83 4.33 9.96 12.04 +78 2 7 3.42 0.79 6.08 1.29 3.46 0.58 5.50 1.83 2.67 1.46 2.17 7.21 +78 2 8 10.29 6.83 13.17 3.04 9.17 2.79 9.38 8.00 7.38 4.46 4.71 11.29 +78 2 9 13.33 10.25 20.30 7.00 10.41 5.96 15.71 9.13 9.33 6.54 5.37 11.96 +78 2 10 9.21 6.83 12.96 3.92 6.29 2.37 6.79 7.00 3.92 2.83 9.71 10.75 +78 2 11 19.70 11.67 12.38 5.88 11.38 8.63 5.09 12.71 9.08 7.17 10.63 17.88 +78 2 12 13.04 5.96 13.62 5.96 5.29 1.46 9.42 4.38 6.83 7.00 2.62 11.17 +78 2 13 13.79 4.04 9.67 6.83 6.00 5.17 9.08 7.08 6.79 7.87 8.71 22.34 +78 2 14 6.75 5.25 9.17 2.58 3.79 0.50 5.75 3.25 2.79 3.33 3.29 10.37 +78 2 15 21.79 23.09 16.25 6.87 16.58 10.79 11.87 14.46 10.79 8.58 11.96 19.41 +78 2 16 19.55 23.29 15.46 5.54 12.29 9.42 14.46 15.50 11.63 9.25 14.37 20.58 +78 2 17 14.67 17.75 13.50 4.67 10.21 8.29 13.33 13.59 10.04 7.79 12.12 17.79 +78 2 18 27.96 25.46 26.46 14.37 23.83 18.05 23.42 23.21 17.92 15.59 16.83 29.46 +78 2 19 26.34 13.50 28.96 14.71 19.38 18.54 27.71 23.67 22.08 16.38 15.75 31.96 +78 2 20 12.67 5.91 19.67 9.92 9.17 10.54 16.75 13.42 14.17 11.96 9.13 26.75 +78 2 21 13.92 13.67 11.92 4.88 10.54 7.83 10.08 9.33 8.46 5.91 6.63 14.62 +78 2 22 21.17 16.58 19.25 12.67 15.00 12.62 15.37 13.17 14.04 12.29 8.92 21.37 +78 2 23 15.34 15.00 15.83 10.08 12.25 10.88 13.00 12.17 14.42 10.17 9.62 19.79 +78 2 24 18.71 17.08 16.71 12.17 13.88 12.71 14.92 15.50 13.92 13.42 19.04 20.41 +78 2 25 5.54 9.21 10.63 4.54 6.79 5.21 9.87 6.83 8.83 6.08 7.83 16.75 +78 2 26 2.67 6.29 3.50 1.04 3.17 0.42 3.54 2.79 1.17 0.75 2.92 6.83 +78 2 27 16.29 13.88 13.21 5.50 10.25 6.79 6.29 10.25 7.92 6.38 6.83 12.83 +78 2 28 10.00 8.79 13.42 5.04 7.67 8.33 10.54 10.96 10.25 10.21 8.79 17.71 +78 3 1 15.04 6.21 16.04 7.87 6.42 6.67 12.29 8.00 10.58 9.33 5.41 17.00 +78 3 2 5.66 6.96 10.92 4.04 3.88 3.13 6.38 4.79 6.58 4.92 4.17 13.70 +78 3 3 3.96 7.25 5.17 1.71 4.08 1.58 2.29 3.25 1.63 2.17 2.79 7.00 +78 3 4 5.00 5.75 8.33 1.87 1.58 0.29 4.67 2.08 2.88 2.21 2.75 9.71 +78 3 5 12.62 17.37 9.83 5.96 10.92 8.29 6.08 10.71 10.08 7.62 10.71 13.21 +78 3 6 15.00 16.21 13.04 9.71 13.29 10.67 8.58 12.83 12.79 10.34 18.00 21.87 +78 3 7 18.00 17.50 17.12 8.96 12.58 12.75 14.17 13.75 13.42 13.17 21.84 22.00 +78 3 8 8.87 7.29 9.42 5.13 7.79 6.29 10.67 7.71 8.75 8.17 6.50 14.46 +78 3 9 8.54 14.17 11.29 4.17 7.87 7.38 2.79 10.04 8.46 5.13 16.13 15.67 +78 3 10 9.21 14.00 11.75 6.71 9.59 8.83 4.63 9.67 8.42 5.66 12.17 11.38 +78 3 11 11.67 12.21 12.50 5.75 10.13 7.41 3.63 9.04 9.08 6.29 13.04 15.29 +78 3 12 16.08 12.87 13.04 7.33 12.25 10.00 13.13 11.54 11.63 10.17 11.96 16.29 +78 3 13 21.04 19.00 17.75 9.71 12.67 10.71 11.79 13.00 12.92 11.17 14.37 17.83 +78 3 14 23.63 24.30 18.54 15.79 23.71 18.50 21.87 21.34 19.79 16.13 21.29 15.83 +78 3 15 15.63 16.17 12.00 9.62 16.33 10.04 16.08 10.50 12.83 8.83 16.33 19.25 +78 3 16 13.13 14.29 8.08 5.09 8.92 6.29 9.13 8.04 7.29 7.33 11.79 18.96 +78 3 17 9.54 7.00 10.41 3.29 5.21 3.83 6.50 6.54 5.17 4.63 5.13 11.08 +78 3 18 8.04 9.29 10.46 4.54 6.71 6.63 7.83 8.25 8.12 6.00 11.75 15.34 +78 3 19 18.41 18.08 14.54 11.54 17.67 14.37 17.00 18.29 15.63 14.00 23.75 27.16 +78 3 20 19.25 17.41 13.29 11.04 18.54 11.29 13.13 13.59 12.38 7.83 18.21 19.04 +78 3 21 17.54 15.92 12.54 9.17 14.75 10.00 14.29 12.83 11.92 9.50 17.71 22.17 +78 3 22 20.67 20.46 17.92 11.54 20.30 11.71 18.00 12.87 14.42 12.21 16.46 19.29 +78 3 23 19.70 21.46 14.71 12.58 21.54 13.04 20.12 18.58 17.33 13.70 23.29 28.29 +78 3 24 16.88 14.83 11.75 8.42 16.46 9.92 15.46 13.62 14.46 12.21 15.63 21.25 +78 3 25 18.21 19.95 14.37 11.12 18.88 12.29 17.25 13.83 14.83 11.71 19.58 24.71 +78 3 26 15.54 17.62 14.46 8.50 14.21 10.41 15.92 14.29 13.59 10.83 17.37 22.92 +78 3 27 22.88 20.30 19.67 13.67 20.79 15.75 20.17 19.21 18.46 15.16 22.42 27.84 +78 3 28 25.54 22.75 21.00 14.96 19.17 15.29 18.08 17.67 17.83 17.83 19.83 24.83 +78 3 29 17.16 16.66 17.46 10.96 18.46 13.04 20.08 14.21 17.25 15.00 19.00 24.83 +78 3 30 14.75 13.75 12.96 8.08 14.83 9.75 11.46 11.34 11.58 9.00 12.17 16.46 +78 3 31 9.04 5.63 13.00 6.34 6.75 8.00 12.54 10.21 11.25 11.12 9.71 22.29 +78 4 1 3.42 7.58 2.71 1.38 3.46 2.08 2.67 4.75 4.83 1.67 7.33 13.67 +78 4 2 8.21 6.04 3.58 2.29 4.25 2.17 4.71 5.75 5.96 4.71 8.71 14.88 +78 4 3 5.41 2.58 15.25 2.96 5.33 7.54 6.71 8.04 9.59 5.17 9.38 15.87 +78 4 4 8.42 6.67 24.04 5.71 8.33 9.29 9.83 7.17 9.54 5.71 10.96 8.38 +78 4 5 10.21 6.25 26.54 5.96 8.79 8.12 9.50 6.83 9.33 5.37 8.58 10.13 +78 4 6 8.58 6.04 18.38 4.38 6.25 6.42 7.58 5.33 7.04 2.96 6.17 9.46 +78 4 7 6.04 5.46 13.88 3.67 5.46 4.29 6.50 4.21 4.42 2.33 6.42 5.58 +78 4 8 4.75 2.92 10.41 2.00 2.58 1.46 2.04 1.67 1.42 1.75 5.13 6.54 +78 4 9 11.54 11.04 7.79 6.21 9.62 6.08 8.33 8.25 9.33 9.17 15.71 20.91 +78 4 10 17.12 14.17 16.04 8.96 10.96 7.96 11.79 10.46 9.83 10.71 16.79 22.71 +78 4 11 14.21 13.04 10.46 7.04 11.46 7.79 9.50 8.58 9.38 7.00 14.33 14.25 +78 4 12 14.12 13.04 9.25 8.33 10.79 8.25 8.58 7.75 8.29 8.25 11.21 12.87 +78 4 13 23.13 17.75 17.00 13.29 16.88 12.54 14.25 15.46 13.21 12.92 17.25 24.58 +78 4 14 10.04 4.42 9.71 5.46 5.71 4.96 9.46 5.54 6.83 8.71 5.58 12.75 +78 4 15 6.54 10.21 5.46 3.29 6.96 3.71 4.08 3.13 2.83 1.63 9.46 4.96 +78 4 16 15.71 16.83 9.50 6.46 13.29 7.92 5.83 10.96 8.04 5.96 10.29 8.42 +78 4 17 20.88 15.46 18.91 11.92 17.92 16.29 15.16 14.58 16.92 11.96 17.29 15.92 +78 4 18 8.12 8.12 8.12 2.29 9.92 4.04 8.12 4.08 5.37 6.25 6.08 14.92 +78 4 19 15.75 18.88 12.00 7.41 14.29 10.67 11.12 11.87 12.62 11.29 14.17 17.79 +78 4 20 24.41 27.71 19.87 13.92 26.38 14.79 11.25 13.79 13.25 11.00 12.79 18.84 +78 4 21 13.79 13.04 9.87 7.71 15.00 7.75 7.38 5.63 7.17 5.83 8.21 4.33 +78 4 22 13.67 19.38 8.38 6.38 14.83 9.92 9.50 10.21 10.67 9.54 13.79 14.33 +78 4 23 17.33 20.12 10.08 7.38 14.42 8.75 8.42 11.54 11.08 10.08 15.21 14.42 +78 4 24 15.12 11.92 11.63 7.83 12.54 11.42 9.50 15.04 12.67 11.21 15.46 18.21 +78 4 25 13.25 11.04 14.83 4.58 10.46 9.21 13.00 11.96 11.25 9.00 18.05 17.67 +78 4 26 8.38 12.58 14.17 4.46 8.12 4.75 8.54 9.04 6.87 3.71 13.42 10.83 +78 4 27 5.66 4.63 6.34 3.00 4.50 2.92 6.50 4.00 4.79 4.79 7.58 16.42 +78 4 28 6.29 7.62 3.58 2.21 6.71 2.25 3.33 4.50 3.17 2.25 6.17 12.17 +78 4 29 9.96 9.38 16.17 3.67 8.29 3.88 7.25 6.25 6.71 5.25 9.62 15.83 +78 4 30 14.09 13.75 21.54 7.46 13.04 11.83 17.16 12.83 13.70 13.79 14.58 26.92 +78 5 1 10.54 12.21 9.08 5.29 11.00 10.08 11.17 13.75 11.87 11.79 12.87 27.16 +78 5 2 13.83 11.87 7.92 4.08 10.41 7.25 9.62 11.83 9.33 11.04 13.13 23.21 +78 5 3 10.37 9.46 9.08 4.04 9.46 6.04 3.96 6.04 7.50 5.75 10.08 13.96 +78 5 4 4.67 9.71 5.41 2.46 7.67 4.83 5.96 7.58 5.33 7.67 11.38 10.67 +78 5 5 14.67 10.00 9.96 7.17 9.42 5.37 8.79 7.17 8.17 8.87 10.63 10.41 +78 5 6 10.46 5.75 8.33 3.83 4.46 3.29 5.41 2.92 3.96 3.79 3.29 5.54 +78 5 7 7.33 8.54 5.58 3.42 6.50 4.21 3.67 5.13 4.96 4.63 6.58 14.92 +78 5 8 9.00 9.50 7.54 3.96 8.67 7.08 6.34 8.12 7.83 6.83 8.54 16.50 +78 5 9 4.96 3.29 13.62 3.29 5.63 4.21 4.79 4.38 6.25 4.42 5.17 5.58 +78 5 10 5.09 4.29 4.79 1.87 3.71 3.17 5.04 5.75 4.58 3.37 12.50 5.96 +78 5 11 11.50 7.33 8.67 6.67 10.88 6.92 10.88 9.54 9.87 9.17 14.46 15.12 +78 5 12 24.46 15.21 14.29 11.67 17.54 10.54 13.79 13.83 12.38 12.17 17.58 21.37 +78 5 13 16.21 11.38 9.96 8.25 13.13 9.17 10.08 10.08 9.38 11.08 12.87 15.04 +78 5 14 14.21 10.25 6.34 6.58 13.08 6.29 4.58 8.96 6.50 6.17 10.75 4.83 +78 5 15 6.34 4.63 4.83 1.04 4.96 1.17 2.37 2.92 2.42 2.08 7.58 3.88 +78 5 16 4.29 2.33 4.54 1.92 2.71 1.21 3.33 2.33 1.38 2.92 5.21 4.25 +78 5 17 4.75 4.12 6.79 2.29 6.08 2.58 3.88 5.71 4.75 5.54 5.75 7.33 +78 5 18 4.88 2.83 8.67 1.63 3.25 2.79 3.17 2.71 2.96 1.42 5.41 5.25 +78 5 19 4.25 1.63 5.88 1.75 3.58 2.50 3.04 5.25 5.54 4.21 5.91 6.21 +78 5 20 2.83 2.08 4.29 1.54 2.83 1.13 2.29 3.17 2.79 3.46 4.12 12.29 +78 5 21 2.42 3.54 7.46 1.46 2.75 0.54 3.04 1.67 3.42 4.50 4.33 11.58 +78 5 22 7.54 6.54 6.17 2.79 2.42 2.46 2.92 2.96 3.04 2.88 8.00 5.46 +78 5 23 11.87 15.50 7.92 5.17 8.96 4.58 8.50 7.00 7.67 8.04 14.62 14.67 +78 5 24 16.13 9.96 9.00 8.08 9.17 7.12 8.29 7.54 8.21 10.17 10.34 12.71 +78 5 25 3.92 3.37 5.04 1.08 5.88 3.04 3.92 6.71 3.46 4.46 11.83 11.50 +78 5 26 4.50 3.25 3.50 1.21 5.13 1.58 0.83 3.17 3.17 2.29 9.29 8.71 +78 5 27 3.46 2.37 4.04 1.46 1.75 0.04 1.67 1.29 1.00 0.96 6.29 5.63 +78 5 28 2.62 6.67 3.96 1.96 3.25 3.29 2.13 4.04 2.75 3.63 8.83 4.04 +78 5 29 3.25 7.33 3.50 3.08 5.04 3.17 4.88 4.46 4.96 6.08 11.87 6.42 +78 5 30 6.87 6.71 3.54 2.54 7.25 4.12 4.88 5.00 4.63 4.83 6.58 8.04 +78 5 31 9.17 12.38 4.25 4.38 9.62 8.17 4.83 9.04 7.96 9.50 11.38 15.21 +78 6 1 10.37 11.42 6.46 6.04 11.25 7.50 6.46 5.96 7.79 5.46 5.50 10.41 +78 6 2 7.75 10.83 7.33 4.12 10.34 6.08 2.79 4.88 6.50 4.96 9.17 6.42 +78 6 3 10.71 8.83 6.63 3.79 9.59 5.83 4.54 6.25 6.79 6.29 6.79 11.46 +78 6 4 16.83 13.54 9.96 7.62 12.96 10.00 5.63 9.54 9.79 10.00 9.71 16.33 +78 6 5 21.54 12.12 13.83 10.71 16.13 11.54 11.75 12.29 13.54 13.96 12.38 17.12 +78 6 6 10.04 9.92 9.21 5.17 13.25 9.96 9.29 9.75 10.58 8.58 14.25 16.08 +78 6 7 10.37 9.87 8.96 5.58 11.79 8.12 7.12 9.38 7.46 7.00 11.54 16.25 +78 6 8 7.50 7.83 5.75 4.00 7.04 4.46 6.34 6.13 6.04 8.54 11.21 19.46 +78 6 9 13.46 9.59 9.67 6.29 10.08 8.17 9.50 8.38 9.42 10.83 13.13 21.17 +78 6 10 12.54 9.17 10.04 6.17 9.96 8.46 8.71 7.41 9.67 10.13 10.29 17.54 +78 6 11 8.71 5.58 8.96 3.88 6.21 5.50 8.04 4.25 7.50 8.46 8.63 16.83 +78 6 12 7.00 6.63 13.54 6.00 7.41 7.25 6.58 7.67 7.79 8.12 10.58 15.25 +78 6 13 7.00 5.04 8.00 3.04 6.71 4.46 5.04 3.79 4.46 2.50 8.46 11.12 +78 6 14 5.17 8.21 7.21 4.42 9.04 6.96 4.75 6.92 7.75 5.33 12.21 14.79 +78 6 15 11.54 10.13 7.46 5.33 10.21 6.79 4.08 7.83 6.71 6.67 9.54 13.83 +78 6 16 15.16 15.41 25.70 11.25 11.04 10.75 16.50 11.79 11.63 11.29 16.00 19.17 +78 6 17 12.83 11.34 28.58 10.37 8.00 7.87 12.42 8.92 7.12 7.17 15.25 8.29 +78 6 18 7.17 4.63 8.46 4.79 7.54 4.21 1.71 5.33 3.92 2.50 7.75 8.25 +78 6 19 13.50 7.58 6.63 4.21 8.29 4.25 7.41 4.75 6.54 5.17 10.88 15.16 +78 6 20 9.96 7.96 7.75 3.46 7.50 5.09 4.54 8.46 5.88 5.88 13.00 15.75 +78 6 21 10.04 8.21 10.71 5.33 10.37 5.46 3.04 4.96 5.09 3.63 7.71 10.25 +78 6 22 8.46 9.25 6.92 2.37 6.96 2.96 6.21 5.00 5.50 3.54 9.79 11.92 +78 6 23 17.58 15.25 11.17 9.29 13.29 11.50 10.34 11.21 10.13 12.21 19.29 26.96 +78 6 24 17.58 12.38 10.13 10.41 16.33 11.00 12.67 11.83 12.25 10.83 17.00 18.71 +78 6 25 11.83 11.08 9.08 6.08 9.87 7.71 9.33 8.92 9.67 8.33 13.54 18.00 +78 6 26 13.92 8.17 11.21 7.38 11.83 8.46 9.42 7.00 9.04 8.63 10.67 14.54 +78 6 27 10.25 7.71 10.04 5.54 11.12 8.46 10.79 9.83 8.96 7.62 14.09 17.00 +78 6 28 9.08 8.50 9.54 6.54 12.50 9.08 14.00 7.79 11.34 7.33 10.79 15.92 +78 6 29 13.88 10.34 9.25 6.50 15.25 8.96 9.67 9.13 8.71 7.96 13.42 13.96 +78 6 30 9.83 7.71 9.42 5.91 10.00 7.87 9.17 8.71 9.04 7.58 12.46 14.42 +78 7 1 12.46 10.63 11.17 6.75 12.92 9.04 12.42 9.62 12.08 8.04 14.04 16.17 +78 7 2 16.04 14.42 12.75 10.46 15.79 11.17 11.92 10.34 10.79 5.33 10.41 15.00 +78 7 3 25.37 17.04 14.09 11.79 19.12 13.92 13.70 14.75 13.67 11.58 20.12 21.59 +78 7 4 25.84 17.41 17.71 14.83 16.25 14.83 13.70 15.50 14.71 17.58 19.62 28.25 +78 7 5 25.04 18.08 13.88 12.08 13.70 12.67 12.38 12.83 12.79 17.83 17.79 24.08 +78 7 6 18.21 10.71 13.08 9.83 10.54 10.17 11.79 11.25 11.54 13.92 12.54 19.00 +78 7 7 11.87 6.92 9.59 5.46 11.83 8.08 11.92 9.33 10.41 8.42 11.75 16.75 +78 7 8 11.50 10.71 9.29 6.63 13.50 9.38 11.67 8.58 9.71 6.92 11.38 11.42 +78 7 9 8.54 7.54 6.25 3.92 8.96 6.29 4.42 6.29 6.08 1.33 10.08 6.42 +78 7 10 4.12 4.29 4.58 1.96 3.88 3.29 3.88 2.83 3.17 2.79 4.71 5.83 +78 7 11 11.21 4.00 3.92 2.46 7.08 2.83 2.83 5.79 6.58 4.25 5.21 6.71 +78 7 12 6.67 2.17 3.63 0.75 3.58 1.13 1.63 1.33 1.50 1.50 4.17 2.13 +78 7 13 3.13 3.96 5.17 1.33 2.67 0.96 0.83 2.75 0.54 1.50 10.13 7.75 +78 7 14 6.25 2.62 8.00 3.13 4.96 3.46 3.17 4.58 4.12 4.17 11.63 9.75 +78 7 15 5.09 3.46 6.21 3.08 6.04 4.21 2.79 4.92 4.54 5.50 8.29 12.25 +78 7 16 4.71 2.21 6.00 3.04 4.12 2.54 2.33 2.58 3.33 2.79 6.25 8.63 +78 7 17 6.38 6.25 7.17 3.29 4.21 3.58 1.83 4.71 3.04 3.88 5.63 9.67 +78 7 18 15.00 8.00 7.62 5.29 11.38 6.34 7.17 8.00 8.83 8.33 11.21 12.21 +78 7 19 17.12 9.25 9.33 8.42 13.88 10.13 11.87 11.42 10.88 10.37 13.59 18.16 +78 7 20 13.83 6.63 6.83 7.71 10.13 7.75 7.58 5.66 7.54 7.04 8.58 13.08 +78 7 21 9.71 10.54 8.67 3.96 7.50 6.17 4.67 7.83 6.87 5.33 15.59 8.50 +78 7 22 19.58 17.88 17.08 10.29 15.37 13.88 13.83 17.12 14.09 14.04 24.17 21.96 +78 7 23 13.96 11.50 12.71 7.08 12.83 10.13 10.08 10.37 11.42 9.83 18.16 19.92 +78 7 24 12.67 10.08 10.54 5.71 12.92 9.08 9.33 8.58 10.41 8.12 15.46 19.29 +78 7 25 12.25 12.33 15.29 7.58 10.17 8.50 8.42 8.79 9.87 9.08 16.92 17.04 +78 7 26 13.13 13.70 12.21 5.46 9.46 7.79 7.04 9.33 8.42 5.46 14.29 9.96 +78 7 27 14.96 14.62 15.63 9.25 13.29 12.46 10.50 12.87 13.67 13.17 20.12 20.38 +78 7 28 10.83 13.59 9.79 6.54 11.08 9.92 9.92 11.96 10.67 9.67 19.55 17.08 +78 7 29 8.00 7.87 6.58 5.75 7.38 7.12 4.08 5.79 6.13 6.17 11.63 10.63 +78 7 30 13.37 10.79 7.62 6.13 5.13 6.08 2.92 6.50 5.96 5.37 8.38 7.71 +78 7 31 20.58 13.08 14.83 11.04 12.04 9.54 12.17 10.04 10.88 10.41 10.71 19.08 +78 8 1 19.33 15.09 20.17 8.83 12.62 10.41 9.33 12.33 9.50 9.92 15.75 18.00 +78 8 2 11.83 8.71 10.71 5.41 7.62 4.54 4.50 5.13 4.79 1.50 10.25 5.17 +78 8 3 10.46 5.58 6.34 4.75 8.87 6.29 9.62 6.17 7.54 5.58 8.38 10.67 +78 8 4 5.25 5.58 6.46 2.13 3.29 2.25 5.54 0.83 4.42 2.37 5.46 12.71 +78 8 5 10.50 9.92 7.50 1.87 7.92 2.79 1.38 1.29 2.71 0.79 5.66 3.92 +78 8 6 9.38 8.46 8.08 4.17 8.71 5.17 6.92 2.08 6.58 4.17 7.38 10.29 +78 8 7 13.04 9.87 8.29 4.46 7.17 5.54 5.96 5.41 6.71 5.54 9.83 14.54 +78 8 8 13.54 7.46 6.21 6.58 9.79 8.63 7.75 6.79 7.71 6.63 10.25 15.59 +78 8 9 7.38 3.79 5.58 3.37 4.50 4.50 3.17 1.87 5.17 3.42 5.46 7.12 +78 8 10 5.63 13.13 4.54 3.21 7.96 5.63 3.08 5.09 5.79 3.25 10.63 5.91 +78 8 11 13.50 13.96 11.00 8.12 11.63 9.21 6.42 8.63 12.75 10.29 14.17 15.79 +78 8 12 5.88 6.87 7.25 3.79 7.62 6.29 5.54 4.04 5.29 3.83 7.96 10.75 +78 8 13 11.83 12.12 10.58 4.00 8.04 7.12 6.25 9.92 9.21 6.67 16.54 13.79 +78 8 14 14.09 11.54 12.79 5.17 7.79 6.25 7.50 7.21 8.21 5.83 11.67 9.50 +78 8 15 14.37 12.08 11.96 5.83 11.54 8.79 8.54 6.63 9.29 5.91 9.29 10.17 +78 8 16 10.88 6.25 8.12 6.13 10.58 8.87 10.83 8.25 9.92 9.21 12.75 16.17 +78 8 17 8.00 12.92 7.71 3.79 9.17 6.96 4.79 7.58 8.46 5.46 17.58 13.46 +78 8 18 17.16 18.25 13.92 12.00 16.75 12.58 9.92 13.33 15.87 15.09 21.79 27.25 +78 8 19 5.41 6.04 10.41 3.00 5.04 5.29 3.88 5.58 7.50 6.71 14.96 9.25 +78 8 20 7.79 11.58 8.63 3.96 8.50 7.50 5.41 11.04 9.46 7.38 16.96 15.04 +78 8 21 14.92 14.42 15.00 7.96 13.00 10.79 12.38 11.42 13.46 9.96 9.29 7.41 +78 8 22 10.04 9.08 10.00 4.67 8.92 5.54 4.33 3.54 7.21 4.71 6.92 12.96 +78 8 23 3.04 2.13 6.42 1.42 2.58 1.21 1.25 1.38 5.00 3.50 6.67 11.42 +78 8 24 3.88 2.37 4.79 1.67 2.50 1.67 1.33 2.46 4.21 3.17 8.67 16.04 +78 8 25 3.04 2.96 5.71 1.71 2.42 2.67 1.46 3.58 5.25 4.00 8.58 9.75 +78 8 26 4.33 2.71 11.83 2.21 1.63 4.08 0.75 0.54 3.13 2.00 8.04 7.46 +78 8 27 4.21 1.75 6.21 2.21 1.42 2.58 1.54 1.58 2.88 3.79 8.75 9.59 +78 8 28 3.50 1.92 6.25 2.25 1.25 2.00 2.42 1.33 3.63 3.54 5.00 11.75 +78 8 29 12.00 6.17 9.59 4.25 5.25 5.50 6.92 3.17 7.75 5.54 9.29 14.62 +78 8 30 13.25 7.79 10.54 6.00 6.71 7.17 7.58 4.50 7.25 5.71 8.96 10.71 +78 8 31 11.54 5.54 7.41 4.67 7.62 6.17 8.87 5.25 7.83 6.17 11.58 16.88 +78 9 1 8.42 6.13 9.87 5.25 3.21 5.71 7.25 3.50 7.33 6.50 7.62 15.96 +78 9 2 4.75 1.63 6.83 1.87 1.96 4.58 6.13 1.83 5.21 2.13 8.83 15.21 +78 9 3 4.17 5.04 3.88 0.83 1.25 4.50 4.12 1.42 4.42 3.63 5.46 6.92 +78 9 4 7.50 11.67 3.42 2.54 6.79 6.67 5.09 3.92 6.54 3.88 9.13 10.88 +78 9 5 5.83 7.33 4.96 1.50 3.67 6.58 3.25 3.71 6.04 3.13 7.17 8.96 +78 9 6 10.08 11.96 10.37 4.63 9.67 9.25 7.38 8.08 8.87 7.38 10.25 15.09 +78 9 7 9.79 9.29 7.83 5.25 10.21 11.12 9.21 9.46 9.79 7.08 15.41 15.34 +78 9 8 15.54 14.62 12.75 5.79 12.08 11.08 8.21 11.21 11.34 9.50 21.84 19.92 +78 9 9 15.21 16.21 17.04 8.58 15.63 15.37 15.29 14.33 15.29 13.33 22.58 25.96 +78 9 10 16.46 18.12 21.50 11.63 17.00 16.42 15.67 15.50 16.25 13.62 15.54 21.12 +78 9 11 19.38 11.75 14.09 12.17 18.05 15.75 18.50 16.00 15.21 15.75 21.42 26.42 +78 9 12 8.67 10.13 11.00 4.71 7.71 10.08 9.08 10.92 9.04 7.41 16.17 17.58 +78 9 13 13.08 11.87 13.59 6.46 11.21 12.00 12.62 10.92 12.67 9.83 15.50 17.79 +78 9 14 11.38 11.54 10.83 7.00 16.38 12.04 13.67 13.79 12.87 11.75 20.25 26.67 +78 9 15 11.50 11.87 11.34 7.46 13.59 13.21 14.96 13.21 13.33 11.17 19.25 25.17 +78 9 16 15.21 13.92 14.04 7.71 12.79 13.17 14.04 16.92 13.37 13.25 25.33 30.54 +78 9 17 5.25 3.46 6.38 2.54 6.04 6.83 8.25 5.37 6.87 7.54 11.04 19.92 +78 9 18 4.58 1.96 5.54 1.96 4.00 5.71 5.71 3.63 4.96 5.29 11.04 17.96 +78 9 19 2.67 1.21 4.38 0.79 4.42 4.00 1.21 1.21 3.04 0.71 4.71 5.13 +78 9 20 0.79 6.79 5.88 0.75 1.79 0.96 3.04 0.83 4.46 1.58 6.21 10.88 +78 9 21 4.46 11.38 9.59 2.67 5.17 4.83 5.50 8.87 6.13 6.34 18.38 15.09 +78 9 22 6.75 13.67 13.54 3.42 4.54 5.41 9.75 11.71 9.46 9.87 18.75 20.00 +78 9 23 10.04 13.08 12.62 4.21 8.96 8.17 11.25 13.17 11.17 11.67 19.92 18.29 +78 9 24 11.63 10.13 13.59 4.08 10.50 7.12 12.87 7.83 8.87 8.58 15.12 19.92 +78 9 25 9.79 11.00 8.25 5.13 11.67 7.54 12.75 9.79 10.46 11.00 20.25 26.54 +78 9 26 13.70 14.83 10.41 7.71 14.29 9.62 16.58 12.29 12.29 11.42 18.79 22.88 +78 9 27 14.04 13.21 9.04 7.58 14.42 9.33 13.79 9.83 11.67 10.21 16.54 19.92 +78 9 28 17.04 19.21 16.66 10.83 21.25 12.54 19.41 14.75 14.67 12.71 22.17 20.30 +78 9 29 22.95 18.21 13.29 13.33 25.33 15.63 22.21 19.70 17.00 18.12 26.83 33.50 +78 9 30 26.75 15.63 16.54 13.37 17.58 13.13 16.92 13.79 13.46 13.79 18.91 31.88 +78 10 1 9.50 6.83 10.50 3.88 6.13 4.58 4.21 6.50 6.38 6.54 10.63 14.09 +78 10 2 9.96 8.29 8.50 3.08 7.54 5.25 6.83 5.46 6.87 6.75 10.25 14.04 +78 10 3 9.92 7.67 6.54 3.63 9.79 6.67 9.25 7.50 9.04 7.46 14.50 21.42 +78 10 4 8.21 7.67 8.75 3.13 9.25 7.04 11.29 8.00 9.75 8.12 16.25 21.29 +78 10 5 12.25 13.54 14.54 6.92 11.71 11.25 15.34 13.70 13.96 13.42 21.29 28.16 +78 10 6 12.96 17.83 12.79 7.96 13.37 9.46 8.58 10.34 12.58 10.83 20.21 19.50 +78 10 7 15.09 21.00 14.33 7.92 15.79 10.83 9.04 10.46 13.33 10.34 18.41 20.71 +78 10 8 21.67 17.12 16.25 13.08 14.67 11.67 7.62 12.50 14.21 14.21 14.58 19.21 +78 10 9 13.54 11.17 12.71 7.08 8.75 8.25 7.62 9.59 8.63 10.58 18.25 19.87 +78 10 10 12.58 9.75 11.29 3.63 10.29 7.62 6.34 10.46 9.46 8.50 18.75 16.21 +78 10 11 15.41 10.25 12.83 10.96 11.29 12.17 11.29 11.17 14.62 15.37 14.25 20.04 +78 10 12 6.00 1.50 8.04 0.79 2.83 3.04 2.13 1.38 3.42 3.54 5.09 10.67 +78 10 13 4.29 3.08 9.92 2.54 3.54 4.08 3.00 1.63 3.67 3.13 5.83 4.58 +78 10 14 4.63 0.21 3.54 0.42 2.67 2.46 1.25 3.71 3.04 1.92 11.29 11.08 +78 10 15 10.83 8.33 6.42 3.75 8.38 6.04 7.41 6.50 7.79 7.96 11.92 16.79 +78 10 16 15.34 14.42 10.04 8.58 15.37 9.75 15.83 12.62 12.29 12.50 19.55 28.21 +78 10 17 18.91 15.63 13.29 10.25 13.29 10.08 12.62 10.17 9.08 12.58 15.67 23.87 +78 10 18 7.83 5.88 5.17 3.83 6.21 4.46 4.58 4.75 5.21 5.17 7.87 14.75 +78 10 19 4.46 4.17 4.83 2.83 6.54 5.21 5.54 6.54 7.41 8.46 13.13 17.92 +78 10 20 8.25 4.33 6.75 5.63 8.96 7.38 9.21 7.12 7.25 4.67 9.62 8.58 +78 10 21 7.21 5.37 6.25 2.79 7.25 5.91 9.67 6.92 7.71 6.75 13.29 15.79 +78 10 22 6.63 4.92 7.17 3.29 6.25 5.25 8.29 3.88 5.41 6.21 9.83 15.96 +78 10 23 5.37 10.21 9.13 4.12 8.96 7.79 11.00 9.46 10.41 9.79 17.16 22.37 +78 10 24 11.54 13.46 12.21 5.46 13.96 10.54 17.67 11.87 14.42 11.87 17.29 19.33 +78 10 25 9.54 4.67 8.75 3.67 8.83 6.92 16.17 7.75 11.00 10.34 13.46 19.12 +78 10 26 7.04 1.21 5.66 1.63 4.08 1.92 8.58 2.33 4.08 4.88 7.54 14.09 +78 10 27 2.04 5.37 5.09 0.33 1.67 3.00 1.83 5.66 2.08 5.17 13.08 12.62 +78 10 28 7.33 8.87 5.00 2.13 6.50 5.13 2.42 4.17 3.58 5.83 14.50 13.67 +78 10 29 9.67 10.13 10.88 5.09 8.25 6.04 3.42 5.33 7.67 8.96 18.38 17.21 +78 10 30 10.25 11.63 10.21 3.67 8.08 7.50 8.92 8.96 9.21 10.96 16.50 19.83 +78 10 31 8.58 4.29 10.79 4.29 4.08 2.71 4.63 1.04 3.67 2.75 8.71 10.67 +78 11 1 13.59 16.75 11.25 7.08 11.04 8.33 8.17 11.29 10.75 11.25 23.13 25.00 +78 11 2 9.33 10.88 9.92 5.37 10.04 7.87 10.00 10.04 10.63 10.08 17.58 18.34 +78 11 3 15.46 14.75 13.08 6.79 10.92 9.08 13.21 13.59 12.12 13.00 20.41 18.29 +78 11 4 18.75 19.04 16.58 9.96 10.96 11.75 14.58 13.92 11.67 13.50 20.46 19.92 +78 11 5 15.46 16.92 13.13 9.62 14.12 10.96 8.92 8.63 13.25 11.42 22.37 19.00 +78 11 6 14.92 18.79 14.75 10.29 15.79 9.59 12.21 10.34 12.79 12.46 19.95 24.41 +78 11 7 25.41 22.58 20.88 17.21 20.30 16.29 19.29 15.12 18.46 16.25 18.91 27.96 +78 11 8 10.88 8.12 9.46 4.96 9.17 6.75 8.87 7.62 8.38 9.62 17.33 19.50 +78 11 9 12.79 13.67 7.29 3.17 10.83 8.42 6.21 13.50 9.21 13.37 24.17 24.33 +78 11 10 7.38 12.12 7.79 2.46 7.00 6.67 5.91 5.88 7.17 9.13 15.16 16.79 +78 11 11 12.21 12.50 9.71 5.29 8.63 7.67 4.12 7.92 7.92 9.21 17.00 15.63 +78 11 12 20.41 18.88 14.17 10.41 15.50 10.08 14.96 13.50 14.25 15.59 22.63 29.04 +78 11 13 18.79 17.96 14.62 7.21 12.29 10.29 16.50 12.50 13.42 14.54 23.79 24.33 +78 11 14 30.21 27.63 25.46 16.96 19.21 14.04 17.54 16.29 13.96 13.62 20.58 27.42 +78 11 15 23.67 23.45 20.08 15.96 20.83 16.00 20.12 18.12 18.29 18.08 21.09 25.37 +78 11 16 17.58 18.12 14.54 9.21 17.88 11.21 17.67 12.29 14.12 12.25 23.58 26.67 +78 11 17 23.21 21.37 19.04 11.21 13.21 13.88 17.58 14.00 14.96 14.54 21.25 24.92 +78 11 18 16.79 12.79 18.38 7.41 8.25 7.67 12.08 10.00 11.04 12.75 16.00 17.88 +78 11 19 13.88 11.67 8.79 4.96 7.87 5.37 11.08 7.21 7.29 6.92 16.21 20.75 +78 11 20 16.46 17.71 13.88 7.33 13.62 9.75 16.08 10.63 12.46 11.96 21.09 23.50 +78 11 21 17.75 16.83 16.71 7.29 13.92 9.25 14.67 11.08 13.29 12.21 20.46 22.13 +78 11 22 17.58 16.38 16.17 7.00 13.37 11.50 16.71 12.17 15.04 14.29 19.08 26.34 +78 11 23 23.16 13.96 18.25 9.83 8.87 7.33 12.25 5.21 9.29 5.58 7.54 13.13 +78 11 24 14.83 9.92 10.34 4.21 7.41 3.75 7.17 4.12 5.66 5.71 12.87 13.59 +78 11 25 16.17 14.67 11.54 7.04 8.96 6.96 14.62 6.71 10.79 9.29 16.83 26.67 +78 11 26 9.54 8.33 7.92 1.83 6.92 3.29 8.08 3.08 3.46 3.37 8.58 11.08 +78 11 27 9.08 6.50 8.21 1.67 6.71 1.00 2.33 2.04 1.29 3.29 7.04 13.42 +78 11 28 9.46 7.25 8.38 0.96 6.50 3.75 1.96 4.75 4.71 4.12 9.00 11.83 +78 11 29 14.46 10.00 10.17 3.33 9.59 8.83 4.38 5.75 10.41 9.13 13.13 22.95 +78 11 30 15.34 4.54 14.75 3.50 4.54 4.96 7.50 2.42 4.96 3.75 4.92 11.50 +78 12 1 21.29 16.29 24.04 12.79 18.21 19.29 21.54 17.21 16.71 17.83 17.75 25.70 +78 12 2 13.70 12.71 14.29 5.13 9.21 8.04 12.33 6.34 9.21 11.21 9.59 19.95 +78 12 3 21.21 21.34 17.75 11.58 16.75 14.46 17.46 15.29 15.79 17.50 21.42 25.75 +78 12 4 9.92 13.50 7.21 1.71 11.00 7.50 8.38 7.46 10.79 10.21 17.88 17.96 +78 12 5 22.75 20.17 18.58 8.50 15.96 14.29 13.92 12.92 12.96 12.29 17.08 19.83 +78 12 6 29.33 23.87 25.37 16.04 24.46 19.50 24.54 18.58 21.00 20.58 21.67 34.46 +78 12 7 26.63 24.79 24.79 18.16 23.13 19.58 19.92 19.04 19.75 21.50 23.04 34.59 +78 12 8 12.92 12.54 11.25 3.37 6.50 5.96 10.34 6.17 6.63 6.75 9.54 17.33 +78 12 9 18.71 16.92 15.50 6.04 10.37 9.59 10.75 9.13 9.75 11.08 14.33 15.34 +78 12 10 24.92 22.54 16.54 14.62 15.59 13.00 13.21 14.12 16.21 16.17 26.08 21.92 +78 12 11 20.25 19.17 17.83 11.63 17.79 13.37 14.83 13.88 15.54 16.29 18.34 22.83 +78 12 12 23.13 18.63 18.05 8.29 14.33 11.04 10.54 10.13 11.42 10.50 11.25 13.50 +78 12 13 18.84 24.04 14.37 8.33 18.12 12.17 13.00 13.75 14.17 15.09 21.50 21.37 +78 12 14 17.21 19.75 12.71 5.83 13.79 7.33 8.83 5.71 7.96 3.37 5.21 6.92 +78 12 15 13.13 8.92 16.54 6.92 6.00 4.00 12.67 5.88 7.67 6.08 5.50 17.16 +78 12 16 14.88 9.13 17.37 5.21 6.71 2.46 9.13 4.96 6.13 5.96 10.92 18.08 +78 12 17 9.87 3.21 8.04 2.21 3.04 0.54 2.46 1.46 1.29 2.67 5.00 9.08 +78 12 18 9.83 10.88 8.50 1.00 9.08 6.00 2.42 8.25 4.42 5.88 19.79 19.79 +78 12 19 13.88 11.42 10.13 2.33 8.12 6.75 4.75 5.88 6.21 8.17 8.33 18.25 +78 12 20 9.92 3.63 12.38 3.08 3.50 0.42 4.54 2.50 2.13 4.71 3.21 10.29 +78 12 21 12.96 3.83 13.79 4.79 7.12 6.54 11.67 9.25 8.67 9.00 11.25 20.30 +78 12 22 6.21 7.38 13.08 2.54 7.58 5.33 2.46 8.38 5.09 5.04 9.92 11.00 +78 12 23 16.62 13.29 22.21 9.50 14.29 13.08 16.50 17.16 12.71 12.00 18.50 21.50 +78 12 24 8.67 5.63 12.12 4.79 5.09 5.91 12.25 9.25 10.83 11.71 11.92 31.71 +78 12 25 7.21 6.58 7.83 2.67 4.79 4.58 8.71 0.75 5.21 5.25 1.21 13.96 +78 12 26 13.83 11.87 10.34 2.37 6.96 4.29 1.96 3.79 3.04 3.08 4.79 11.96 +78 12 27 17.58 16.96 17.62 8.08 13.21 11.67 14.46 15.59 14.04 14.00 17.21 40.08 +78 12 28 13.21 5.46 13.46 5.00 8.12 9.42 14.33 16.25 15.25 18.05 21.79 41.46 +78 12 29 14.00 10.29 14.42 8.71 9.71 10.54 19.17 12.46 14.50 16.42 18.88 29.58 +78 12 30 18.50 14.04 21.29 9.13 12.75 9.71 18.08 12.87 12.46 12.12 14.67 28.79 +78 12 31 20.33 17.41 27.29 9.59 12.08 10.13 19.25 11.63 11.58 11.38 12.08 22.08 diff --git a/梯度下降/最简单函数求极值.py b/梯度下降/最简单函数求极值.py index 46a6787..554cd6a 100644 --- a/梯度下降/最简单函数求极值.py +++ b/梯度下降/最简单函数求极值.py @@ -16,8 +16,8 @@ def plotf(loss): plt.show() def main(): - x = 15 - lr = 1.1 + x = 1000 + lr = 0.9 steps = 400 loss = [] for i in range(steps):