diff --git a/Dice_01.py b/Dice_01.py index 3ce2e58..26b2e9f 100644 --- a/Dice_01.py +++ b/Dice_01.py @@ -28,7 +28,7 @@ c = np.array([i]) x_next[i] = dice_hmm.predict(X, i) -print "state: ", Z -print "logprob: ", logprob -print "prob of x_next: ", x_next +print("state: ", Z) +print("logprob: ", logprob) +print("prob of x_next: ", x_next) diff --git a/Stock_03.py b/Stock_03.py index fd3b91e..2dc6aeb 100644 --- a/Stock_03.py +++ b/Stock_03.py @@ -5,9 +5,9 @@ import datetime import numpy as np +import pandas as pd from matplotlib import cm, pyplot as plt from matplotlib.dates import YearLocator, MonthLocator -from matplotlib.finance import quotes_historical_yahoo_ochl from hmm import GaussianHMM from sklearn.preprocessing import scale @@ -15,17 +15,16 @@ ############################################################################### # 导入Yahoo金融数据 -quotes = quotes_historical_yahoo_ochl( - "INTC", datetime.date(1995, 1, 1), datetime.date(2012, 1, 6)) - -dates = np.array([q[0] for q in quotes], dtype=int) # 日期列 -close_v = np.array([q[2] for q in quotes]) # 收盘价 -volume = np.array([q[5] for q in quotes])[1:] # 交易数 +quotes = pd.read_csv('data/yahoofinance-INTC-19950101-20040412.csv') +dates = quotes.index.values +close_v = quotes[["Close"]].values.flatten() +volume = quotes[["Volume"]].values.flatten() # diff:out[n] = a[n+1] - a[n] 得到价格变化 diff = np.diff(close_v) dates = dates[1:] close_v = close_v[1:] +volume = volume[1:] # scale归一化处理:均值为0和方差为1 # 将价格和交易数组成输入数据 @@ -39,7 +38,7 @@ hidden_states = model.decode(X) # 打印参数 -print "Transition matrix: ", model.transmat_prob +print("Transition matrix: ", model.transmat_prob) print("Means and vars of each hidden state") for i in range(model.n_state): print("{0}th hidden state".format(i)) diff --git a/Wordseg_02.py b/Wordseg_02.py index 7da3e30..842fe38 100644 --- a/Wordseg_02.py +++ b/Wordseg_02.py @@ -28,7 +28,7 @@ def getList(input_str): # 预处理词典:RenMinData.txt_utf8 def precess_data(): - ifp = file("RenMinData.txt_utf8") + ifp = open("RenMinData.txt_utf8") line_num = 0 word_dic = {} word_ind = 0 @@ -38,18 +38,18 @@ def precess_data(): for line in ifp: line_num += 1 if line_num % 10000 == 0: - print line_num + print(line_num) line = line.strip() if not line:continue - line = line.decode("utf-8","ignore") + # line = line.decode("utf-8","ignore") word_list = [] for i in range(len(line)): if line[i] == " ":continue word_list.append(line[i]) # 建立单词表 - if not word_dic.has_key(line[i]): + if not word_dic.__contains__(line[i]): word_dic[line[i]] = word_ind word_ind += 1 line_seq.append(word_list) @@ -71,7 +71,7 @@ def precess_data(): def word_trans(wordline, word_dic): word_inc = [] line = wordline.strip() - line = line.decode("utf-8", "ignore") + # line = line.decode("utf-8", "ignore") for n in range(len(line)): word_inc.append([word_dic[line[n]]]) @@ -81,8 +81,8 @@ def word_trans(wordline, word_dic): wordseg_hmm = hmm.DiscreteHMM(4,len(word_dic),5) wordseg_hmm.train_batch(X,Z) -print "startprob_prior: ", wordseg_hmm.start_prob -print "transmit: ", wordseg_hmm.transmat_prob +print("startprob_prior: ", wordseg_hmm.start_prob) +print("transmit: ", wordseg_hmm.transmat_prob) sentence_1 = "我要回家吃饭" sentence_2 = "中国人民从此站起来了" @@ -94,8 +94,8 @@ def word_trans(wordline, word_dic): Z_3 = wordseg_hmm.decode(word_trans(sentence_3,word_dic)) Z_4 = wordseg_hmm.decode(word_trans(sentence_4,word_dic)) -print u"我要回家吃饭: ", Z_1 -print u"中国人民从此站起来了: ", Z_2 -print u"经党中央研究决定: ", Z_3 -print u"江主席发表重要讲话: ", Z_4 +print(u"我要回家吃饭: ", Z_1) +print(u"中国人民从此站起来了: ", Z_2) +print(u"经党中央研究决定: ", Z_3) +print(u"江主席发表重要讲话: ", Z_4) diff --git a/data/yahoofinance-INTC-19950101-20040412.csv b/data/yahoofinance-INTC-19950101-20040412.csv new file mode 100644 index 0000000..ad18156 --- /dev/null +++ b/data/yahoofinance-INTC-19950101-20040412.csv @@ -0,0 +1,2336 @@ +Date,Open,High,Low,Close,Adj Close,Volume +1995-01-03,3.976563,4.000975,3.937500,3.984375,2.669861,41721600 +1995-01-04,4.000000,4.023438,3.953125,3.976563,2.664625,41865600 +1995-01-05,3.984375,4.062500,3.976563,4.007813,2.685566,60480000 +1995-01-06,4.007813,4.070313,4.000000,4.062500,2.722212,56316800 +1995-01-09,4.054688,4.125000,4.054688,4.125000,2.764089,75056000 +1995-01-10,4.148438,4.210938,4.125000,4.164063,2.790266,109320000 +1995-01-11,4.179688,4.210938,4.125000,4.140625,2.774560,58468800 +1995-01-12,4.132813,4.226563,4.097656,4.195313,2.811206,85384000 +1995-01-13,4.226563,4.281250,4.218750,4.257813,2.853087,126689600 +1995-01-16,4.281250,4.281250,4.234375,4.257813,2.853087,59564800 +1995-01-17,4.257813,4.335938,4.179688,4.187500,2.805971,118696000 +1995-01-18,4.265625,4.351563,4.265625,4.335938,2.905436,189520000 +1995-01-19,4.328125,4.421875,4.312500,4.417969,2.960403,146992000 +1995-01-20,4.398438,4.414063,4.290038,4.300781,2.881879,146233600 +1995-01-23,4.273438,4.414063,4.250000,4.398438,2.947317,105260800 +1995-01-24,4.414063,4.480469,4.367188,4.468750,2.994432,110656000 +1995-01-25,4.375000,4.484375,4.343750,4.429688,2.968256,152656000 +1995-01-26,4.414063,4.453125,4.375000,4.402344,2.952435,78633600 +1995-01-27,4.406250,4.468750,4.390625,4.437500,2.976012,80027200 +1995-01-30,4.445313,4.445313,4.367188,4.375000,2.934097,65137600 +1995-01-31,4.367188,4.375000,4.311519,4.335938,2.907897,84265600 +1995-02-01,4.335938,4.437500,4.320313,4.414063,2.960292,75233600 +1995-02-02,4.406250,4.516600,4.406250,4.511719,3.025785,88065600 +1995-02-03,4.546875,4.632813,4.500000,4.593750,3.080801,142459200 +1995-02-06,4.585938,4.648438,4.585938,4.601563,3.086039,56099200 +1995-02-07,4.601563,4.609375,4.539063,4.562500,3.059841,44675200 +1995-02-08,4.632813,4.804688,4.625000,4.789063,3.211785,135900800 +1995-02-09,4.789063,4.921875,4.789063,4.843750,3.248463,126497600 +1995-02-10,4.835938,4.906250,4.820313,4.835938,3.243224,88566400 +1995-02-13,4.835938,4.875000,4.796875,4.820313,3.232744,53864000 +1995-02-14,4.820313,4.906250,4.820313,4.906250,3.290379,68824000 +1995-02-15,4.906250,5.000000,4.906250,4.984375,3.342772,113956800 +1995-02-16,4.992188,5.046875,4.968750,4.992188,3.348012,94993600 +1995-02-17,4.968750,4.968750,4.921875,4.925781,3.303476,80916800 +1995-02-21,4.929688,4.960938,4.890625,4.937500,3.311336,67569600 +1995-02-22,4.929688,5.000000,4.929688,4.976563,3.337534,44088000 +1995-02-23,5.000000,5.039063,4.875000,4.878906,3.272040,87577600 +1995-02-24,4.875000,4.921875,4.824219,4.906250,3.290379,78345600 +1995-02-27,4.890625,4.937500,4.867188,4.894531,3.282520,51545600 +1995-02-28,4.890625,4.984375,4.851563,4.984375,3.342772,54179200 +1995-03-01,4.984375,5.032225,4.921875,4.921875,3.300857,65336000 +1995-03-02,4.921875,4.976563,4.898438,4.936519,3.310678,39121600 +1995-03-03,4.929688,5.132813,4.921875,5.117188,3.431845,140860800 +1995-03-06,5.093750,5.171875,5.062500,5.140625,3.447561,80664000 +1995-03-07,5.125000,5.132813,5.007813,5.023438,3.368970,85563200 +1995-03-08,5.015625,5.054688,4.953125,4.984375,3.342772,85804800 +1995-03-09,5.000000,5.054688,4.945313,5.011719,3.361112,84761600 +1995-03-10,5.000000,5.039063,5.000000,5.031250,3.374209,57476800 +1995-03-13,5.031250,5.125000,5.023438,5.085938,3.410887,73267200 +1995-03-14,5.101563,5.179688,5.101563,5.148438,3.452801,66921600 +1995-03-15,5.148438,5.171875,5.093750,5.117188,3.431845,34435200 +1995-03-16,5.109375,5.148438,5.078125,5.089844,3.413507,34500800 +1995-03-17,5.109375,5.109375,5.054688,5.055663,3.390582,38120000 +1995-03-20,5.054688,5.210938,5.015625,5.210938,3.494717,66764800 +1995-03-21,5.210938,5.265625,5.191406,5.203125,3.489477,83536000 +1995-03-22,5.195313,5.273438,5.171875,5.273438,3.536633,69624000 +1995-03-23,5.273438,5.359375,5.264644,5.335938,3.578549,110006400 +1995-03-24,5.359375,5.445313,5.351563,5.382813,3.609986,98563200 +1995-03-27,5.382813,5.484375,5.375000,5.468750,3.667621,67161600 +1995-03-28,5.515625,5.593750,5.507813,5.531250,3.709535,94750400 +1995-03-29,5.531250,5.625000,5.343750,5.441406,3.649282,160102400 +1995-03-30,5.445313,5.453125,5.234375,5.335938,3.578549,164172800 +1995-03-31,5.218750,5.398438,5.187500,5.304688,3.557590,150662400 +1995-04-03,5.296875,5.531250,5.281250,5.531250,3.709535,94400000 +1995-04-04,5.554688,5.632813,5.390625,5.410156,3.628323,100321600 +1995-04-05,5.375000,5.429688,5.296875,5.414063,3.630942,119211200 +1995-04-06,5.437500,5.477538,5.320313,5.343750,3.583787,79091200 +1995-04-07,5.343750,5.480469,5.312500,5.445313,3.651901,85091200 +1995-04-10,5.437500,5.531250,5.406250,5.531250,3.709535,79411200 +1995-04-11,5.671875,5.750000,5.664063,5.703125,3.824804,173561600 +1995-04-12,5.710938,5.742188,5.640625,5.734375,3.845759,83680000 +1995-04-13,5.757813,5.945313,5.757813,5.937500,3.981985,115472000 +1995-04-17,5.945313,6.093750,5.843750,5.875000,3.940071,156675200 +1995-04-18,6.023438,6.031250,5.828125,5.894531,3.953169,168217600 +1995-04-19,5.875000,5.906250,5.742188,5.832031,3.911254,95795200 +1995-04-20,5.867188,5.882813,5.773438,5.812500,3.898154,79468800 +1995-04-21,5.820313,5.890625,5.773438,5.804688,3.892916,87787200 +1995-04-24,5.796875,6.046875,5.773438,6.031250,4.044861,96052800 +1995-04-25,6.031250,6.171875,6.031250,6.140625,4.120776,128708800 +1995-04-26,6.101563,6.289063,6.085938,6.226563,4.178443,96080000 +1995-04-27,6.218750,6.375000,6.217769,6.289063,4.220387,91153600 +1995-04-28,6.390625,6.507813,6.335938,6.398438,4.293782,132334400 +1995-05-01,6.468750,6.570313,6.429688,6.507813,4.367182,115844800 +1995-05-02,6.484375,6.531250,6.437500,6.500000,4.361940,115572800 +1995-05-03,6.500000,6.726563,6.500000,6.710938,4.503494,89808000 +1995-05-04,6.765625,6.968750,6.734375,6.867188,4.608347,176945600 +1995-05-05,6.929688,6.984375,6.765625,6.789063,4.555919,143638400 +1995-05-08,6.765625,7.031250,6.750000,6.976563,4.681746,117291200 +1995-05-09,7.039063,7.054688,6.835938,6.953125,4.666017,138131200 +1995-05-10,7.023438,7.031250,6.785156,6.796875,4.561162,141251200 +1995-05-11,6.757813,6.867188,6.695313,6.828125,4.582133,115512000 +1995-05-12,6.828125,6.937500,6.757813,6.792969,4.558542,78270400 +1995-05-15,6.804688,6.828125,6.703125,6.773438,4.545434,72540800 +1995-05-16,6.765625,6.882813,6.734375,6.804688,4.566405,83606400 +1995-05-17,6.859375,6.960938,6.851563,6.921875,4.645046,103816000 +1995-05-18,6.968750,7.203125,6.914063,6.921875,4.645046,170598400 +1995-05-19,6.906250,7.070313,6.890625,6.960938,4.671259,146268800 +1995-05-22,6.976563,7.164063,6.976563,7.125000,4.781358,103174400 +1995-05-23,7.156250,7.312500,7.148438,7.281250,4.886213,122224000 +1995-05-24,7.390625,7.437500,7.234375,7.265625,4.875727,139008000 +1995-05-25,7.265625,7.382813,7.203125,7.343750,4.928154,85121600 +1995-05-26,7.312500,7.343750,7.203125,7.242188,4.859999,57699200 +1995-05-30,7.257813,7.296875,6.812500,6.906250,4.634561,242369600 +1995-05-31,6.953125,7.031250,6.750000,7.015625,4.707959,163680000 +1995-06-01,7.031250,7.234375,7.023438,7.171875,4.812813,117364800 +1995-06-02,7.085938,7.351563,7.046875,7.281250,4.886213,120323200 +1995-06-05,7.328125,7.328125,7.210938,7.234375,4.854754,77616000 +1995-06-06,7.218750,7.234375,7.023438,7.023438,4.713204,96516800 +1995-06-07,7.031250,7.108394,6.953125,7.070313,4.744657,117452800 +1995-06-08,7.078125,7.148438,7.070313,7.113281,4.773493,44441600 +1995-06-09,7.109375,7.171875,7.039063,7.046875,4.728927,54803200 +1995-06-12,7.070313,7.109375,6.960938,6.972656,4.679124,64686400 +1995-06-13,7.085938,7.093750,6.921875,6.937500,4.655532,107860800 +1995-06-14,6.898438,7.062500,6.843750,7.031250,4.718445,97881600 +1995-06-15,7.039063,7.226563,7.039063,7.195313,4.828542,91027200 +1995-06-16,7.218750,7.335938,7.156250,7.257813,4.870484,122411200 +1995-06-19,7.312500,7.765625,7.296875,7.718750,5.179803,127876000 +1995-06-20,7.921875,8.140625,7.828125,8.125000,5.452423,141030400 +1995-06-21,8.265625,8.273438,7.921875,7.957025,5.339701,119708800 +1995-06-22,7.984375,8.226563,7.943350,8.171875,5.483882,70946400 +1995-06-23,8.171875,8.296875,8.109375,8.203125,5.504852,52727200 +1995-06-26,8.218750,8.296875,8.046875,8.125000,5.452423,57357600 +1995-06-27,8.078125,8.078125,7.796875,7.828125,5.253201,92004800 +1995-06-28,7.781250,7.968750,7.625000,7.890625,5.295142,112888000 +1995-06-29,7.968750,8.078125,7.875000,7.976563,5.352813,60702400 +1995-06-30,8.000000,8.093750,7.875000,7.914063,5.310869,41468800 +1995-07-03,7.921875,7.968750,7.875000,7.914063,5.310869,13020800 +1995-07-05,7.937500,8.062500,7.921875,7.968750,5.347568,46887200 +1995-07-06,7.968750,8.187500,7.875000,8.179688,5.489122,52177600 +1995-07-07,8.203125,8.531250,8.125000,8.531250,5.725047,78961600 +1995-07-10,8.578125,8.812500,8.531250,8.783200,5.894121,83404000 +1995-07-11,8.734375,8.742188,8.607412,8.609375,5.777472,51932800 +1995-07-12,8.859375,9.062500,8.718750,9.031250,6.060575,84791200 +1995-07-13,9.000000,9.498037,8.906250,9.203125,6.175918,117482400 +1995-07-14,8.968750,9.476563,8.906250,9.437500,6.333201,87835200 +1995-07-17,9.562500,9.796875,9.437500,9.554688,6.411840,139681600 +1995-07-18,9.640625,9.671875,9.125000,9.156250,6.144461,137435200 +1995-07-19,8.125000,8.593750,7.812500,8.156250,5.473395,447652000 +1995-07-20,8.187500,8.375000,8.046875,8.062500,5.410482,199928000 +1995-07-21,8.093750,8.203125,7.859375,7.867188,5.279414,152450400 +1995-07-24,7.921875,8.437500,7.888662,8.406250,5.641160,122608000 +1995-07-25,8.750000,8.765625,8.500000,8.625000,5.787959,140957600 +1995-07-26,8.703125,8.734375,8.437500,8.515625,5.714561,89991200 +1995-07-27,8.531250,8.716787,8.484375,8.593750,5.766988,52663200 +1995-07-28,8.578125,8.640625,8.343750,8.390625,5.633956,68643200 +1995-07-31,8.406250,8.453125,8.093750,8.125000,5.455599,64880800 +1995-08-01,8.125000,8.125000,7.812500,7.906250,5.308716,94556800 +1995-08-02,8.046875,8.125000,7.625000,7.687500,5.161834,135620800 +1995-08-03,7.468750,7.843750,7.390625,7.765625,5.214292,117961600 +1995-08-04,7.781250,7.875000,7.718750,7.750000,5.203802,68723200 +1995-08-07,7.812500,7.984375,7.781250,7.937500,5.329700,51580000 +1995-08-08,8.031250,8.156250,7.984375,8.093750,5.434614,58122400 +1995-08-09,8.328125,8.343750,8.187500,8.265625,5.550022,70807200 +1995-08-10,8.265625,8.281250,7.984375,8.031250,5.392649,60408000 +1995-08-11,8.218750,8.312500,8.140625,8.265625,5.550022,68375200 +1995-08-14,8.250000,8.375000,8.171875,8.296875,5.571004,50202400 +1995-08-15,8.375000,8.406250,8.078125,8.187500,5.497565,67754400 +1995-08-16,8.281250,8.390625,8.125000,8.343750,5.602481,67332800 +1995-08-17,8.375000,8.390625,8.179688,8.203125,5.508060,66123200 +1995-08-18,8.281250,8.281250,8.062500,8.109375,5.445106,73496800 +1995-08-21,8.109375,8.125000,7.484375,7.531250,5.056921,175418400 +1995-08-22,7.640625,7.796875,7.531250,7.781250,5.224783,129546400 +1995-08-23,7.843750,7.906250,7.748037,7.796875,5.235275,65648000 +1995-08-24,7.796875,7.812500,7.562500,7.628900,5.122488,100023200 +1995-08-25,7.640625,7.640625,7.468750,7.546875,5.067412,91089600 +1995-08-28,7.554688,7.609375,7.312500,7.328125,4.920529,77804000 +1995-08-29,7.343750,7.468750,7.140625,7.359375,4.941512,142798400 +1995-08-30,7.500000,7.609375,7.390625,7.546875,5.067412,88683200 +1995-08-31,7.625000,7.750000,7.578125,7.671875,5.151345,50941600 +1995-09-01,7.656250,7.718750,7.578125,7.609375,5.109377,34721600 +1995-09-05,7.671875,7.968750,7.609375,7.960938,5.345438,59574400 +1995-09-06,8.031250,8.093750,7.796875,7.812500,5.245768,72960000 +1995-09-07,8.123037,8.250000,8.031250,8.125000,5.455599,125828000 +1995-09-08,8.187500,8.218750,8.046875,8.203125,5.508060,63664000 +1995-09-11,8.187500,8.328125,8.187500,8.203125,5.508060,53804800 +1995-09-12,8.281250,8.296875,8.093750,8.109375,5.445106,52924000 +1995-09-13,8.109375,8.203125,8.039063,8.109375,5.445106,52886400 +1995-09-14,8.156250,8.156250,7.937500,7.960938,5.345438,53280800 +1995-09-15,7.968750,8.062500,7.656250,7.765625,5.214292,99998400 +1995-09-18,7.781250,7.875000,7.625000,7.859375,5.277241,63196800 +1995-09-19,7.718750,7.968750,7.703125,7.835938,5.261505,69693600 +1995-09-20,7.929688,7.968750,7.796875,7.835938,5.261505,63268000 +1995-09-21,7.750000,7.843750,7.625000,7.642575,5.131671,71136800 +1995-09-22,7.593750,7.648438,7.531250,7.562500,5.077902,68509600 +1995-09-25,7.562500,7.562500,7.359375,7.500000,5.035937,75903200 +1995-09-26,7.546875,7.697262,7.421875,7.468750,5.014955,70076000 +1995-09-27,7.390625,7.429688,7.156250,7.414063,4.978234,133321600 +1995-09-28,7.453125,7.734375,7.437500,7.734375,5.193310,83437600 +1995-09-29,7.781250,7.843750,7.500000,7.515625,5.046428,76591200 +1995-10-02,7.576162,7.658200,7.375000,7.390625,4.962495,59953600 +1995-10-03,7.419912,7.515625,7.359375,7.476563,5.020200,80306400 +1995-10-04,7.343750,7.484375,7.281250,7.335938,4.925777,71613600 +1995-10-05,7.328125,7.609375,7.296875,7.609375,5.109377,79205600 +1995-10-06,7.890625,7.921875,7.734375,7.750000,5.203802,116396800 +1995-10-09,7.703125,7.703125,7.421875,7.515625,5.046428,79104000 +1995-10-10,7.281250,7.703125,7.218750,7.703125,5.172327,118409600 +1995-10-11,7.906250,7.937500,7.750000,7.859375,5.277241,78585600 +1995-10-12,7.843750,8.031250,7.812500,7.968750,5.350683,90520000 +1995-10-13,8.062500,8.078125,7.812500,7.843750,5.266749,79935200 +1995-10-16,7.828125,8.000000,7.781250,7.890625,5.298225,55199200 +1995-10-17,8.015625,8.203125,7.890625,8.187500,5.497565,133656800 +1995-10-18,8.375000,8.531250,8.296875,8.468750,5.686411,142411200 +1995-10-19,8.421875,8.531250,8.312500,8.500000,5.707394,66150400 +1995-10-20,8.453125,8.515625,8.328125,8.390625,5.633956,52790400 +1995-10-23,8.281250,8.453125,8.248037,8.437500,5.665430,54128800 +1995-10-24,8.500000,8.546875,8.437500,8.484375,5.696905,56356800 +1995-10-25,8.484375,8.484375,8.296875,8.312500,5.581497,47943200 +1995-10-26,8.328125,8.390625,8.109375,8.304688,5.576252,47912800 +1995-10-27,8.265625,8.515625,8.265625,8.484375,5.696905,61734400 +1995-10-30,8.562500,8.812500,8.562500,8.718750,5.857731,98684000 +1995-10-31,8.843750,8.921875,8.734375,8.734375,5.868224,74370400 +1995-11-01,8.843750,8.859375,8.625000,8.851563,5.946959,76340800 +1995-11-02,8.890625,9.125000,8.859375,9.109375,6.120172,80272000 +1995-11-03,9.140625,9.142575,8.968750,9.062500,6.088677,47605600 +1995-11-06,9.031250,9.062500,8.830075,8.851563,5.946959,37800000 +1995-11-07,8.609375,8.687500,8.093750,8.296875,5.574289,225472000 +1995-11-08,8.406250,8.500000,8.132813,8.242188,5.537546,101253600 +1995-11-09,8.625000,8.656250,8.500000,8.625000,5.794740,77737600 +1995-11-10,8.562500,8.656250,8.468750,8.531250,5.731755,50086400 +1995-11-13,8.515625,8.609375,8.359375,8.390625,5.637274,36456000 +1995-11-14,8.250000,8.328125,8.132813,8.140625,5.469314,53100800 +1995-11-15,8.218750,8.234375,7.812500,8.093750,5.437819,103201600 +1995-11-16,7.984375,8.125000,7.859375,7.859375,5.280354,82568800 +1995-11-17,7.859375,7.906250,7.835938,7.843750,5.269855,93374400 +1995-11-20,7.968750,8.015625,7.742188,7.765625,5.217368,71694400 +1995-11-21,7.796875,7.937500,7.750000,7.875000,5.290852,70495200 +1995-11-22,7.921875,7.968750,7.718750,7.734375,5.196373,48664800 +1995-11-24,7.781250,7.875000,7.781250,7.875000,5.290852,18368000 +1995-11-27,7.937500,7.960938,7.486325,7.500000,5.038906,121008000 +1995-11-28,7.515625,7.968750,7.484375,7.968750,5.353836,99812000 +1995-11-29,8.000000,8.062500,7.781250,7.875000,5.290852,72459200 +1995-11-30,7.781250,7.945313,7.531250,7.609375,5.112391,68048000 +1995-12-01,7.671875,7.718750,7.578125,7.625000,5.122889,58219200 +1995-12-04,7.750000,7.937500,7.554688,7.718750,5.185873,56004000 +1995-12-05,7.750000,7.750000,7.609375,7.671875,5.154380,52358400 +1995-12-06,7.718750,7.765625,7.546875,7.632813,5.128137,66432000 +1995-12-07,7.625000,7.703125,7.546875,7.687500,5.164878,45921600 +1995-12-08,7.796875,7.906250,7.671875,7.906250,5.311846,61020000 +1995-12-11,7.968750,8.000000,7.921875,7.937500,5.332843,38281600 +1995-12-12,7.937500,7.955075,7.734375,7.781250,5.227865,38964000 +1995-12-13,7.812500,7.906250,7.750000,7.828125,5.259358,50386400 +1995-12-14,7.828125,7.875000,7.500000,7.500000,5.038906,76008800 +1995-12-15,7.531250,7.609375,7.265625,7.281250,4.891940,131205600 +1995-12-18,7.281250,7.312500,6.898438,7.156250,4.807956,126525600 +1995-12-19,7.218750,7.617188,7.187500,7.546875,5.070400,93095200 +1995-12-20,7.593750,7.640625,7.390625,7.453125,5.007414,71931200 +1995-12-21,7.500000,7.546875,7.406250,7.437500,4.996916,59761600 +1995-12-22,7.421875,7.470700,7.328125,7.375000,4.954925,41667200 +1995-12-26,7.375000,7.484375,7.359375,7.421875,4.986417,22500000 +1995-12-27,7.437500,7.515625,7.343750,7.359375,4.944427,32307200 +1995-12-28,7.250000,7.265625,7.125000,7.140625,4.797459,63944800 +1995-12-29,7.140625,7.250000,7.093750,7.093750,4.765965,55903200 +1996-01-02,7.171875,7.343750,7.109375,7.328125,4.923429,62854400 +1996-01-03,7.328125,7.421875,7.199213,7.218750,4.849948,72678400 +1996-01-04,7.343750,7.359375,7.000000,7.187500,4.828953,100259200 +1996-01-05,7.140625,7.343750,7.093750,7.187500,4.828953,65434400 +1996-01-08,7.265625,7.296875,7.171875,7.203125,4.839450,17544000 +1996-01-09,7.203125,7.218750,6.843750,6.875000,4.618997,110116800 +1996-01-10,6.781250,6.875000,6.656250,6.765625,4.545511,137448000 +1996-01-11,6.976563,7.140625,6.796875,7.109375,4.776464,83769600 +1996-01-12,7.140625,7.187500,6.906250,7.078125,4.755467,70219200 +1996-01-15,7.078125,7.093750,6.669912,6.671875,4.482527,106633600 +1996-01-16,6.734375,6.984375,6.500000,6.968750,4.681983,150692800 +1996-01-17,6.367188,6.578125,6.226563,6.250000,4.199088,546630400 +1996-01-18,6.343750,6.453125,6.281250,6.375000,4.283069,132712000 +1996-01-19,6.421875,6.453125,6.328125,6.421875,4.314563,128462400 +1996-01-22,6.421875,6.564450,6.375000,6.500000,4.367054,106812800 +1996-01-23,6.531250,6.609375,6.531250,6.585938,4.424790,69244800 +1996-01-24,6.671875,6.875000,6.625000,6.843750,4.598002,94037600 +1996-01-25,6.937500,7.109375,6.796875,6.828125,4.587505,115267200 +1996-01-26,6.765625,6.875000,6.703125,6.875000,4.618997,66812800 +1996-01-29,6.937500,6.937500,6.781250,6.804688,4.571758,39158400 +1996-01-30,6.812500,6.843750,6.718750,6.765625,4.548854,43040000 +1996-01-31,6.796875,6.929688,6.718750,6.904287,4.642087,72689600 +1996-02-01,6.875000,7.062500,6.857412,7.031250,4.727449,66874400 +1996-02-02,7.046875,7.140625,7.000000,7.093750,4.769469,51456000 +1996-02-05,7.140625,7.312500,7.109375,7.312500,4.916546,67600800 +1996-02-06,7.359375,7.500000,7.296875,7.437500,5.000590,85640000 +1996-02-07,7.390625,7.445313,7.187500,7.281250,4.895535,70611200 +1996-02-08,7.265625,7.283200,7.125000,7.234375,4.864018,48796800 +1996-02-09,7.234375,7.328125,7.171875,7.250000,4.874527,50028800 +1996-02-12,7.250000,7.375000,7.250000,7.279287,4.894215,46727200 +1996-02-13,7.062500,7.234375,7.000000,7.140625,4.800986,77997600 +1996-02-14,7.140625,7.250000,7.109375,7.250000,4.874527,49426400 +1996-02-15,7.218750,7.281250,7.171875,7.187500,4.832501,48066400 +1996-02-16,7.218750,7.343750,7.156250,7.195313,4.837754,48668000 +1996-02-20,7.156250,7.312500,7.140625,7.234375,4.864018,41164800 +1996-02-21,7.281250,7.406250,7.218750,7.406250,4.979579,48394400 +1996-02-22,7.437500,7.656250,7.390625,7.625000,5.126655,89480800 +1996-02-23,7.640625,7.703125,7.529287,7.601563,5.110897,57186400 +1996-02-26,7.593750,7.640625,7.500000,7.546875,5.074127,35695200 +1996-02-27,7.546875,7.593750,7.500000,7.531250,5.063623,36168000 +1996-02-28,7.562500,7.687500,7.562500,7.593750,5.105642,42570400 +1996-02-29,7.500000,7.515625,7.343750,7.351563,4.942810,73402400 +1996-03-01,7.203125,7.218750,6.875000,7.007813,4.711690,145034400 +1996-03-04,7.015625,7.031250,6.843750,6.859375,4.611887,70285600 +1996-03-05,6.875000,6.984375,6.843750,6.921875,4.653910,59856800 +1996-03-06,6.890625,6.953125,6.648438,6.656250,4.475318,67897600 +1996-03-07,6.671875,6.718750,6.593750,6.640625,4.464812,74715200 +1996-03-08,6.453125,6.765625,6.437500,6.687500,4.496328,111921600 +1996-03-11,6.750000,6.921875,6.732412,6.906250,4.643404,75256000 +1996-03-12,6.890625,6.906250,6.757813,6.859375,4.611887,48633600 +1996-03-13,6.953125,7.109375,6.859375,7.015625,4.716942,69127200 +1996-03-14,7.062500,7.171875,7.015625,7.015625,4.716942,57525600 +1996-03-15,7.062500,7.390625,7.031250,7.359375,4.948061,87536800 +1996-03-18,7.468750,7.531250,7.416012,7.437500,5.000590,62223200 +1996-03-19,7.476563,7.484375,7.296875,7.343750,4.937558,44320000 +1996-03-20,7.234375,7.281250,6.890625,6.937500,4.664415,118391200 +1996-03-21,6.953125,7.062500,6.890625,6.984375,4.695930,47616800 +1996-03-22,7.031250,7.062500,6.937500,7.015625,4.716942,30303200 +1996-03-25,7.046875,7.093750,6.843750,6.861325,4.613200,45829600 +1996-03-26,6.812500,7.046875,6.765625,7.015625,4.716942,49976800 +1996-03-27,7.046875,7.171875,7.015625,7.078125,4.758965,51588800 +1996-03-28,7.046875,7.171875,7.023438,7.046875,4.737956,32305600 +1996-03-29,7.091787,7.171875,7.031250,7.109375,4.779976,36318400 +1996-04-01,7.140625,7.187500,7.078125,7.140625,4.800986,28519200 +1996-04-02,7.140625,7.156250,7.078125,7.109375,4.779976,17644800 +1996-04-03,7.093750,7.234375,7.046875,7.203125,4.843008,33368800 +1996-04-04,7.218750,7.421875,7.171875,7.406250,4.979579,72766400 +1996-04-08,7.296875,7.609375,7.281250,7.578125,5.095137,115408800 +1996-04-09,7.687500,7.765625,7.578125,7.734375,5.200192,115986400 +1996-04-10,7.671875,7.890625,7.656250,7.718750,5.189689,131409600 +1996-04-11,7.671875,7.750000,7.484375,7.554688,5.079379,105884000 +1996-04-12,7.546875,7.562500,7.437500,7.453125,5.011096,48440800 +1996-04-15,7.468750,7.609375,7.453125,7.578125,5.095137,42540800 +1996-04-16,8.000000,8.125000,7.968750,8.109375,5.452324,191147200 +1996-04-17,8.078125,8.121087,7.966787,8.023438,5.394543,70596000 +1996-04-18,8.046875,8.234375,8.031250,8.218750,5.525862,73107200 +1996-04-19,8.312500,8.312500,8.140625,8.156250,5.483841,62551200 +1996-04-22,8.203125,8.468750,8.203125,8.468750,5.693948,83480800 +1996-04-23,8.439450,8.515625,8.343750,8.513662,5.724144,63572000 +1996-04-24,8.625000,8.796875,8.500000,8.781250,5.904056,163722400 +1996-04-25,8.750000,8.750000,8.593750,8.703125,5.851531,77232800 +1996-04-26,8.703125,8.796875,8.625000,8.656250,5.820013,73344800 +1996-04-29,8.609375,8.625000,8.484375,8.515625,5.728774,35319200 +1996-04-30,8.484375,8.500000,8.404287,8.468750,5.697238,46836800 +1996-05-01,8.421875,8.617188,8.406250,8.484375,5.707751,52056800 +1996-05-02,8.484375,8.609375,8.468750,8.500000,5.718259,63019200 +1996-05-03,8.531250,8.671875,8.500000,8.585938,5.776077,61840800 +1996-05-06,8.578125,8.625000,8.484375,8.593750,5.781331,40720800 +1996-05-07,8.609375,8.656250,8.468750,8.484375,5.707751,42147200 +1996-05-08,8.453125,8.625000,8.312500,8.593750,5.781331,64528800 +1996-05-09,8.609375,8.703125,8.546875,8.578125,5.770820,50893600 +1996-05-10,8.656250,8.687500,8.609375,8.640625,5.812868,48227200 +1996-05-13,8.640625,8.968750,8.625000,8.968750,6.033610,76656800 +1996-05-14,9.000000,9.187500,8.984375,9.109375,6.128211,114499200 +1996-05-15,9.078125,9.203125,9.031250,9.046875,6.086163,60852000 +1996-05-16,8.968750,9.031250,8.906250,8.984375,6.044117,40033600 +1996-05-17,9.031250,9.046875,8.875000,8.890625,5.981051,40084000 +1996-05-20,8.921875,8.968750,8.859375,8.875000,5.970538,33077600 +1996-05-21,8.875000,8.906250,8.765625,8.781250,5.907469,39953600 +1996-05-22,8.718750,8.765625,8.640625,8.734375,5.875937,45796800 +1996-05-23,8.765625,8.968750,8.703125,8.859375,5.960027,45295200 +1996-05-24,8.859375,8.921875,8.828125,8.875000,5.970538,33536800 +1996-05-28,8.890625,9.125000,8.890625,9.062500,6.096676,53196800 +1996-05-29,9.078125,9.125000,8.906250,8.921875,6.002072,59422400 +1996-05-30,8.921875,8.953125,8.843750,8.937500,6.012585,61696800 +1996-05-31,9.234375,9.453125,9.207025,9.437500,6.348951,145089600 +1996-06-03,9.390625,9.625000,9.343750,9.578125,6.443555,69614400 +1996-06-04,9.625000,9.687500,9.484375,9.539063,6.417278,56274400 +1996-06-05,9.500000,9.625000,9.453125,9.609375,6.464580,35413600 +1996-06-06,9.656250,9.687500,9.390625,9.406250,6.327928,51574400 +1996-06-07,9.220700,9.437500,9.187500,9.406250,6.327928,70562400 +1996-06-10,9.406250,9.406250,9.265625,9.265625,6.233330,36408000 +1996-06-11,9.296875,9.484375,9.250000,9.406250,6.327928,42351200 +1996-06-12,9.546875,9.718750,9.484375,9.593750,6.454066,66422400 +1996-06-13,9.593750,9.593750,9.343750,9.375000,6.306906,62036000 +1996-06-14,9.359375,9.375000,9.093750,9.125000,6.138723,61307200 +1996-06-17,9.140625,9.156250,8.906250,9.000000,6.054631,70758400 +1996-06-18,9.000000,9.015625,8.781250,8.796875,5.917979,60051200 +1996-06-19,8.843750,8.968750,8.796875,8.921875,6.002072,71435200 +1996-06-20,8.937500,8.984375,8.781250,8.890625,5.981051,73817600 +1996-06-21,8.921875,8.953125,8.796875,8.921875,6.002072,54253600 +1996-06-24,8.921875,9.281250,8.906250,9.201162,6.189961,57836800 +1996-06-25,9.250000,9.312500,9.015625,9.109375,6.128211,34814400 +1996-06-26,9.125000,9.125000,8.890625,9.062500,6.096676,59177600 +1996-06-27,9.046875,9.250000,8.945313,9.234375,6.212304,46257600 +1996-06-28,9.265625,9.296875,9.156250,9.179688,6.175511,32252800 +1996-07-01,9.218750,9.421875,9.171875,9.390625,6.317421,35018400 +1996-07-02,9.359375,9.486325,9.312500,9.343750,6.285884,51651200 +1996-07-03,9.328125,9.375000,9.203125,9.359375,6.296393,60736000 +1996-07-05,9.125000,9.312500,9.000000,9.015625,6.065142,39507200 +1996-07-08,9.031250,9.312500,9.000000,9.125000,6.138723,65053600 +1996-07-09,9.234375,9.281250,9.140625,9.171875,6.170258,35956800 +1996-07-10,9.125000,9.140625,8.937500,9.109375,6.128211,91695200 +1996-07-11,8.953125,9.000000,8.578125,8.687500,5.844401,145704000 +1996-07-12,8.859375,8.972650,8.765625,8.906250,5.991566,141623200 +1996-07-15,8.812500,8.859375,8.578125,8.640625,5.812868,97682400 +1996-07-16,8.578125,8.765625,8.015625,8.750000,5.886449,200755200 +1996-07-17,9.250000,9.281250,8.843750,8.953125,6.023097,199531200 +1996-07-18,9.015625,9.093750,8.906250,9.062500,6.096676,80169600 +1996-07-19,9.031250,9.171875,8.953125,9.093750,6.117700,76216000 +1996-07-22,9.078125,9.093750,8.919912,9.031250,6.075655,52232000 +1996-07-23,9.093750,9.093750,8.625000,8.687500,5.844401,105624000 +1996-07-24,8.296875,8.781250,8.251950,8.625000,5.802356,133832000 +1996-07-25,8.830075,9.031250,8.718750,9.015625,6.065142,74887200 +1996-07-26,9.078125,9.296875,9.046875,9.281250,6.243837,82870400 +1996-07-29,9.250000,9.390625,9.109375,9.109375,6.128211,70988800 +1996-07-30,9.203125,9.328125,9.132813,9.296875,6.258646,58967200 +1996-07-31,9.314450,9.421875,9.265625,9.390625,6.321757,64205600 +1996-08-01,9.421875,9.628900,9.359375,9.625000,6.479538,81130400 +1996-08-02,9.750000,9.890625,9.732412,9.843750,6.626801,107475200 +1996-08-05,9.843750,9.953125,9.765625,9.765625,6.574205,60604800 +1996-08-06,9.718750,9.984375,9.687500,9.984375,6.721469,64801600 +1996-08-07,10.031250,10.328125,10.000000,10.294912,6.930521,109771200 +1996-08-08,10.218750,10.267575,10.062500,10.093750,6.795097,86504800 +1996-08-09,9.984375,10.328125,9.937500,10.296875,6.931841,121416800 +1996-08-12,10.265625,10.406250,10.156250,10.265625,6.910802,53275200 +1996-08-13,10.171875,10.234375,9.937500,10.031250,6.753025,60300000 +1996-08-14,10.078125,10.250000,10.062500,10.218750,6.879251,50572800 +1996-08-15,10.203125,10.281250,10.156250,10.218750,6.879251,30832000 +1996-08-16,10.203125,10.265625,10.109375,10.125000,6.816135,44319200 +1996-08-19,10.093750,10.140625,9.968750,10.093750,6.795097,30192000 +1996-08-20,10.093750,10.109375,9.937500,9.937500,6.689913,33337600 +1996-08-21,9.843750,10.031250,9.812500,10.031250,6.753025,45863200 +1996-08-22,10.109375,10.375000,10.078125,10.375000,6.984440,58090400 +1996-08-23,10.328125,10.390625,10.195313,10.203125,6.868726,32100800 +1996-08-26,10.171875,10.187500,10.062500,10.156250,6.837173,32749600 +1996-08-27,10.171875,10.203125,10.031250,10.187500,6.858213,41030400 +1996-08-28,10.218750,10.281250,10.140625,10.156250,6.837173,32015200 +1996-08-29,10.140625,10.234375,10.109375,10.171875,6.847692,37079200 +1996-08-30,10.156250,10.187500,9.968750,9.976563,6.716211,26062400 +1996-09-03,9.890625,10.234375,9.812500,10.203125,6.868726,50458400 +1996-09-04,10.218750,10.312500,10.171875,10.281250,6.921322,39469600 +1996-09-05,10.203125,10.250000,10.046875,10.078125,6.784582,54436000 +1996-09-06,10.171875,10.265625,10.062500,10.156250,6.837173,39244000 +1996-09-09,10.171875,10.453125,10.156250,10.437500,7.026513,56342400 +1996-09-10,10.421875,10.564450,10.343750,10.539063,7.094882,77851200 +1996-09-11,10.484375,10.640625,10.468750,10.625000,7.152736,46831200 +1996-09-12,10.656250,10.703125,10.578125,10.671875,7.184292,49197600 +1996-09-13,10.820313,11.060537,10.687500,11.015625,7.415706,82940000 +1996-09-16,11.015625,11.171875,10.953125,11.078125,7.457779,70357600 +1996-09-17,11.812500,11.875000,11.546875,11.781250,7.931124,152990400 +1996-09-18,11.859375,12.187500,11.671875,11.953125,8.046830,103812000 +1996-09-19,11.906250,12.187500,11.875000,12.125000,8.162537,66176000 +1996-09-20,12.140625,12.265625,12.000000,12.171875,8.194090,81262400 +1996-09-23,12.078125,12.125000,11.906250,11.968750,8.057343,48962400 +1996-09-24,12.015625,12.218750,12.015625,12.062500,8.120460,63469600 +1996-09-25,12.140625,12.187500,12.031250,12.156250,8.183570,46242400 +1996-09-26,12.203125,12.437500,12.062500,12.171875,8.194090,82620800 +1996-09-27,12.218750,12.218750,12.062500,12.109375,8.152017,33680000 +1996-09-30,12.093750,12.125000,11.906250,11.929688,8.031051,42668000 +1996-10-01,11.828125,12.015625,11.781250,11.968750,8.057343,55946400 +1996-10-02,12.000000,12.421875,11.984375,12.375000,8.330835,71916800 +1996-10-03,12.359375,12.531250,12.265625,12.437500,8.372904,71356000 +1996-10-04,12.593750,12.718750,12.500000,12.710938,8.556988,44334400 +1996-10-07,12.718750,13.125000,12.718750,13.046875,8.783135,52123200 +1996-10-08,13.187500,13.375000,12.671875,12.703125,8.551725,112148800 +1996-10-09,12.968750,13.000000,12.593750,12.609375,8.488612,105073600 +1996-10-10,12.406250,12.734375,12.390625,12.484375,8.404466,67277600 +1996-10-11,12.828125,13.171875,12.812500,13.171875,8.867288,88411200 +1996-10-14,13.328125,13.531250,13.203125,13.453125,9.056626,89480800 +1996-10-15,14.265625,14.281250,13.716787,13.890625,9.351154,160209600 +1996-10-16,13.812500,14.123037,13.628900,14.078125,9.477378,87092000 +1996-10-17,14.156250,14.234375,13.843750,13.843750,9.319593,67586400 +1996-10-18,13.843750,13.843750,13.656250,13.750000,9.256478,62257600 +1996-10-21,13.703125,13.904287,13.390625,13.468750,9.067146,66499200 +1996-10-22,13.375000,13.468750,13.093750,13.187500,8.877804,97193600 +1996-10-23,13.156250,13.687500,13.093750,13.671875,9.203892,83144800 +1996-10-24,13.734375,13.906250,13.437500,13.437500,9.046106,69354400 +1996-10-25,13.406250,13.671875,13.171875,13.171875,8.867288,56904800 +1996-10-28,13.234375,13.437500,13.203125,13.250000,8.919883,61611200 +1996-10-29,13.328125,13.406250,12.968750,13.046875,8.783135,77648000 +1996-10-30,13.109375,13.421875,13.093750,13.343750,8.987301,69940000 +1996-10-31,13.406250,13.765625,13.390625,13.734375,9.250394,66129600 +1996-11-01,13.734375,13.734375,13.500000,13.593750,9.155680,61486400 +1996-11-04,13.609375,13.843750,13.546875,13.796875,9.292490,46838400 +1996-11-05,13.796875,14.296875,13.796875,14.250000,9.597678,82406400 +1996-11-06,14.250000,14.921875,14.156250,14.859375,10.008106,111770400 +1996-11-07,15.000000,15.593750,14.843750,15.265625,10.281725,129250400 +1996-11-08,15.234375,15.375000,15.046875,15.281250,10.292246,69125600 +1996-11-11,15.250000,15.500000,15.156250,15.484375,10.429056,49158400 +1996-11-12,15.625000,15.640625,15.015625,15.125000,10.187010,98851200 +1996-11-13,15.140625,15.171875,14.814450,14.937500,10.060726,72973600 +1996-11-14,14.828125,15.156250,14.765625,14.984375,10.092297,77549600 +1996-11-15,15.031250,15.031250,14.421875,14.484375,9.755538,121340000 +1996-11-18,14.531250,14.625000,14.203125,14.421875,9.713443,98204800 +1996-11-19,14.390625,15.125000,14.375000,15.093750,10.165963,89967200 +1996-11-20,15.171875,15.562500,15.080075,15.109375,10.176484,99407200 +1996-11-21,15.218750,15.234375,14.718750,14.859375,10.008106,95869600 +1996-11-22,14.968750,15.328125,14.906250,15.312500,10.313292,76026400 +1996-11-25,15.234375,15.328125,14.921875,15.187500,10.229104,62263200 +1996-11-26,15.234375,15.562500,14.937500,15.468750,10.418533,124950400 +1996-11-27,15.546875,15.906250,15.437500,15.828125,10.660580,85092800 +1996-11-29,15.859375,15.906250,15.828125,15.859375,10.681624,19584800 +1996-12-02,15.750000,15.937500,15.546875,15.890625,10.702674,62268000 +1996-12-03,15.921875,16.171875,15.703125,15.734375,10.597438,75824000 +1996-12-04,15.875000,16.203125,15.734375,16.187500,10.902628,97301600 +1996-12-05,16.296875,16.296875,15.906250,16.031250,10.797393,82200800 +1996-12-06,15.562500,15.953125,15.421875,15.710938,10.581654,104533600 +1996-12-09,15.718750,16.265625,15.718750,16.265625,10.955243,59799200 +1996-12-10,16.593750,16.671875,16.125000,16.140625,10.871062,86302400 +1996-12-11,16.093750,17.125000,16.000000,17.109375,11.523533,168052000 +1996-12-12,17.640625,17.687500,17.093750,17.109375,11.523533,151984800 +1996-12-13,17.078125,17.140625,16.500000,16.546875,11.144670,125048800 +1996-12-16,16.671875,16.734375,15.859375,15.906250,10.713202,118759200 +1996-12-17,15.828125,16.359375,15.796875,16.250000,10.944721,119589600 +1996-12-18,16.531250,16.984375,16.406250,16.968750,11.428807,85812000 +1996-12-19,17.171875,17.359375,17.000000,17.187500,11.576147,89845600 +1996-12-20,17.250000,17.250000,16.781250,16.828125,11.334105,107156000 +1996-12-23,16.859375,16.859375,16.515625,16.531250,11.134151,57603200 +1996-12-24,16.546875,16.953125,16.359375,16.937500,11.407764,34854400 +1996-12-26,16.984375,17.281250,16.890625,17.078125,11.502477,49676800 +1996-12-27,17.140625,17.156250,16.859375,16.921875,11.397237,33370400 +1996-12-30,17.015625,17.078125,16.656250,16.656250,11.218342,45784000 +1996-12-31,16.671875,16.750000,16.343750,16.367188,11.023653,51322400 +1997-01-02,16.468750,16.500000,15.953125,16.296875,10.976296,97639200 +1997-01-03,16.625000,17.312500,16.578125,17.296875,11.649816,95648000 +1997-01-06,17.390625,17.718750,17.218750,17.359375,11.691912,120549600 +1997-01-07,17.320313,17.937500,17.125000,17.921875,12.070765,96153600 +1997-01-08,18.000000,18.203125,17.720699,17.781250,11.976050,125510400 +1997-01-09,17.921875,18.000000,17.718750,17.875000,12.039199,77420000 +1997-01-10,17.765625,18.093750,17.687500,18.062500,12.165478,111907200 +1997-01-13,18.218750,18.470699,18.000000,18.359375,12.365428,116600000 +1997-01-14,18.484375,18.718750,18.312500,18.390625,12.386479,113872800 +1997-01-15,18.437500,18.484375,17.687500,17.750000,11.955005,227419200 +1997-01-16,17.968750,18.250000,17.757813,17.796875,11.986581,133381600 +1997-01-17,17.750000,18.171875,17.750000,18.007813,12.128643,97962400 +1997-01-20,18.046875,18.242188,17.998037,18.156250,12.228620,58668800 +1997-01-21,18.140625,18.546875,18.109375,18.507813,12.465408,64573600 +1997-01-22,18.562500,19.031250,18.343750,19.015625,12.807426,88490400 +1997-01-23,19.156250,19.484375,18.953125,18.968750,12.775858,99123200 +1997-01-24,19.000000,19.328125,18.796875,18.812500,12.670622,114352000 +1997-01-27,18.861324,19.031250,18.656250,18.765625,12.639048,69532000 +1997-01-28,19.078125,19.218750,18.718750,18.875000,12.712716,58843200 +1997-01-29,19.062500,19.343750,18.937500,19.343750,13.032739,74363200 +1997-01-30,19.578125,20.031250,19.468750,20.015625,13.485411,88168000 +1997-01-31,20.078125,20.500000,20.031250,20.281250,13.664380,100647200 +1997-02-03,20.437500,20.625000,20.250000,20.484375,13.801229,77328000 +1997-02-04,20.531250,20.609375,20.296875,20.593750,13.874925,89346400 +1997-02-05,20.359375,20.375000,19.375000,19.656250,13.243288,187991200 +1997-02-06,19.609375,19.671875,18.843750,19.140625,12.895889,180376800 +1997-02-07,19.406250,19.656250,19.281250,19.546875,13.169599,117951200 +1997-02-10,19.718750,19.828125,18.873037,18.953125,12.769566,126322400 +1997-02-11,19.265625,19.343750,18.312500,18.968750,12.780093,151842400 +1997-02-12,18.968750,19.625000,18.812500,19.593750,13.201178,112742400 +1997-02-13,19.750000,19.875000,19.500000,19.625000,13.222233,96499200 +1997-02-14,19.515625,19.625000,19.187500,19.312500,13.011689,69313600 +1997-02-18,19.281250,19.390625,19.015625,19.328125,13.022212,60033600 +1997-02-19,19.265625,19.468750,19.156250,19.234375,12.959049,55190400 +1997-02-20,19.031250,19.125000,18.669912,18.734375,12.622181,128985600 +1997-02-21,18.687500,18.705074,18.171875,18.296875,12.327414,127490400 +1997-02-24,17.984375,18.687500,17.781250,18.640625,12.559017,131964800 +1997-02-25,18.843750,18.921875,18.437500,18.609375,12.537961,99163200 +1997-02-26,18.562500,18.593750,18.093750,18.296875,12.327414,94690400 +1997-02-27,18.265625,18.281250,17.453125,17.466787,11.768152,101312000 +1997-02-28,17.437500,18.078125,17.125000,17.734375,11.948439,149775200 +1997-03-03,17.640625,18.250000,17.562500,18.234375,12.285311,82524000 +1997-03-04,18.328125,18.703125,18.250000,18.296875,12.327414,120270400 +1997-03-05,18.500000,18.703125,18.453125,18.687500,12.590601,99617600 +1997-03-06,18.687500,18.781250,18.140625,18.171875,12.243199,115592000 +1997-03-07,18.312500,18.500000,17.812500,17.937500,12.085297,86213600 +1997-03-10,17.906250,18.218750,17.687500,18.093750,12.190568,82115200 +1997-03-11,18.078125,18.265625,17.937500,17.984375,12.116874,80986400 +1997-03-12,17.890625,17.984375,17.500000,17.843750,12.022128,98388000 +1997-03-13,17.703125,17.937500,17.500000,17.656250,11.895799,90898400 +1997-03-14,17.765625,17.906250,17.187500,17.234375,11.611562,81598400 +1997-03-17,17.015625,17.093750,16.421875,17.046875,11.485237,161466400 +1997-03-18,17.156250,17.250000,16.859375,17.093750,11.516817,95223200 +1997-03-19,16.937500,17.000000,16.500000,16.671875,11.232580,134926400 +1997-03-20,16.703125,16.906250,16.406250,16.656250,11.222056,107778400 +1997-03-21,16.703125,16.773438,16.296875,16.312500,10.990459,82396800 +1997-03-24,16.203125,16.390625,15.718750,16.328125,11.000981,169920800 +1997-03-25,16.406250,16.875000,16.250000,16.656250,11.222056,115583200 +1997-03-26,16.843750,17.593750,16.781250,17.578125,11.843168,127732800 +1997-03-27,17.812500,17.984375,17.156250,17.390625,11.716830,140616000 +1997-03-31,17.343750,17.531250,17.125000,17.390625,11.716830,107790400 +1997-04-01,17.203125,17.468750,17.171875,17.414063,11.732629,90782400 +1997-04-02,17.359375,17.421875,17.062500,17.125000,11.537874,102557600 +1997-04-03,17.031250,17.625000,17.015625,17.578125,11.843168,102904800 +1997-04-04,17.484375,18.171875,17.453125,18.125000,12.211616,125324800 +1997-04-07,18.250000,18.640625,18.117188,18.140625,12.222147,98964000 +1997-04-08,18.187500,18.343750,18.046875,18.326162,12.347149,84747200 +1997-04-09,18.437500,18.531250,17.750000,17.781250,11.980021,81705600 +1997-04-10,17.843750,17.843750,17.126949,17.156250,11.558928,123181600 +1997-04-11,16.906250,16.906250,16.218750,16.312500,10.990459,192564000 +1997-04-14,16.515625,16.734375,16.304688,16.718750,11.264160,154790400 +1997-04-15,16.515625,16.687500,16.031250,16.375000,11.032566,199704800 +1997-04-16,16.375000,16.812500,16.359375,16.750000,11.285214,100414400 +1997-04-17,16.906250,17.367188,16.812500,17.250000,11.622087,130948000 +1997-04-18,17.546875,17.546875,17.125000,17.140625,11.548400,106872000 +1997-04-21,17.125000,17.517574,17.031250,17.296875,11.653675,89620000 +1997-04-22,17.328125,17.656250,17.187500,17.609375,11.864218,81165600 +1997-04-23,17.656250,18.328125,17.609375,18.281250,12.316893,121205600 +1997-04-24,18.531250,18.640625,18.265625,18.265625,12.306364,118114400 +1997-04-25,18.031250,18.234375,17.984375,17.984375,12.116874,79637600 +1997-04-28,18.031250,18.375000,17.906250,18.296875,12.327414,80194400 +1997-04-29,18.640625,18.765625,18.500000,18.750000,12.637024,84341600 +1997-04-30,18.687500,19.187500,18.671875,19.140625,12.900304,122580000 +1997-05-01,19.171875,19.359375,18.984375,19.218750,12.952950,96868000 +1997-05-02,19.343750,19.703125,19.250000,19.703125,13.279409,77264000 +1997-05-05,19.812500,20.312500,19.695313,20.312500,13.690111,104702400 +1997-05-06,20.078125,20.125000,19.671875,19.750000,13.311004,103409600 +1997-05-07,19.500000,20.000000,19.468750,19.484375,13.131969,81708000 +1997-05-08,19.390625,20.044912,19.375000,19.843750,13.374189,99770400 +1997-05-09,20.109375,20.187500,19.718750,19.937500,13.437370,93159200 +1997-05-12,20.015625,20.062500,19.765625,19.890625,13.405780,68047200 +1997-05-13,19.750000,19.812500,18.875000,19.046875,12.837114,153694400 +1997-05-14,18.687500,19.109375,18.265625,19.093750,12.868701,192022400 +1997-05-15,19.203125,19.828125,19.109375,19.765625,13.321529,92104800 +1997-05-16,19.593750,19.757813,19.375000,19.390625,13.068790,85354400 +1997-05-19,19.406250,19.593750,19.125000,19.343750,13.037200,53624000 +1997-05-20,19.437500,20.140625,19.437500,20.125000,13.563737,94090400 +1997-05-21,20.437500,20.640625,20.250000,20.312500,13.690111,105252800 +1997-05-22,20.343750,20.468750,19.968750,20.171875,13.595334,71460000 +1997-05-23,20.343750,20.500000,20.187500,20.398438,13.748031,43351200 +1997-05-27,20.421875,21.171875,20.312500,21.164063,14.264039,106044800 +1997-05-28,21.210938,21.218750,20.687500,20.890625,14.079746,110245600 +1997-05-29,20.921875,20.935537,20.359375,20.470699,13.796739,93404800 +1997-05-30,17.812500,19.203125,17.500000,18.937500,12.763399,459014400 +1997-06-02,19.250000,19.328125,18.640625,18.718750,12.615960,186443200 +1997-06-03,18.562500,18.562500,18.103512,18.125000,12.215793,178820800 +1997-06-04,18.218750,18.500000,17.656250,17.812500,12.005170,173323200 +1997-06-05,18.046875,18.185537,17.828125,17.892574,12.059140,112872000 +1997-06-06,17.984375,18.359375,17.875000,18.250000,12.300036,85673600 +1997-06-09,18.484375,18.718750,18.484375,18.656250,12.573839,95966400 +1997-06-10,18.554688,18.625000,18.078125,18.148438,12.231588,109618400 +1997-06-11,18.156250,18.484375,17.765625,18.437500,12.426409,104075200 +1997-06-12,17.875000,18.187500,17.750000,17.957026,12.102581,147144800 +1997-06-13,17.984375,18.375000,17.781250,18.093750,12.194727,120024800 +1997-06-16,18.203125,18.421875,18.078125,18.406250,12.405348,54288800 +1997-06-17,18.414063,18.765625,18.312500,18.710938,12.610697,84719200 +1997-06-18,18.429688,18.562500,18.257813,18.320313,12.347425,77522400 +1997-06-19,18.312500,18.437500,18.093750,18.304688,12.336897,67169600 +1997-06-20,18.296875,18.585938,18.250000,18.343750,12.363225,70870400 +1997-06-23,18.250000,18.406250,18.140625,18.148438,12.231588,55217600 +1997-06-24,18.312500,18.570313,18.148438,18.500000,12.468527,59868800 +1997-06-25,18.593750,18.609375,18.234375,18.335938,12.357959,71621600 +1997-06-26,18.171875,18.328125,17.953125,17.960938,12.105216,89320800 +1997-06-27,18.125000,18.140625,17.750000,17.781250,11.984115,83198400 +1997-06-30,17.828125,17.945313,17.593750,17.726563,11.947253,73996800 +1997-07-01,17.750000,17.765625,17.328125,17.382813,11.715579,120094400 +1997-07-02,17.500000,17.890625,17.375000,17.875000,12.047297,126900000 +1997-07-03,18.078125,18.164063,17.875000,18.117188,12.210526,69645600 +1997-07-07,18.210938,18.625000,18.171875,18.421875,12.415877,81052800 +1997-07-08,18.476563,18.796875,18.281250,18.703125,12.605433,88640800 +1997-07-09,18.875000,19.320313,18.875000,19.078125,12.858178,134427200 +1997-07-10,19.062500,19.187500,18.718750,18.765625,12.647556,104671200 +1997-07-11,18.812500,19.250000,18.734375,19.226563,12.958216,88641600 +1997-07-14,19.312500,19.746075,19.187500,19.687500,13.268880,91014800 +1997-07-15,20.187500,20.484375,19.921875,20.226549,13.632182,137650400 +1997-07-16,21.593750,22.218750,21.187500,22.093750,14.890629,188827600 +1997-07-17,22.062500,22.421875,21.531250,21.953125,14.795846,102946400 +1997-07-18,21.687500,21.906250,21.187500,21.609375,14.564177,89768400 +1997-07-21,21.546875,21.625000,21.140625,21.421875,14.437805,57112400 +1997-07-22,21.390625,22.234375,21.347651,22.187500,14.953815,63344000 +1997-07-23,22.406250,22.687500,22.250000,22.328125,15.048593,66578000 +1997-07-24,22.250000,22.656250,22.093750,22.437500,15.122310,48846000 +1997-07-25,22.437500,22.781250,22.093750,22.296875,15.027527,49560000 +1997-07-28,22.312500,22.437500,21.984375,22.140625,14.922215,31066400 +1997-07-29,21.906250,22.125000,21.718750,22.031250,14.848500,38321200 +1997-07-30,21.875000,22.593750,21.812500,22.343750,15.064249,42040800 +1997-07-31,22.546875,23.031250,22.296875,22.953125,15.475092,71150800 +1997-08-01,23.187500,23.578125,22.625000,23.406250,15.780595,87386800 +1997-08-04,23.375000,24.250000,23.218750,24.187500,16.307312,69578400 +1997-08-05,24.421875,25.031250,24.218750,24.921875,16.802429,86284400 +1997-08-06,25.078125,25.500000,24.609375,25.015625,16.865643,74238000 +1997-08-07,25.375000,25.453125,25.000000,25.015625,16.865643,62813600 +1997-08-08,24.593750,24.941401,23.968750,24.453125,16.486391,83373600 +1997-08-11,24.312500,24.468750,23.437500,24.031250,16.201967,73399600 +1997-08-12,24.281250,24.656250,23.750000,23.828125,16.065022,47946800 +1997-08-13,24.312500,24.531250,23.562500,24.093750,16.244104,63879200 +1997-08-14,24.218750,24.312500,23.765625,23.968750,16.159838,48156400 +1997-08-15,23.843750,23.937500,23.000000,23.031250,15.527765,66631600 +1997-08-18,22.937500,23.687500,22.468750,23.640625,15.938607,80085600 +1997-08-19,24.000000,24.562500,23.839825,24.476549,16.502192,68073600 +1997-08-20,24.625000,25.187500,24.343750,25.125000,16.939373,62654800 +1997-08-21,25.218750,25.218750,24.421875,24.593750,16.581207,62813200 +1997-08-22,22.937500,24.062500,22.921875,24.046875,16.212503,120192400 +1997-08-25,23.890625,24.156250,23.375000,23.546875,15.875396,65676400 +1997-08-26,23.375000,23.562500,23.140625,23.171875,15.622573,46042800 +1997-08-27,23.015625,23.531250,22.968750,23.515625,15.854334,44534400 +1997-08-28,23.093750,23.562500,22.765625,23.093750,15.569906,58621600 +1997-08-29,22.937500,23.343750,22.875000,23.031250,15.527765,38895600 +1997-09-02,23.281250,23.875000,23.250000,23.765625,16.022886,50916400 +1997-09-03,23.750000,24.000000,23.437500,23.453125,15.812198,46066400 +1997-09-04,23.437500,23.968750,23.375000,23.656250,15.949147,46934400 +1997-09-05,23.937500,24.062500,23.593750,23.640625,15.938607,39409200 +1997-09-08,23.921875,24.203125,23.812500,23.984375,16.170370,40360400 +1997-09-09,24.046875,24.453125,24.000000,24.437500,16.475864,56717600 +1997-09-10,24.343750,24.542950,23.875000,23.875000,16.096628,55259200 +1997-09-11,23.718750,24.000000,23.312500,23.812500,16.054491,51296000 +1997-09-12,23.546875,23.687500,23.375000,23.562500,15.885936,42529600 +1997-09-15,23.546875,23.859375,23.000000,23.015625,15.517228,33224000 +1997-09-16,23.250000,24.093750,23.125000,23.953125,16.149296,59700400 +1997-09-17,24.281250,24.437500,23.750000,23.914049,16.122959,70784000 +1997-09-18,24.015625,24.375000,23.718750,23.750000,16.012344,37023200 +1997-09-19,23.812500,23.906250,23.703125,23.859375,16.086092,45282400 +1997-09-22,23.890625,24.421875,23.843750,24.093750,16.244104,43994000 +1997-09-23,24.218750,24.812500,24.156250,24.781250,16.707623,57432000 +1997-09-24,24.750000,24.781250,23.843750,23.906250,16.117693,60664800 +1997-09-25,23.687500,24.046875,23.250000,23.281250,15.696315,54458400 +1997-09-26,23.531250,23.531250,23.218750,23.265625,15.685784,52354800 +1997-09-29,23.421875,24.000000,23.343750,23.843750,16.075554,27963200 +1997-09-30,23.718750,23.750000,23.062500,23.078125,15.559374,62021200 +1997-10-01,23.187500,23.343750,22.656250,23.312500,15.717383,74075600 +1997-10-02,23.390625,23.453125,22.921875,23.281250,15.696315,28330400 +1997-10-03,23.687500,23.687500,23.062500,23.328125,15.727918,43604000 +1997-10-06,23.531250,23.687500,23.296875,23.375000,15.759523,39713600 +1997-10-07,23.531250,23.906250,23.406250,23.812500,16.054491,42537600 +1997-10-08,23.625000,23.750000,23.390625,23.640625,15.938607,48621600 +1997-10-09,23.531250,23.812500,23.406250,23.671875,15.959679,42205600 +1997-10-10,23.531250,23.558575,23.250000,23.250000,15.675247,39668000 +1997-10-13,23.375000,23.406250,22.937500,23.140625,15.601505,46409600 +1997-10-14,23.156250,23.250000,22.515625,22.953125,15.475092,87709200 +1997-10-15,21.390625,21.812500,21.375000,21.671875,14.611270,265154400 +1997-10-16,21.875000,21.890625,21.156250,21.343750,14.390045,90182000 +1997-10-17,21.156250,21.281250,20.468750,20.750000,13.989736,98338400 +1997-10-20,21.062500,21.281250,20.781250,21.015625,14.168819,74026800 +1997-10-21,21.484375,21.484375,21.218750,21.281250,14.347913,60264800 +1997-10-22,21.468750,21.531250,20.968750,20.984375,14.147754,50656400 +1997-10-23,20.500000,20.906250,20.187500,20.468750,13.800113,93489600 +1997-10-24,20.812500,20.875000,19.562500,20.000000,13.484082,122778800 +1997-10-27,19.660151,19.937500,18.484375,18.687500,12.599191,105164000 +1997-10-28,19.921875,21.687500,17.312500,21.250000,14.326834,207800400 +1997-10-29,20.781250,20.812500,19.812500,20.062500,13.530996,131943200 +1997-10-30,19.437500,19.750000,18.906250,18.937500,12.772246,106263200 +1997-10-31,19.562500,19.593750,19.062500,19.250000,12.983009,87862000 +1997-11-03,19.609375,19.750000,19.402325,19.625000,13.235929,66579600 +1997-11-04,19.656250,19.875000,18.781250,18.984375,12.803859,99530800 +1997-11-05,19.250000,19.250000,18.593750,18.656250,12.582564,101704800 +1997-11-06,18.734375,18.734375,18.234375,18.375000,12.392866,91430800 +1997-11-07,18.078125,19.500000,18.003901,19.359375,13.056777,159223600 +1997-11-10,19.328125,19.562500,18.722651,18.781250,12.666864,79038800 +1997-11-11,18.781250,19.343750,18.750000,19.062500,12.856550,41917600 +1997-11-12,18.968750,19.500000,18.687500,18.734375,12.635247,80271200 +1997-11-13,19.015625,19.500000,18.687500,19.484375,13.141081,71534400 +1997-11-14,19.578125,19.781250,19.218750,19.687500,13.278080,51246800 +1997-11-17,20.000000,20.281250,19.875000,20.109375,13.562610,56116800 +1997-11-18,20.062500,20.156250,19.640625,19.687500,13.278080,44351600 +1997-11-19,19.656250,19.953125,19.546875,19.765625,13.330774,43050000 +1997-11-20,19.875000,20.343750,19.687500,20.218750,13.636377,53910800 +1997-11-21,20.437500,20.437500,19.921875,20.062500,13.530996,57960800 +1997-11-24,19.921875,20.218750,19.531250,19.531250,13.172699,56716000 +1997-11-25,19.515625,19.531250,19.000000,19.109375,12.888166,70640800 +1997-11-26,19.203125,19.375000,19.093750,19.156250,12.919783,33229600 +1997-11-28,19.218750,19.468750,19.062500,19.406250,13.088390,13943200 +1997-12-01,19.625000,20.437500,19.546875,20.375000,13.741755,69122000 +1997-12-02,20.234375,20.250000,19.285151,19.515625,13.162164,68329600 +1997-12-03,19.437500,19.796875,19.031250,19.625000,13.235929,55119600 +1997-12-04,19.750000,19.781250,19.000000,19.171875,12.930321,82224000 +1997-12-05,19.156250,19.562500,19.093750,19.390625,13.077853,53776400 +1997-12-08,19.531250,19.796875,19.390625,19.609375,13.225386,40209600 +1997-12-09,19.500000,19.656250,18.863276,18.906250,12.751165,64254800 +1997-12-10,18.765625,18.875000,18.218750,18.671875,12.593098,81685200 +1997-12-11,18.265625,18.437500,17.937500,17.953125,12.108348,90031600 +1997-12-12,18.062500,18.187500,17.515625,17.625000,11.887044,78581200 +1997-12-15,17.562500,18.453125,17.281250,18.031250,12.161036,108536400 +1997-12-16,18.218750,18.421875,17.625000,17.796875,12.002964,61343200 +1997-12-17,18.109375,18.156250,17.328125,17.375000,11.718431,77272800 +1997-12-18,17.468750,17.500000,16.968750,17.281250,11.655205,93845600 +1997-12-19,17.000000,17.531250,16.843750,17.500000,11.802740,109067600 +1997-12-22,18.187500,18.359375,17.750000,17.859375,12.045118,75592000 +1997-12-23,17.859375,18.183575,17.503901,17.546875,11.834352,44389200 +1997-12-24,17.765625,17.835924,17.472651,17.562500,11.844889,22021600 +1997-12-26,17.593750,17.765625,17.500000,17.718750,11.950271,14815600 +1997-12-29,17.906250,17.968750,17.562500,17.703125,11.939731,40644000 +1997-12-30,17.781250,18.031250,17.765625,17.921875,12.087267,41157200 +1997-12-31,17.937500,17.953125,17.531250,17.562500,11.844889,42123600 +1998-01-02,17.671875,18.156250,17.625000,18.156250,12.245333,40927200 +1998-01-05,18.265625,18.785151,18.000000,18.625000,12.561482,78368400 +1998-01-06,18.468750,18.578125,18.171875,18.281250,12.329644,48313600 +1998-01-07,18.187500,18.406250,17.890625,18.187500,12.266417,55380800 +1998-01-08,18.062500,18.703125,18.031250,18.578125,12.529870,75730400 +1998-01-09,18.640625,18.750000,17.808575,17.968750,12.118882,88028800 +1998-01-12,17.703125,18.921875,17.671875,18.906250,12.751165,123747600 +1998-01-13,19.093750,19.312500,19.062500,19.234375,12.972476,97348000 +1998-01-14,19.250000,19.265625,18.593750,18.859375,12.719557,123962000 +1998-01-15,18.718750,19.093750,18.656250,18.828125,12.698484,53458400 +1998-01-16,18.953125,18.968750,18.656250,18.703125,12.614181,59281200 +1998-01-20,18.781250,19.078125,18.718750,19.062500,12.856550,49972000 +1998-01-21,18.859375,19.421875,18.843750,19.171875,12.930321,69415200 +1998-01-22,19.000000,19.375000,18.984375,19.125000,12.898707,49898000 +1998-01-23,19.218750,19.468750,19.125000,19.296875,13.014630,56184800 +1998-01-26,19.250000,19.500000,19.250000,19.421875,13.098933,44695200 +1998-01-27,19.468750,19.890625,19.343750,19.796875,13.351848,58713200 +1998-01-28,19.937500,20.359375,19.875000,20.218750,13.641543,67063600 +1998-01-29,20.078125,20.718750,20.062500,20.500000,13.831306,72366400 +1998-01-30,20.625000,20.687500,20.218750,20.250000,13.662628,45384000 +1998-02-02,20.625000,20.902325,20.546875,20.765625,14.010517,62426000 +1998-02-03,21.000000,21.781250,20.906250,21.578125,14.558715,99884400 +1998-02-04,21.531250,22.078125,21.406250,21.890625,14.769558,75391600 +1998-02-05,22.187500,22.515625,21.531250,21.625000,14.590340,97320800 +1998-02-06,21.437500,22.000000,21.406250,21.886700,14.766912,52042800 +1998-02-09,21.859375,21.968750,21.359375,21.453125,14.474374,45804400 +1998-02-10,21.359375,21.953125,21.265625,21.562500,14.548169,59575200 +1998-02-11,21.421875,21.515625,21.062500,21.265625,14.347874,64918000 +1998-02-12,20.968750,21.312500,20.687500,21.250000,14.337327,70388800 +1998-02-13,21.093750,21.234375,20.953125,20.953125,14.137026,39093600 +1998-02-17,21.156250,21.234375,20.984375,21.156250,14.274062,41481600 +1998-02-18,21.093750,21.750000,21.062500,21.734375,14.664136,65802800 +1998-02-19,22.250000,22.781250,22.031250,22.640625,15.275576,136295200 +1998-02-20,22.812500,23.093750,22.625000,22.953125,15.486423,98482000 +1998-02-23,23.250000,23.656250,23.093750,23.546875,15.887022,68921200 +1998-02-24,23.531250,23.906250,23.062500,23.093750,15.581301,75785200 +1998-02-25,23.171875,23.593750,23.156250,23.500000,15.855397,49980000 +1998-02-26,23.437500,23.515625,23.062500,23.078125,15.570757,55918800 +1998-02-27,22.984375,23.093750,22.375000,22.421875,15.127984,73563600 +1998-03-02,22.453125,22.843750,21.875000,21.906250,14.780101,71733600 +1998-03-03,21.484375,21.578125,21.031250,21.328125,14.390038,116639200 +1998-03-04,21.234375,21.734375,21.203125,21.609375,14.579799,54200000 +1998-03-05,18.765625,19.343750,18.750000,18.890625,12.745464,369330400 +1998-03-06,19.343750,19.562500,19.031250,19.531250,13.177688,128355600 +1998-03-09,19.562500,19.593750,18.734375,18.765625,12.661127,107076800 +1998-03-10,19.125000,19.125000,18.734375,18.875000,12.734921,68406000 +1998-03-11,19.140625,19.156250,18.765625,18.968750,12.798179,56479200 +1998-03-12,19.031250,19.171875,18.828125,19.093750,12.882515,39483600 +1998-03-13,19.250000,19.375000,19.140625,19.156250,12.924680,33584400 +1998-03-16,19.265625,19.468750,19.250000,19.421875,13.103892,36159600 +1998-03-17,19.375000,19.421875,18.906250,19.187500,12.945765,55440400 +1998-03-18,18.984375,19.359375,18.968750,19.250000,12.987931,32528000 +1998-03-19,19.343750,19.484375,19.187500,19.328125,13.040648,34558000 +1998-03-20,19.375000,19.375000,18.828125,18.937500,12.777088,64090800 +1998-03-23,18.875000,18.875000,18.609375,18.765625,12.661127,73635600 +1998-03-24,18.796875,18.968750,18.500000,18.609375,12.555706,62888800 +1998-03-25,18.968750,19.109375,18.812500,19.015625,12.829803,66587600 +1998-03-26,19.234375,19.562500,19.187500,19.546875,13.188233,55606400 +1998-03-27,19.578125,19.890625,19.562500,19.718750,13.304198,72785200 +1998-03-30,19.656250,19.687500,19.281250,19.343750,13.051184,44500400 +1998-03-31,19.171875,19.562500,19.156250,19.515625,13.167142,57452000 +1998-04-01,19.375000,19.484375,19.109375,19.375000,13.072268,60100800 +1998-04-02,19.234375,19.375000,19.015625,19.093750,12.882515,44330800 +1998-04-03,19.156250,19.468750,19.031250,19.187500,12.945765,74411200 +1998-04-06,19.046875,19.062500,18.468750,18.468750,12.460825,71554000 +1998-04-07,18.500000,18.593750,18.031250,18.156250,12.249985,73555200 +1998-04-08,18.250000,18.359375,17.828125,18.140625,12.239434,80134000 +1998-04-09,18.531250,18.671875,18.359375,18.437500,12.439740,58564000 +1998-04-13,18.468750,19.125000,18.375000,19.062500,12.861424,63446000 +1998-04-14,18.906250,19.234375,18.765625,19.000000,12.819258,69982000 +1998-04-15,19.546875,19.875000,18.687500,18.718750,12.629500,142813200 +1998-04-16,18.359375,18.718750,18.316401,18.593750,12.545159,72342800 +1998-04-17,18.515625,18.828125,18.484375,18.796875,12.682212,45112800 +1998-04-20,18.734375,19.156250,18.718750,19.125000,12.903594,40400400 +1998-04-21,19.437500,19.750000,19.406250,19.734375,13.314735,93195600 +1998-04-22,19.812500,21.125000,19.781250,21.015625,14.179195,151875200 +1998-04-23,20.812500,21.265625,20.515625,20.812500,14.042150,98472000 +1998-04-24,20.468750,20.843750,20.312500,20.515625,13.841846,68476800 +1998-04-27,20.062500,20.343750,19.687500,20.000000,13.493956,83156000 +1998-04-28,20.187500,20.343750,19.562500,19.828125,13.377989,61831600 +1998-04-29,19.875000,20.125000,19.687500,20.031250,13.520153,41810400 +1998-04-30,20.156250,20.390625,19.843750,20.203125,13.636160,50554000 +1998-05-01,20.234375,20.625000,20.031250,20.531250,13.857634,45786400 +1998-05-04,20.562500,20.875000,20.312500,20.500000,13.836540,36578000 +1998-05-05,20.437500,20.687500,20.390625,20.468750,13.815446,34794800 +1998-05-06,20.546875,20.562500,20.187500,20.343750,13.731076,32992800 +1998-05-07,20.359375,20.562500,20.171875,20.250000,13.667794,39124400 +1998-05-08,20.156250,21.046875,20.140625,21.015625,14.184555,68384800 +1998-05-11,20.968750,21.218750,20.625000,20.625000,13.920906,47877600 +1998-05-12,20.609375,21.171875,20.515625,21.140625,14.268925,48472800 +1998-05-13,21.156250,21.328125,20.937500,21.203125,14.311117,52413200 +1998-05-14,20.953125,21.359375,20.859375,21.140625,14.268925,56047600 +1998-05-15,20.796875,20.812500,19.968750,20.078125,13.551797,98584000 +1998-05-18,20.000000,20.328125,19.593750,19.843750,13.393601,44609200 +1998-05-19,19.921875,20.171875,19.765625,19.890625,13.425240,36790800 +1998-05-20,19.812500,19.843750,19.125000,19.250000,12.992848,69038000 +1998-05-21,19.078125,19.140625,18.453125,18.531250,12.507724,95151600 +1998-05-22,18.687500,18.687500,18.484375,18.578125,12.539361,41110800 +1998-05-26,18.859375,18.968750,18.484375,18.671875,12.602641,51538000 +1998-05-27,18.375000,18.609375,18.218750,18.578125,12.539361,65520000 +1998-05-28,18.406250,18.718750,18.281250,18.375000,12.402267,45670800 +1998-05-29,18.406250,18.500000,17.812500,17.859375,12.054240,77225200 +1998-06-01,17.281250,17.343750,16.906250,17.000000,11.474203,108380000 +1998-06-02,17.250000,17.359375,17.046875,17.312500,11.685130,72040400 +1998-06-03,17.531250,17.671875,16.414049,16.484375,11.126176,104560000 +1998-06-04,16.906250,17.250000,16.703125,17.046875,11.505843,82716000 +1998-06-05,17.296875,17.484375,16.937500,17.453125,11.780043,59046000 +1998-06-08,17.484375,17.500000,16.937500,17.328125,11.695672,70268800 +1998-06-09,17.296875,17.593750,17.156250,17.546875,11.843316,51892800 +1998-06-10,17.453125,17.562500,17.078125,17.140625,11.569120,48955600 +1998-06-11,17.203125,17.343750,17.031250,17.140625,11.569120,43135600 +1998-06-12,17.109375,17.125000,16.484375,17.109375,11.548024,72079600 +1998-06-15,16.812500,17.187500,16.703125,16.718750,11.284373,53234000 +1998-06-16,16.937500,17.468750,16.781250,17.453125,11.780043,68256000 +1998-06-17,17.468750,17.734375,17.156250,17.312500,11.685130,69139200 +1998-06-18,17.281250,17.515625,17.062500,17.421875,11.758946,41916400 +1998-06-19,17.656250,17.660151,17.187500,17.500000,11.811673,68891600 +1998-06-22,17.468750,18.593750,17.421875,18.468750,12.465541,80072000 +1998-06-23,18.687500,18.937500,18.578125,18.812500,12.697553,75155200 +1998-06-24,18.765625,19.375000,18.316401,19.343750,13.056122,76740400 +1998-06-25,19.312500,19.406250,18.781250,18.906250,12.760834,55333600 +1998-06-26,18.890625,19.281250,18.750000,19.093750,12.887383,42892800 +1998-06-29,19.218750,19.312500,18.687500,18.953125,12.792475,44950000 +1998-06-30,18.703125,18.843750,18.375000,18.531250,12.507724,50669200 +1998-07-01,18.671875,18.843750,18.109375,18.796875,12.687010,69999600 +1998-07-02,18.640625,18.781250,18.296875,18.312500,12.360084,40194000 +1998-07-06,18.140625,18.484375,18.062500,18.371075,12.399615,35581600 +1998-07-07,18.281250,18.828125,18.140625,18.781250,12.676461,54239600 +1998-07-08,18.906250,19.578125,18.890625,19.578125,13.214316,87268000 +1998-07-09,19.390625,20.093750,19.328125,19.937500,13.456881,96395200 +1998-07-10,19.875000,20.125000,19.562500,19.937500,13.456881,57320000 +1998-07-13,19.937500,20.625000,19.875000,20.593750,13.899816,77118400 +1998-07-14,20.671875,20.843750,20.093750,20.171875,13.615064,88694000 +1998-07-15,20.277325,21.250000,20.218750,21.062500,14.216202,168073200 +1998-07-16,21.000000,21.218750,20.750000,21.062500,14.216202,67307200 +1998-07-17,20.968750,20.984375,20.609375,20.781250,14.026369,50119200 +1998-07-20,20.593750,20.765625,20.390625,20.437500,13.794353,37541600 +1998-07-21,20.343750,21.203125,20.296875,20.406250,13.773266,79948000 +1998-07-22,20.156250,20.750000,20.156250,20.593750,13.899816,65818400 +1998-07-23,20.421875,21.234375,20.359375,20.640625,13.931452,85404000 +1998-07-24,20.687500,21.000000,20.406250,20.765625,14.015827,58984800 +1998-07-27,20.562500,21.531250,20.437500,21.515625,14.522040,84463600 +1998-07-28,21.703125,22.062500,21.375000,21.406250,14.448219,118007600 +1998-07-29,21.593750,21.703125,21.109375,21.156250,14.279479,57039600 +1998-07-30,21.421875,21.937500,21.250000,21.906250,14.785688,58014400 +1998-07-31,21.828125,21.968750,21.062500,21.109375,14.247840,48032800 +1998-08-03,20.906250,21.531250,20.781250,21.203125,14.311117,55863600 +1998-08-04,21.343750,21.500000,20.406250,20.484375,13.825995,77434000 +1998-08-05,20.515625,21.144526,20.281250,21.031250,14.200307,91450400 +1998-08-06,20.750000,21.890625,20.750000,21.750000,14.685614,94552800 +1998-08-07,21.968750,22.234375,21.593750,21.671875,14.632856,81810000 +1998-08-10,21.562500,21.937500,21.421875,21.656250,14.622299,49170800 +1998-08-11,21.062500,21.343750,20.953125,21.140625,14.274155,72920000 +1998-08-12,21.375000,21.500000,21.093750,21.406250,14.453506,55206000 +1998-08-13,21.468750,21.750000,21.125000,21.312500,14.390207,65314000 +1998-08-14,21.484375,21.687500,21.390625,21.546875,14.548458,62301600 +1998-08-17,21.437500,22.437500,21.437500,22.390625,15.118152,95816400 +1998-08-18,22.359375,23.156250,22.343750,22.859375,15.434660,119604800 +1998-08-19,22.984375,23.062500,22.312500,22.390625,15.118152,67748800 +1998-08-20,21.750000,22.062500,21.343750,21.500000,14.516811,134286800 +1998-08-21,21.140625,21.421875,20.593750,21.234375,14.337460,116136000 +1998-08-24,21.296875,21.621075,20.867174,21.156250,14.284714,84328800 +1998-08-25,21.375000,21.468750,20.921875,21.105450,14.250410,52442400 +1998-08-26,20.671875,21.125000,20.546875,20.750000,14.010410,52515200 +1998-08-27,20.343750,20.515625,19.187500,19.937500,13.461810,133454800 +1998-08-28,19.593750,20.140625,18.937500,19.250000,12.997607,94445200 +1998-08-31,19.218750,19.359375,17.734375,17.796875,12.016449,104269200 +1998-09-01,17.734375,19.187500,17.437500,19.000000,12.828801,109021200 +1998-09-02,19.078125,19.484375,18.515625,18.718750,12.638909,84881200 +1998-09-03,18.765625,19.687500,18.640625,19.187500,12.955409,107758800 +1998-09-04,19.421875,19.718750,19.031250,19.562500,13.208601,64649200 +1998-09-08,20.296875,20.500000,19.843750,20.476549,13.825776,83092800 +1998-09-09,20.703125,21.156250,20.281250,20.312500,13.715005,94456000 +1998-09-10,19.937500,20.156250,19.359375,19.765625,13.345757,76448800 +1998-09-11,20.812500,21.265625,20.500000,21.234375,14.337460,150086000 +1998-09-14,21.187500,21.640625,21.140625,21.453125,14.485165,67960000 +1998-09-15,21.250000,21.531250,21.140625,21.484375,14.506253,47313200 +1998-09-16,21.515625,21.703125,20.921875,21.265625,14.358552,45172000 +1998-09-17,20.718750,21.062500,20.593750,20.750000,14.010410,56430800 +1998-09-18,20.796875,20.875000,20.500000,20.750000,14.010410,50604800 +1998-09-21,20.312500,21.156250,20.156250,21.156250,14.284714,39437600 +1998-09-22,21.265625,21.312500,20.843750,20.890625,14.105354,40890800 +1998-09-23,21.031250,21.765625,20.968750,21.765625,14.696158,67808400 +1998-09-24,21.687500,22.031250,21.093750,21.328125,14.400756,62723200 +1998-09-25,21.156250,22.187500,21.000000,22.078125,14.907158,69451200 +1998-09-28,22.109375,22.250000,21.546875,21.750000,14.685614,60137200 +1998-09-29,21.843750,22.156250,21.687500,22.125000,14.938813,52740000 +1998-09-30,21.828125,22.000000,21.406250,21.437500,14.474606,45350000 +1998-10-01,21.062500,21.359375,20.515625,20.859375,14.084257,61390000 +1998-10-02,20.703125,21.250000,20.312500,20.968750,14.158104,59275600 +1998-10-05,20.640625,20.921875,19.453125,20.140625,13.598953,78511200 +1998-10-06,20.640625,20.812500,19.640625,19.906250,13.440705,82609600 +1998-10-07,19.718750,20.281250,19.625000,19.765625,13.345757,82892800 +1998-10-08,19.203125,20.093750,18.953125,19.609375,13.240251,120596800 +1998-10-09,19.921875,21.062500,19.843750,20.953125,14.147558,87274400 +1998-10-12,21.218750,21.468750,21.062500,21.359375,14.421850,62548400 +1998-10-13,21.125000,21.359375,20.484375,20.890625,14.105354,100670000 +1998-10-14,20.687500,21.062500,20.531250,20.640625,13.936556,110875600 +1998-10-15,20.578125,21.312500,20.375000,21.140625,14.274155,73935600 +1998-10-16,21.296875,21.375000,20.890625,20.937500,14.137004,76712800 +1998-10-19,20.781250,21.281250,20.656250,21.250000,14.348006,59394800 +1998-10-20,21.437500,21.812500,21.125000,21.140625,14.274155,83388000 +1998-10-21,21.296875,21.781250,21.156250,21.765625,14.696158,57402000 +1998-10-22,21.546875,21.968750,21.390625,21.843750,14.748909,48283600 +1998-10-23,21.640625,22.234375,21.593750,21.812500,14.727804,56905200 +1998-10-26,21.765625,22.265625,21.625000,22.234375,15.012656,49700400 +1998-10-27,22.359375,22.437500,21.812500,21.828125,14.738363,52743200 +1998-10-28,21.703125,22.375000,21.687500,22.304674,15.060122,48941600 +1998-10-29,22.156250,22.656250,22.140625,22.437500,15.149809,73024000 +1998-10-30,22.500000,22.703125,22.281250,22.296875,15.054856,47807600 +1998-11-02,22.437500,23.000000,22.390625,22.953125,15.497951,52581200 +1998-11-03,22.796875,22.953125,22.421875,22.609375,15.265855,51115600 +1998-11-04,22.906250,23.750000,22.765625,23.703125,16.011438,109783600 +1998-11-05,23.500000,23.625000,23.312500,23.500000,15.874228,58649600 +1998-11-06,23.453125,23.968750,23.390625,23.859375,16.116982,65113200 +1998-11-09,23.718750,24.015625,23.359375,24.000000,16.211969,47542000 +1998-11-10,24.093750,24.875000,23.921875,24.390625,16.475847,85904400 +1998-11-11,25.437500,26.093750,25.406250,25.921875,17.510199,126148400 +1998-11-12,25.656250,26.265625,25.343750,25.671875,17.341326,72308800 +1998-11-13,25.343750,26.218750,25.343750,25.937500,17.520746,59891600 +1998-11-16,26.296875,26.750000,26.265625,26.718750,18.048491,49532000 +1998-11-17,26.562500,27.500000,26.406250,27.125000,18.322912,58458400 +1998-11-18,27.093750,27.718750,27.062500,27.468750,18.555117,51899200 +1998-11-19,27.703125,28.796875,27.687500,28.218750,19.061737,94157600 +1998-11-20,28.468750,28.531250,27.765625,28.015625,18.924526,67536400 +1998-11-23,27.968750,28.968750,27.640625,28.390625,19.177839,57492000 +1998-11-24,28.125000,28.562500,27.593750,27.609375,18.650105,46309600 +1998-11-25,27.750000,28.031250,26.937500,27.437500,18.534002,58885200 +1998-11-27,27.328125,27.562500,27.250000,27.500000,18.576227,17278400 +1998-11-30,27.671875,28.058575,26.875000,26.906250,18.175154,63109600 +1998-12-01,26.453125,28.750000,26.421875,28.750000,19.420593,76924400 +1998-12-02,28.484375,28.750000,27.843750,28.390625,19.177839,64597200 +1998-12-03,28.390625,29.281250,27.218750,27.375000,18.491787,78229200 +1998-12-04,28.312500,29.078125,28.281250,29.078125,19.642248,70552400 +1998-12-07,29.156250,29.875000,29.093750,29.734375,20.085541,51056000 +1998-12-08,30.062500,31.000000,29.796875,30.015625,20.275524,99456000 +1998-12-09,30.312500,30.375000,29.578125,29.796875,20.127762,50258800 +1998-12-10,29.640625,30.031250,28.562500,28.656250,19.357267,61700800 +1998-12-11,28.625000,29.312500,28.375000,29.109375,19.663349,54904800 +1998-12-14,28.625000,28.875000,27.796875,27.890625,18.840092,61902800 +1998-12-15,28.218750,29.058575,28.000000,28.984375,19.578922,70154000 +1998-12-16,29.125000,29.250000,28.343750,28.531250,19.272829,44630800 +1998-12-17,28.718750,29.359375,28.687500,29.218750,19.737236,39876800 +1998-12-18,29.953125,30.140625,29.718750,30.000000,20.264967,63221600 +1998-12-21,30.125000,31.000000,29.984375,30.671875,20.718821,38856400 +1998-12-22,30.593750,30.687500,29.562500,29.765625,20.106651,46193200 +1998-12-23,31.250000,31.250000,30.343750,31.250000,21.109346,79884400 +1998-12-24,31.203125,31.546875,30.890625,31.250000,21.109346,17430800 +1998-12-28,31.421875,31.421875,30.500000,30.531250,20.623827,27864400 +1998-12-29,30.531250,31.000000,30.093750,30.265625,20.444399,40452000 +1998-12-30,30.125000,30.734375,29.765625,29.796875,20.127762,41480400 +1998-12-31,29.937500,30.156250,29.562500,29.640625,20.022209,29049600 +1999-01-04,29.984375,30.781250,29.921875,30.203125,20.402184,65404800 +1999-01-05,30.125000,31.281250,30.000000,30.812500,20.813818,65518800 +1999-01-06,31.468750,32.437500,31.062500,32.375000,21.869280,107730400 +1999-01-07,31.906250,32.750000,31.875000,32.312500,21.827061,54466400 +1999-01-08,32.781250,32.875000,32.031250,32.421875,21.900940,43911200 +1999-01-11,33.453125,35.343750,32.718750,34.937500,23.600245,105812800 +1999-01-12,35.562500,35.625000,33.625000,33.890625,22.893087,103578000 +1999-01-13,32.828125,35.531250,32.750000,34.750000,23.473587,118809200 +1999-01-14,35.000000,35.000000,33.375000,33.437500,22.587008,82390800 +1999-01-15,33.562500,34.187500,33.500000,33.843750,22.861420,63951200 +1999-01-19,34.359375,34.906250,33.750000,34.843750,23.536921,43302400 +1999-01-20,35.218750,35.921875,34.406250,34.562500,23.346943,61501200 +1999-01-21,34.250000,34.406250,33.062500,33.375000,22.544786,63926400 +1999-01-22,32.687500,33.187500,32.125000,32.218750,21.763729,87440800 +1999-01-25,32.468750,32.812500,31.640625,32.656250,22.059265,59519200 +1999-01-26,33.218750,34.250000,32.906250,34.234375,23.125284,68130000 +1999-01-27,34.156250,34.375000,33.156250,33.187500,22.418118,57336000 +1999-01-28,34.281250,34.656250,33.750000,34.296875,23.167513,83802000 +1999-01-29,34.468750,35.281250,34.093750,35.234375,23.800789,57248400 +1999-02-01,35.171875,35.171875,34.250000,34.468750,23.283611,52246000 +1999-02-02,34.500000,34.515625,33.187500,33.656250,22.734774,59669200 +1999-02-03,33.375000,34.750000,33.203125,34.671875,23.431267,57020000 +1999-02-04,34.187500,34.250000,32.500000,32.531250,21.984627,86413200 +1999-02-05,32.937500,33.125000,30.671875,31.890625,21.551687,135059600 +1999-02-08,32.468750,33.406250,31.843750,33.000000,22.301401,69630800 +1999-02-09,32.890625,33.140625,31.187500,31.328125,21.171558,80440000 +1999-02-10,31.359375,32.406250,31.015625,32.203125,21.762882,67522400 +1999-02-11,32.406250,33.390625,31.953125,33.312500,22.512590,54106800 +1999-02-12,32.812500,32.812500,31.437500,31.625000,21.372181,73194800 +1999-02-16,32.296875,32.625000,31.281250,31.593750,21.351059,59492800 +1999-02-17,30.984375,32.109375,30.906250,31.156250,21.055397,81443200 +1999-02-18,31.500000,32.468750,31.187500,32.031250,21.646727,71698800 +1999-02-19,32.093750,32.656250,31.843750,32.015625,21.636162,50430400 +1999-02-22,31.937500,33.218750,31.343750,33.203125,22.438675,60588800 +1999-02-23,33.062500,34.375000,32.875000,33.562500,22.681553,73702800 +1999-02-24,33.484375,34.218750,32.562500,32.593750,22.026861,65650400 +1999-02-25,32.250000,32.500000,31.265625,31.937500,21.583368,79470000 +1999-02-26,30.968750,31.000000,29.718750,29.984375,20.263454,167201200 +1999-03-01,29.703125,29.750000,28.671875,29.265625,19.777718,128595600 +1999-03-02,28.906250,28.953125,27.390625,27.453125,18.552826,134460000 +1999-03-03,28.218750,28.750000,27.500000,28.671875,19.376463,136544000 +1999-03-04,28.953125,29.468750,27.593750,28.343750,19.154711,105008400 +1999-03-05,29.062500,29.281250,28.062500,28.656250,19.365900,87876400 +1999-03-08,29.437500,30.011700,29.250000,29.906250,20.210648,73882400 +1999-03-09,29.796875,30.046875,28.687500,28.828125,19.482050,90112800 +1999-03-10,29.234375,29.593750,28.812500,29.218750,19.746042,80239200 +1999-03-11,29.484375,29.843750,29.031250,29.531250,19.957222,60116000 +1999-03-12,29.718750,29.968750,29.250000,29.562500,19.978348,68498000 +1999-03-15,29.718750,29.718750,29.187500,29.468750,19.914995,44557200 +1999-03-16,29.609375,30.625000,29.468750,30.093750,20.337366,84968800 +1999-03-17,30.187500,30.593750,29.906250,30.125000,20.358484,58679200 +1999-03-18,30.453125,30.750000,30.156250,30.453125,20.580229,54057600 +1999-03-19,30.984375,31.093750,29.726549,29.750000,20.105061,71022800 +1999-03-22,29.781250,29.812500,28.750000,28.781250,19.450373,49174000 +1999-03-23,28.890625,29.250000,28.437500,28.640625,19.355343,66840000 +1999-03-24,28.687500,29.859375,28.562500,29.812500,20.147297,64180000 +1999-03-25,30.046875,30.078125,29.187500,29.484375,19.925545,60403200 +1999-03-26,29.500000,30.281250,29.156250,29.171875,19.714355,53682400 +1999-03-29,29.390625,30.406250,29.031250,30.390625,20.537992,44410400 +1999-03-30,30.171875,30.750000,30.156250,30.390625,20.537992,50729200 +1999-03-31,30.468750,30.875000,29.687500,29.718750,20.083931,38569200 +1999-04-01,29.984375,30.343750,29.718750,30.218750,20.421844,32888800 +1999-04-05,30.468750,31.875000,30.437500,31.875000,21.541132,56909600 +1999-04-06,31.687500,32.796875,31.500000,32.609375,22.037418,70669200 +1999-04-07,32.859375,33.375000,32.125000,33.031250,22.322529,65404400 +1999-04-08,33.000000,33.343750,32.109375,32.765625,22.143013,54526400 +1999-04-09,33.093750,33.171875,32.515625,32.703125,22.100773,44679200 +1999-04-12,30.812500,31.234350,30.000000,30.625000,20.696386,83342600 +1999-04-13,31.468750,31.500000,29.906250,30.250000,20.442959,71036800 +1999-04-14,30.687500,30.750000,28.125000,28.500000,19.260300,104478400 +1999-04-15,29.250000,29.312500,28.250000,29.218750,19.746042,63876800 +1999-04-16,28.937500,29.187500,28.226549,28.625000,19.344776,34904400 +1999-04-19,28.562500,29.500000,27.500000,27.750000,18.753456,64349400 +1999-04-20,28.125000,28.500000,27.750000,28.281250,19.112474,39453400 +1999-04-21,28.781250,29.750000,28.062500,29.218750,19.746042,43047400 +1999-04-22,30.000000,30.812500,29.750000,30.750000,20.780851,56996800 +1999-04-23,30.968750,31.750000,30.500000,30.875000,20.865332,44717000 +1999-04-26,31.343750,32.312500,31.250000,32.218750,21.773447,37821600 +1999-04-27,32.031250,32.406250,31.031250,31.125000,21.034277,36775400 +1999-04-28,31.218750,31.687500,30.437500,30.593750,20.675262,29094000 +1999-04-29,30.750000,30.812500,29.937500,30.406250,20.548552,29336200 +1999-04-30,30.781250,31.125000,29.656250,30.593750,20.675262,28045000 +1999-05-03,30.593750,31.562500,30.468750,31.562500,21.329945,29665000 +1999-05-04,31.406250,31.968750,30.781250,30.843750,20.844217,29221200 +1999-05-05,30.843750,32.500000,30.312500,32.000000,21.636133,35256800 +1999-05-06,31.750000,31.968750,29.250000,29.843750,20.178228,58030600 +1999-05-07,30.343750,30.843750,29.812500,30.468750,20.600811,38797800 +1999-05-10,30.562500,30.906250,30.062500,30.312500,20.495159,21220200 +1999-05-11,30.593750,31.312500,30.343750,31.156250,21.065647,28584200 +1999-05-12,31.093750,31.500000,30.312500,31.250000,21.129032,23681000 +1999-05-13,31.468750,31.500000,30.000000,30.031250,20.305002,27664200 +1999-05-14,29.687500,29.812500,28.718750,29.000000,19.607742,45267200 +1999-05-17,28.781250,29.750000,28.593750,29.718750,20.093714,30004600 +1999-05-18,29.906250,29.937500,29.031250,29.468750,19.924683,32767400 +1999-05-19,29.531250,29.906250,28.875000,29.843750,20.178228,34605800 +1999-05-20,29.968750,30.062500,28.812500,28.843750,19.502094,42619000 +1999-05-21,28.859350,28.937500,28.218750,28.500000,19.269682,39350400 +1999-05-24,28.625000,28.625000,27.750000,27.968750,18.910482,35671000 +1999-05-25,28.156250,28.156250,26.375000,26.437500,17.875154,66201200 +1999-05-26,26.875000,26.875000,25.500000,25.843750,17.473711,73240000 +1999-05-27,26.125000,27.187500,25.875000,26.562500,17.959677,55010800 +1999-05-28,26.812500,27.093750,26.250000,27.031250,18.276615,34955400 +1999-06-01,26.906250,26.937500,25.062500,25.343750,17.135641,57058600 +1999-06-02,25.750000,26.179649,25.187500,25.968750,17.558222,57670600 +1999-06-03,26.250000,26.312500,25.156250,25.250000,17.072260,49020400 +1999-06-04,25.781250,26.656250,25.687500,26.593750,17.980803,50203800 +1999-06-07,26.968750,27.250000,26.562500,26.718750,18.065321,37754200 +1999-06-08,26.625000,26.937500,25.750000,25.843750,17.473711,32770200 +1999-06-09,26.312500,26.843750,26.000000,26.562500,17.959677,44114800 +1999-06-10,26.750000,27.718750,26.687500,27.687500,18.720324,61884400 +1999-06-11,28.062500,28.343750,27.125000,27.218750,18.403387,45783200 +1999-06-14,27.406250,27.750000,27.000000,27.187500,18.382254,24989400 +1999-06-15,27.375000,28.062500,27.343750,27.843750,18.825966,27586800 +1999-06-16,28.750000,29.875000,28.625000,29.843750,20.178228,61416000 +1999-06-17,28.625000,29.203100,28.437500,29.000000,19.607742,46763200 +1999-06-18,27.937500,28.062500,27.187500,27.468750,18.572416,80073000 +1999-06-21,27.875000,28.531250,27.718750,28.406250,19.206287,31147400 +1999-06-22,27.875000,28.562500,27.531250,27.843750,18.825966,32863600 +1999-06-23,27.937500,28.500000,27.750000,28.281250,19.121778,22939200 +1999-06-24,28.187500,28.218750,27.500000,27.531250,18.614676,26697400 +1999-06-25,27.750000,28.156250,27.437500,27.656250,18.699196,23760600 +1999-06-28,27.781250,28.500000,27.656250,28.500000,19.269682,23692000 +1999-06-29,28.500000,29.625000,28.343750,29.625000,20.030323,43264600 +1999-06-30,29.593750,29.937500,28.281250,29.750000,20.114836,38437200 +1999-07-01,29.875000,31.593750,29.625000,31.437500,21.255808,61648600 +1999-07-02,31.406250,32.000000,31.375000,31.750000,21.467091,37455600 +1999-07-06,32.437500,32.875000,31.843750,31.937500,21.593866,57441400 +1999-07-07,32.093750,32.406250,31.687500,32.187500,21.762905,34634200 +1999-07-08,31.906250,32.937500,31.812500,32.875000,22.227741,37003000 +1999-07-09,32.812500,33.179649,32.187500,33.125000,22.396780,35534000 +1999-07-12,33.187500,33.343750,32.500000,32.718750,22.122097,41699000 +1999-07-13,32.437500,33.062500,32.250000,32.687500,22.100965,46768600 +1999-07-14,33.437500,34.031250,32.804649,34.000000,22.988394,89826200 +1999-07-15,34.250000,34.343750,33.625000,33.843750,22.882742,47663000 +1999-07-16,34.000000,34.062500,33.500000,33.562500,22.692574,32286600 +1999-07-19,33.562500,34.000000,33.500000,33.781250,22.840475,33173000 +1999-07-20,33.593750,33.593750,32.312500,32.468750,21.953070,42724000 +1999-07-21,32.593750,33.000000,32.281250,32.781250,22.164360,28579200 +1999-07-22,32.562500,32.750000,31.875000,31.937500,21.593866,29924600 +1999-07-23,32.156250,32.500000,31.562500,32.093750,21.699514,27393200 +1999-07-26,31.437500,32.593750,31.375000,31.437500,21.255808,35694200 +1999-07-27,32.312500,34.062500,32.281250,33.781250,22.840475,77952200 +1999-07-28,33.718750,35.406250,33.500000,35.156250,23.770164,83384400 +1999-07-29,34.406250,35.507801,34.125000,34.750000,23.495491,72512000 +1999-07-30,35.062500,35.875000,34.500000,34.500000,23.326448,58118000 +1999-08-02,34.937500,36.656250,34.750000,35.656250,24.108225,77483200 +1999-08-03,36.156250,36.781250,35.250000,36.468750,24.657572,75450600 +1999-08-04,36.468750,37.156250,36.312500,36.406250,24.625456,53272800 +1999-08-05,35.968750,36.250000,34.750000,35.718750,24.160419,59293200 +1999-08-06,35.375000,36.656250,35.250000,35.781250,24.202698,42893200 +1999-08-09,35.937500,37.218750,35.312500,36.718750,24.836828,54494600 +1999-08-10,36.468750,37.218750,35.781250,35.875000,24.266119,67205200 +1999-08-11,36.968750,38.125000,36.781250,38.000000,25.703476,80989400 +1999-08-12,37.718750,38.375000,37.531250,37.968750,25.682343,48030000 +1999-08-13,38.468750,39.906250,38.468750,39.875000,26.971743,46873400 +1999-08-16,39.625000,39.718750,38.812500,39.281250,26.570122,35343600 +1999-08-17,39.656250,39.750000,38.750000,39.500000,26.718092,32726200 +1999-08-18,39.218750,39.906250,39.031250,39.250000,26.548985,32524600 +1999-08-19,38.750000,39.156250,38.406250,38.656250,26.147379,32120600 +1999-08-20,38.968750,40.031250,38.500000,39.968750,27.035151,35718000 +1999-08-23,40.250000,41.500000,39.968750,41.468750,28.049763,49839000 +1999-08-24,41.156250,42.250000,41.125000,41.562500,28.113174,61735000 +1999-08-25,41.375000,42.187500,40.687500,41.843750,28.303417,48070800 +1999-08-26,41.718750,41.937500,40.437500,40.531250,27.415638,43461800 +1999-08-27,41.187500,41.750000,40.906250,41.500000,28.070892,40881200 +1999-08-30,41.531250,42.062500,40.562500,41.125000,27.817257,34043600 +1999-08-31,41.156250,41.750000,40.156250,41.093750,27.796108,43185000 +1999-09-01,41.843750,42.562500,41.593750,41.718750,28.218870,53947000 +1999-09-02,41.125000,43.000000,41.000000,42.656250,28.853004,50979600 +1999-09-03,43.531250,44.750000,43.500000,44.656250,30.205812,48828400 +1999-09-07,44.500000,44.679649,43.625000,43.812500,29.635094,39605600 +1999-09-08,43.500000,44.312500,42.781250,42.968750,29.064365,44545800 +1999-09-09,43.156250,43.906250,42.750000,43.875000,29.677380,39662000 +1999-09-10,43.906250,43.937500,42.937500,43.687500,29.550560,32576600 +1999-09-13,43.281250,43.812500,42.031250,42.187500,28.535934,36046600 +1999-09-14,42.187500,42.937500,42.031250,42.906250,29.022100,36912800 +1999-09-15,43.312500,43.312500,41.375000,41.500000,28.070892,46949000 +1999-09-16,41.187500,41.718750,40.187500,41.312500,27.944088,56585200 +1999-09-17,41.281250,42.437500,41.093750,42.312500,28.620487,51575200 +1999-09-20,42.343750,42.812500,41.781250,42.031250,28.430244,20707200 +1999-09-21,41.875000,41.875000,40.968750,41.000000,27.732702,38608600 +1999-09-22,41.156250,41.843750,40.687500,41.406250,28.007488,42055400 +1999-09-23,41.562500,41.593750,38.250000,38.750000,26.210770,73686000 +1999-09-24,37.593750,38.062500,36.312500,37.835899,25.592474,124564000 +1999-09-27,38.343750,39.875000,37.875000,39.093750,26.443295,71235400 +1999-09-28,39.000000,39.125000,37.625000,38.750000,26.210770,50034400 +1999-09-29,38.750000,38.968750,37.437500,37.593750,25.428682,46331800 +1999-09-30,37.593750,38.125000,36.687500,37.156250,25.132769,46111600 +1999-10-01,37.125000,37.750000,36.781250,37.468750,25.344131,37753600 +1999-10-04,37.093750,38.656250,36.812500,38.500000,26.041677,41334800 +1999-10-05,38.812500,39.093750,37.500000,38.093750,25.766884,39542200 +1999-10-06,38.437500,39.031250,38.062500,38.468750,26.020542,36667600 +1999-10-07,38.406250,38.906250,37.343750,37.812500,25.576651,35291000 +1999-10-08,37.937500,38.406250,37.406250,37.843750,25.597794,36361800 +1999-10-11,38.093750,38.843750,38.031250,38.250000,25.872578,24459000 +1999-10-12,39.156250,39.906250,37.875000,38.343750,25.935993,88521800 +1999-10-13,36.312500,37.007801,35.687500,36.062500,24.392933,120722000 +1999-10-14,36.195301,36.750000,35.250000,36.671848,24.805103,51861200 +1999-10-15,36.062500,36.656250,35.406250,35.437500,23.970177,48653200 +1999-10-18,35.281250,35.500000,33.531250,34.687500,23.462875,58185800 +1999-10-19,34.812500,34.875000,32.500000,32.562500,22.025505,84401400 +1999-10-20,33.750000,35.000000,33.531250,34.968750,23.653112,65099000 +1999-10-21,34.218750,36.125000,33.937500,35.843750,24.244970,53021200 +1999-10-22,36.437500,37.187500,36.218750,36.718750,24.836828,61746200 +1999-10-25,36.500000,36.562500,35.406250,35.625000,24.097012,35013800 +1999-10-26,37.125000,37.312500,35.625000,35.718750,24.160419,56708600 +1999-10-27,35.343750,35.375000,33.968750,34.718750,23.484011,72186600 +1999-10-28,35.562500,36.125000,35.062500,36.093750,24.414066,73409000 +1999-10-29,37.968750,39.031250,37.843750,38.718750,26.189650,84593000 +1999-11-01,38.812500,39.156250,37.968750,38.000000,25.703476,45868200 +1999-11-02,38.531250,39.093750,38.281250,38.750000,26.210770,40676400 +1999-11-03,39.187500,40.343750,38.875000,39.875000,26.982183,50480200 +1999-11-04,40.218750,40.875000,40.093750,40.781250,27.595421,43687000 +1999-11-05,41.187500,41.937500,40.906250,41.187500,27.870308,39674400 +1999-11-08,40.781250,41.562500,40.375000,41.062500,27.785730,26942400 +1999-11-09,41.125000,41.125000,39.687500,40.031250,27.087914,33702800 +1999-11-10,39.500000,40.750000,39.125000,39.500000,26.728436,34175200 +1999-11-11,39.906250,40.218750,39.062500,39.718750,26.876450,32186200 +1999-11-12,39.562500,39.687500,37.250000,38.093750,25.776861,87515200 +1999-11-15,38.093750,38.117149,37.000000,37.031250,25.057903,39333800 +1999-11-16,37.250000,38.500000,36.812500,38.281250,25.903734,55737400 +1999-11-17,38.531250,39.375000,37.250000,37.375000,25.290508,47086400 +1999-11-18,37.843750,39.250000,37.820301,39.250000,26.559259,37706400 +1999-11-19,39.000000,40.187500,38.875000,39.937500,27.024477,46497200 +1999-11-22,40.437500,40.687500,39.437500,40.250000,27.235931,36870800 +1999-11-23,40.328098,40.750000,39.000000,39.500000,26.728436,41043600 +1999-11-24,39.968750,41.125000,39.562500,41.093750,27.806879,33626800 +1999-11-26,41.000000,41.125000,40.093750,40.125000,27.151342,14182200 +1999-11-29,40.125000,40.156250,39.125000,39.468750,26.707294,32651200 +1999-11-30,39.218750,39.843750,38.281250,38.343750,25.946039,34865800 +1999-12-01,38.031250,38.781250,37.500000,38.156250,25.819159,45556600 +1999-12-02,37.812500,39.062500,37.750000,38.781250,26.242064,31118400 +1999-12-03,39.500000,40.000000,39.250000,39.343750,26.622709,36542200 +1999-12-06,39.406250,39.687500,38.593750,38.937500,26.347807,28640000 +1999-12-07,39.125000,39.218750,38.156250,38.593750,26.115204,33654200 +1999-12-08,38.218750,38.750000,37.000000,37.250000,25.205935,52680200 +1999-12-09,37.812500,37.812500,36.062500,36.625000,24.783014,53826600 +1999-12-10,36.750000,37.000000,35.812500,36.125000,24.444675,56234800 +1999-12-13,35.625000,37.593750,35.281250,37.031250,25.057903,47804800 +1999-12-14,37.312500,37.500000,36.187500,36.218750,24.508104,41743400 +1999-12-15,36.101551,39.617149,36.062500,39.468750,26.707294,82046800 +1999-12-16,39.875000,40.562500,39.687500,40.125000,27.151342,50160200 +1999-12-17,40.687500,41.500000,40.250000,41.031250,27.764578,69469600 +1999-12-20,41.437500,41.593750,39.562500,40.531250,27.426231,36251400 +1999-12-21,40.281250,41.625000,40.000000,41.437500,28.039471,34670400 +1999-12-22,41.531250,41.812500,40.812500,41.250000,27.912615,24926600 +1999-12-23,41.687500,41.968750,41.250000,41.562500,28.124069,21641600 +1999-12-27,41.718750,42.562500,41.312500,42.531250,28.779593,28611000 +1999-12-28,42.218750,42.750000,41.437500,41.500000,28.081764,23457400 +1999-12-29,41.312500,42.437500,41.218750,41.937500,28.377817,16024200 +1999-12-30,42.156250,42.687500,41.375000,41.843750,28.314379,14885400 +1999-12-31,41.906250,41.937500,40.968750,41.156250,27.849173,11572000 +2000-01-03,41.632801,43.687500,41.625000,43.500000,29.435108,57710200 +2000-01-04,42.718750,43.937500,41.125000,41.468750,28.060617,51019600 +2000-01-05,41.500000,42.937500,40.250000,41.812500,28.293238,52389000 +2000-01-06,40.875000,41.687500,39.093750,39.375000,26.643850,55171200 +2000-01-07,38.750000,41.000000,38.687500,41.000000,27.743425,41096400 +2000-01-10,42.875000,43.625000,42.062500,42.875000,29.012192,53619800 +2000-01-11,44.281250,46.187500,44.140598,44.843750,30.344387,105481800 +2000-01-12,45.437500,47.375000,44.625000,45.625000,30.873014,97326600 +2000-01-13,46.343750,46.500000,44.656250,45.531250,30.809589,76104200 +2000-01-14,49.250000,53.312500,49.125000,51.531250,34.869617,184405200 +2000-01-18,50.148399,52.875000,50.125000,51.062500,34.552433,102100600 +2000-01-19,50.500000,51.062500,49.937500,50.031250,33.854595,45568000 +2000-01-20,49.875000,50.406250,47.718750,47.812500,32.353249,70002000 +2000-01-21,48.000000,49.125000,47.812500,48.968750,33.135635,55558200 +2000-01-24,51.117149,52.437500,49.125000,49.406250,33.431690,74832600 +2000-01-25,49.687500,50.906250,48.718750,50.781250,34.362110,51382600 +2000-01-26,50.375000,50.593750,48.187500,48.250000,32.649288,49306200 +2000-01-27,49.687500,50.562500,47.750000,49.062500,33.199085,61482000 +2000-01-28,48.625000,49.375000,46.531250,47.000000,31.803452,53922800 +2000-01-31,46.812500,49.531250,46.437500,49.468750,33.473991,68453200 +2000-02-01,49.187500,50.750000,48.312500,50.718750,34.319809,48051400 +2000-02-02,50.500000,51.468750,49.843750,50.031250,33.854595,52080600 +2000-02-03,50.843750,52.312500,50.375000,52.093750,35.260803,56126000 +2000-02-04,52.187500,54.125000,52.125000,52.375000,35.451172,55953800 +2000-02-07,52.468750,54.062500,52.062500,53.968750,36.529934,42810000 +2000-02-08,54.406250,55.031250,54.000000,54.406250,36.826073,38026000 +2000-02-09,54.062500,54.437500,52.250000,52.312500,35.408875,38615200 +2000-02-10,52.187500,54.062500,51.593750,53.812500,36.424175,43539200 +2000-02-11,53.625000,54.375000,52.625000,52.937500,35.831921,37756000 +2000-02-14,53.156250,54.968750,52.820301,54.937500,37.185654,34374200 +2000-02-15,54.968750,56.437500,52.625000,56.000000,37.904823,62771400 +2000-02-16,55.687500,56.437500,53.500000,53.593750,36.276112,46050000 +2000-02-17,54.437500,56.187500,53.937500,55.000000,37.227966,48669600 +2000-02-18,55.000000,55.250000,52.593750,52.687500,35.662701,50370000 +2000-02-22,52.437500,53.406250,50.781250,53.375000,36.128056,45793600 +2000-02-23,52.656250,55.562500,52.156250,54.531250,36.910675,40842000 +2000-02-24,56.218750,58.250000,55.125000,57.125000,38.666321,85347800 +2000-02-25,56.937500,57.687500,56.406250,56.625000,38.327888,46299000 +2000-02-28,55.812500,57.281250,54.125000,56.187500,38.031746,47422200 +2000-02-29,56.593750,57.812500,55.656250,56.500000,38.243267,44414200 +2000-03-01,56.437500,58.437500,56.250000,57.937500,39.216274,40813000 +2000-03-02,57.687500,58.531250,57.062500,57.875000,39.173965,36469800 +2000-03-03,58.500000,59.875000,57.812500,59.625000,40.358513,34285000 +2000-03-06,59.000000,59.437500,58.343750,58.687500,39.723934,28032000 +2000-03-07,58.906250,60.000000,57.593750,57.875000,39.173965,39924200 +2000-03-08,58.062500,58.218750,56.125000,57.468750,38.898994,46391200 +2000-03-09,56.843750,59.250000,56.000000,59.187500,40.062366,38375800 +2000-03-10,58.937500,60.312500,58.687500,60.093750,40.675793,43497600 +2000-03-13,59.406250,62.750000,59.375000,61.062500,41.331516,67439200 +2000-03-14,62.125000,62.812500,58.906250,58.937500,39.893147,56785000 +2000-03-15,59.531250,61.562500,59.343750,60.093750,40.675793,48895600 +2000-03-16,61.625000,62.687500,59.812500,62.531250,42.325668,54972800 +2000-03-17,62.156250,65.000000,62.000000,64.937500,43.954376,60851000 +2000-03-20,64.968750,68.687500,64.968750,67.500000,45.688873,65163600 +2000-03-21,67.500000,69.437500,67.062500,69.218750,46.852245,51231000 +2000-03-22,70.187500,72.687500,69.750000,72.031250,48.755955,53693200 +2000-03-23,71.187500,71.843750,69.718750,71.312500,48.269432,45593800 +2000-03-24,70.062500,72.250000,68.812500,69.531250,47.063766,46898000 +2000-03-27,69.812500,71.875000,69.531250,71.343750,48.290585,35766200 +2000-03-28,70.312500,71.281250,67.562500,67.843750,45.921551,44857800 +2000-03-29,68.250000,68.843750,65.750000,65.937500,44.631271,61325400 +2000-03-30,64.875000,66.687500,61.531250,63.500000,42.981380,71646800 +2000-03-31,64.812500,67.437500,64.125000,65.968750,44.652397,58442200 +2000-04-03,65.687500,66.500000,62.875000,65.312500,44.208210,50071600 +2000-04-04,65.750000,67.000000,59.500000,66.375000,44.927383,87341800 +2000-04-05,64.937500,67.000000,63.875000,64.937500,43.954376,62101800 +2000-04-06,64.625000,65.812500,63.500000,64.906250,43.933228,55134000 +2000-04-07,65.687500,68.500000,65.656250,68.406250,46.302284,51357200 +2000-04-10,68.750000,69.531250,65.437500,65.562500,44.377434,44849000 +2000-04-11,65.000000,67.125000,63.742149,65.375000,44.250519,53071200 +2000-04-12,64.968750,65.937500,60.875000,60.937500,41.246906,60169600 +2000-04-13,61.687500,64.625000,60.375000,60.562500,40.993076,69414600 +2000-04-14,59.593750,60.375000,54.187500,55.250000,37.397163,92800400 +2000-04-17,55.000000,61.625000,54.781250,61.500000,41.627644,88873400 +2000-04-18,63.312500,65.500000,62.625000,64.500000,43.658253,98558000 +2000-04-19,62.804649,62.875000,59.468750,59.531250,40.295036,87377800 +2000-04-20,58.968750,59.687500,57.500000,57.687500,39.047062,45799000 +2000-04-24,55.500000,58.250000,55.187500,58.062500,39.300896,58320200 +2000-04-25,59.867149,62.625000,59.750000,62.500000,42.304512,51342400 +2000-04-26,62.125000,62.500000,60.312500,60.406250,40.887306,47572000 +2000-04-27,58.781250,63.281250,58.500000,62.656250,42.410278,61088400 +2000-04-28,64.000000,64.531250,62.937500,63.406250,42.917931,44336400 +2000-05-01,63.968750,65.500000,63.125000,63.562500,43.023682,42389800 +2000-05-02,62.937500,63.812500,60.437500,60.593750,41.014229,43871400 +2000-05-03,60.062500,60.312500,57.937500,59.531250,40.305023,58988600 +2000-05-04,59.375000,60.312500,58.531250,59.781250,40.474285,40984800 +2000-05-05,59.500000,61.937500,59.500000,61.687500,41.764881,34217400 +2000-05-08,61.125000,61.343750,58.750000,58.812500,39.818405,40937800 +2000-05-09,59.187500,59.625000,57.500000,58.468750,39.585670,43054000 +2000-05-10,57.250000,58.250000,52.562500,53.031250,35.904263,97225600 +2000-05-11,53.562500,58.000000,53.187500,57.781250,39.120205,70267600 +2000-05-12,58.312500,59.750000,57.375000,57.500000,38.929775,38429400 +2000-05-15,57.281250,59.125000,56.375000,59.062500,39.987652,41105400 +2000-05-16,59.875000,61.437500,59.343750,60.937500,41.257107,44468400 +2000-05-17,61.187500,62.718750,60.187500,61.593750,41.701420,65543200 +2000-05-18,61.937500,63.250000,61.562500,61.968750,41.955292,50141400 +2000-05-19,60.937500,61.812500,58.156250,58.937500,39.903030,71968000 +2000-05-22,58.750000,59.281250,55.687500,59.187500,40.072289,59249600 +2000-05-23,58.875000,59.937500,54.906250,54.937500,37.194862,50385800 +2000-05-24,54.812500,59.085899,54.750000,58.687500,39.733776,75482200 +2000-05-25,59.343750,61.125000,56.781250,57.593750,38.993252,50488800 +2000-05-26,57.500000,59.937500,57.187500,58.781250,39.797237,30851000 +2000-05-30,59.625000,62.937500,59.562500,62.875000,42.568874,41768000 +2000-05-31,63.125000,63.968750,62.250000,62.343750,42.209209,54089600 +2000-06-01,63.093750,65.000000,63.062500,64.843750,43.901779,45978400 +2000-06-02,66.406250,67.281250,66.000000,67.093750,45.425148,42657400 +2000-06-05,66.312500,67.500000,65.593750,66.281250,44.875034,39176000 +2000-06-06,65.656250,67.531250,64.750000,64.781250,43.859489,47425200 +2000-06-07,64.625000,64.687500,62.843750,64.468750,43.647907,39753400 +2000-06-08,64.812500,65.750000,63.000000,63.093750,42.716984,34394000 +2000-06-09,63.968750,64.000000,62.750000,63.531250,43.013176,27519200 +2000-06-12,63.906250,64.000000,62.312500,62.531250,42.336147,25947000 +2000-06-13,62.250000,65.929649,62.062500,65.750000,44.515358,39126600 +2000-06-14,65.437500,65.656250,63.000000,63.218750,42.801613,37008800 +2000-06-15,63.367149,65.031250,63.250000,64.125000,43.415180,33411000 +2000-06-16,64.625000,64.843750,62.937500,63.031250,42.674664,44086200 +2000-06-19,64.218750,68.343750,64.187500,68.250000,46.207973,61221200 +2000-06-20,67.968750,70.125000,67.968750,69.156250,46.821522,58579400 +2000-06-21,68.187500,69.625000,68.000000,69.500000,47.054260,32891400 +2000-06-22,69.000000,69.187500,67.000000,67.031250,45.382820,29696200 +2000-06-23,67.625000,68.750000,67.062500,67.187500,45.488609,30321600 +2000-06-26,67.906250,68.601547,66.312500,67.093750,45.425148,29904800 +2000-06-27,66.968750,68.250000,65.625000,65.687500,44.473057,33370400 +2000-06-28,65.968750,67.843750,65.500000,66.187500,44.811569,30631800 +2000-06-29,65.531250,67.187500,65.250000,65.875000,44.599979,47136200 +2000-06-30,65.437500,67.062500,64.812500,66.843750,45.255867,41431200 +2000-07-03,67.062500,68.437500,66.859352,68.437500,46.334896,15083800 +2000-07-05,66.562500,67.250000,65.687500,65.812500,44.557663,42005200 +2000-07-06,65.750000,68.406250,65.281250,68.312500,46.250282,44906200 +2000-07-07,68.875000,69.937500,68.062500,69.656250,47.160046,37286800 +2000-07-10,68.875000,70.000000,68.500000,68.906250,46.652267,31349400 +2000-07-11,69.125000,70.625000,68.562500,69.406250,46.990772,42782000 +2000-07-12,70.125000,71.125000,69.375000,70.593750,47.794781,29824200 +2000-07-13,70.187500,72.500000,70.125000,71.593750,48.471817,45176000 +2000-07-14,72.000000,73.531250,71.531250,73.343750,49.656631,37471800 +2000-07-17,73.312500,73.750000,72.187500,73.156250,49.529694,46580000 +2000-07-18,72.406250,72.414047,70.718750,71.500000,48.408340,50683600 +2000-07-19,72.468750,73.062500,69.000000,69.062500,46.758045,72188400 +2000-07-20,69.468750,71.625000,68.937500,71.343750,48.302528,60488400 +2000-07-21,71.062500,71.125000,69.031250,69.093750,46.779232,32086600 +2000-07-24,69.093750,71.000000,68.812500,69.000000,46.715748,39835400 +2000-07-25,69.367149,70.968750,68.843750,70.437500,47.688988,29623200 +2000-07-26,69.500000,70.062500,68.281250,69.500000,47.054260,46639800 +2000-07-27,69.250000,70.187500,68.000000,68.500000,46.377213,39223800 +2000-07-28,69.000000,69.687500,64.375000,64.562500,43.711372,55433800 +2000-07-31,65.437500,67.562500,64.500000,66.750000,45.192398,30470700 +2000-08-01,67.062500,67.375000,64.250000,64.625000,43.753700,25001100 +2000-08-02,65.250000,66.125000,63.187500,63.312500,42.865078,33226800 +2000-08-03,61.812500,65.375000,60.437500,65.062500,44.063820,34941100 +2000-08-04,66.218697,66.250000,61.437500,62.562500,42.370678,34939700 +2000-08-07,62.625000,64.375000,61.125000,62.937500,42.624649,30634400 +2000-08-08,62.750000,63.375000,61.500000,61.625000,41.735760,24900100 +2000-08-09,62.875000,64.875000,62.843700,63.562500,43.047935,30071900 +2000-08-10,63.187500,64.812500,62.000000,62.000000,41.989719,16678400 +2000-08-11,61.875000,64.125000,60.812500,63.812500,43.217247,22509600 +2000-08-14,64.437500,67.000000,63.625000,66.937500,45.333664,25665000 +2000-08-15,66.812500,68.750000,66.000000,67.875000,45.968586,34464300 +2000-08-16,68.625000,69.500000,67.562500,68.062500,46.095577,24609500 +2000-08-17,68.500000,71.500000,68.437500,70.062500,47.450073,40495900 +2000-08-18,71.000000,72.937500,70.250000,70.562500,47.788723,35795600 +2000-08-21,72.671799,74.062500,70.562500,72.062500,48.804600,46024300 +2000-08-22,72.468697,73.625000,72.125000,72.125000,48.846924,31693500 +2000-08-23,71.437500,74.875000,70.687500,74.625000,50.540066,36177000 +2000-08-24,74.562500,75.828102,73.000000,74.250000,50.286076,23352900 +2000-08-25,73.875000,74.437500,72.625000,72.937500,49.397205,20844200 +2000-08-28,73.250000,75.812500,73.000000,73.875000,50.032124,42760500 +2000-08-29,73.312500,74.937500,73.125000,74.062500,50.159107,23023100 +2000-08-30,73.750000,74.375000,72.750000,73.500000,49.778133,21770400 +2000-08-31,73.875000,75.625000,73.625000,74.875000,50.709381,28530700 +2000-09-01,75.625000,75.687500,73.437500,73.937500,50.074432,18322000 +2000-09-05,71.062500,71.375000,68.250000,69.250000,46.899815,58396000 +2000-09-06,68.062500,68.500000,65.000000,65.703102,44.497677,62344900 +2000-09-07,66.609299,68.687500,66.250000,67.437500,45.672295,34716000 +2000-09-08,67.187500,67.437500,64.937500,65.375000,44.275471,29681800 +2000-09-11,65.562500,66.875000,63.937500,64.687500,43.809834,30507800 +2000-09-12,65.062500,66.937500,64.562500,64.937500,43.979153,28997300 +2000-09-13,61.687500,63.312500,60.500000,61.250000,41.481796,70068400 +2000-09-14,62.500000,62.875000,59.250000,59.625000,40.381245,50489200 +2000-09-15,59.687500,59.875000,56.625000,57.515598,38.952648,75675900 +2000-09-18,58.375000,59.250000,55.500000,55.812500,37.799221,50767100 +2000-09-19,57.187500,60.500000,56.812500,60.375000,40.889191,58855100 +2000-09-20,61.250000,63.500000,60.437500,63.062500,42.709316,70335900 +2000-09-21,62.062500,62.937500,60.375000,61.484299,41.640465,57112300 +2000-09-22,46.750000,49.500000,46.500000,47.937500,32.465855,308734400 +2000-09-25,50.062500,50.203098,44.750000,45.375000,30.730387,130214700 +2000-09-26,46.437500,46.500000,42.812500,43.312500,29.333551,112681600 +2000-09-27,44.625000,45.687500,43.437500,43.875000,29.714499,80365100 +2000-09-28,44.125000,44.562500,43.484299,44.437500,30.095449,66739000 +2000-09-29,43.812500,43.875000,41.375000,41.562500,28.148359,72985600 +2000-10-02,42.937500,42.937500,39.875000,40.125000,27.174809,66785700 +2000-10-03,41.765598,42.500000,40.125000,40.312500,27.301788,81206500 +2000-10-04,41.000000,42.750000,40.750000,42.000000,28.444664,63726000 +2000-10-05,42.125000,42.375000,40.500000,41.000000,27.767391,52072400 +2000-10-06,41.375000,42.250000,39.250000,39.937500,27.047812,69734600 +2000-10-09,40.437500,40.531200,38.000000,39.062500,26.455227,56544700 +2000-10-10,39.187500,40.187500,37.437500,37.562500,25.439342,68882800 +2000-10-11,37.000000,38.125000,35.000000,35.375000,23.957842,122056600 +2000-10-12,37.125000,38.500000,35.000000,37.125000,25.143038,100212800 +2000-10-13,37.109299,40.750000,36.937500,40.375000,27.344120,80908800 +2000-10-16,39.125000,39.187500,35.375000,35.687500,24.169481,92057900 +2000-10-17,36.375000,36.625000,35.000000,36.187500,24.508114,78642100 +2000-10-18,36.250000,39.812500,35.250000,38.187500,25.862621,16790000 +2000-10-19,42.015598,42.312500,40.875000,41.937500,28.402327,64250700 +2000-10-20,41.625000,44.375000,41.375000,43.062500,29.164242,59899600 +2000-10-23,43.687500,45.000000,42.375000,43.312500,29.333551,43746200 +2000-10-24,43.625000,44.500000,41.625000,42.000000,28.444664,46937000 +2000-10-25,42.000000,43.562500,41.140598,41.312500,27.979044,53225900 +2000-10-26,42.000000,45.000000,41.687500,44.687500,30.264778,50811900 +2000-10-27,45.875000,47.000000,44.843700,46.375000,31.407635,50197800 +2000-10-30,45.953098,46.125000,43.875000,45.000000,30.476414,49111200 +2000-10-31,45.687500,46.937500,44.687500,45.000000,30.476414,55793900 +2000-11-01,44.312500,46.562500,44.187500,44.875000,30.391762,47654600 +2000-11-02,46.500000,47.875000,46.375000,46.687500,31.619282,65511800 +2000-11-03,47.125000,47.250000,45.500000,45.937500,31.124666,31103600 +2000-11-06,46.625000,47.375000,46.375000,46.562500,31.548124,24583500 +2000-11-07,46.750000,46.812500,45.312500,46.187500,31.294060,21043200 +2000-11-08,46.250000,46.312500,42.437500,42.687500,28.922653,38074100 +2000-11-09,42.312500,42.375000,39.937500,41.375000,28.033375,48864700 +2000-11-10,38.000000,39.000000,37.000000,37.000000,25.069122,94080100 +2000-11-13,37.000000,39.750000,36.000000,38.187500,25.873711,81393300 +2000-11-14,40.500000,41.250000,39.437500,40.937500,27.736954,48677100 +2000-11-15,41.687500,42.875000,40.750000,41.500000,28.118071,41961500 +2000-11-16,41.250000,42.937500,39.765598,40.000000,27.101761,39523700 +2000-11-17,40.125000,41.750000,39.500000,41.500000,28.118071,40986100 +2000-11-20,41.000000,42.937500,40.625000,41.125000,27.863991,37495900 +2000-11-21,42.437500,43.375000,41.437500,42.625000,28.880297,36760300 +2000-11-22,42.250000,43.875000,41.062500,41.187500,27.906328,36702700 +2000-11-24,42.812500,44.000000,42.000000,43.937500,29.769587,20684000 +2000-11-27,45.437500,46.750000,43.750000,43.937500,29.769587,52923300 +2000-11-28,43.187500,44.625000,42.000000,42.031200,28.477987,49700800 +2000-11-29,42.375000,43.500000,40.937500,42.750000,28.965002,61411300 +2000-11-30,38.500000,38.937500,36.812500,38.062500,25.789005,78955300 +2000-12-01,38.500000,38.500000,33.812500,34.125000,23.121183,1155400 +2000-12-04,35.125000,35.343700,32.062500,32.937500,22.316597,82755800 +2000-12-05,34.625000,36.500000,34.000000,36.000000,24.391588,75071400 +2000-12-06,35.312500,35.312500,31.250000,31.750000,21.512024,102012000 +2000-12-07,32.437500,33.250000,31.437500,32.312500,21.893137,68263600 +2000-12-08,34.750000,34.875000,33.000000,34.000000,23.036486,88021400 +2000-12-11,35.125000,38.187500,34.312500,37.437500,25.365551,73069600 +2000-12-12,36.937500,37.921799,36.375000,36.500000,24.730335,48167200 +2000-12-13,37.750000,37.875000,35.187500,35.500000,24.052807,48719800 +2000-12-14,35.562500,36.625000,34.500000,35.125000,23.798729,33708000 +2000-12-15,34.562500,34.750000,32.312500,32.437500,21.977831,80843900 +2000-12-18,34.187500,34.500000,32.421799,33.250000,22.528332,38556100 +2000-12-19,33.750000,36.250000,33.312500,33.437500,22.655373,54732300 +2000-12-20,32.937500,34.125000,31.500000,31.937500,21.639053,63150800 +2000-12-21,32.000000,34.453098,31.625000,33.125000,22.443645,51590000 +2000-12-22,33.625000,35.000000,32.000000,32.937500,22.316597,45424100 +2000-12-26,33.125000,33.875000,32.000000,32.875000,22.274250,28436200 +2000-12-27,32.687500,33.687500,32.312500,32.562500,22.062519,33621500 +2000-12-28,32.125000,32.687500,30.062500,30.937500,20.961508,49339500 +2000-12-29,30.937500,31.437500,29.812500,30.062500,20.368666,54053600 +2001-01-02,30.687500,31.875000,30.250000,31.062500,21.046207,50342900 +2001-01-03,30.125000,34.625000,30.125000,34.234299,23.195240,78291900 +2001-01-04,34.000000,35.375000,32.687500,33.796799,22.898815,68769000 +2001-01-05,34.062500,34.625000,31.750000,32.062500,21.723749,44974700 +2001-01-08,31.500000,32.312500,30.625000,31.937500,21.639053,45070800 +2001-01-09,32.531200,32.937500,31.875000,32.250000,21.850786,40814400 +2001-01-10,31.625000,33.375000,31.125000,33.000000,22.358944,51494300 +2001-01-11,32.375000,34.250000,32.000000,33.375000,22.613029,64954600 +2001-01-12,33.562500,33.812500,31.812500,32.125000,21.766108,51374500 +2001-01-16,32.187500,32.375000,31.000000,31.375000,21.257946,60301100 +2001-01-17,33.000000,33.062500,30.125000,30.500000,20.665087,7427400 +2001-01-18,30.937500,32.312500,30.000000,32.187500,21.808437,86633300 +2001-01-19,33.375000,34.625000,32.312500,33.562500,22.740072,81348900 +2001-01-22,32.687500,33.875000,32.500000,33.375000,22.613029,45756600 +2001-01-23,33.437500,35.890598,32.750000,35.375000,23.968119,84553900 +2001-01-24,35.687500,37.062500,35.187500,36.250000,24.560966,73579100 +2001-01-25,35.812500,36.062500,34.312500,34.500000,23.375269,45890400 +2001-01-26,34.125000,36.062500,33.750000,35.875000,24.306889,48063700 +2001-01-29,35.250000,37.375000,34.750000,37.062500,25.111475,49092800 +2001-01-30,37.375000,38.187500,36.812500,37.000000,25.069122,60806400 +2001-01-31,37.312500,38.593700,36.500000,37.000000,25.069122,71894200 +2001-02-01,37.062500,37.937500,36.500000,37.812500,25.619621,50297000 +2001-02-02,37.671799,38.234299,35.500000,35.687500,24.179853,47151200 +2001-02-05,35.062500,35.312500,33.671799,34.687500,23.515478,39185100 +2001-02-06,34.562500,35.937500,34.484299,35.437500,24.023926,40329200 +2001-02-07,35.000000,36.062500,33.875000,34.937500,23.684965,53148000 +2001-02-08,35.375000,36.125000,34.562500,34.625000,23.473108,42899000 +2001-02-09,34.312500,35.562500,33.437500,33.500000,22.710442,40892100 +2001-02-12,33.687500,35.187500,33.625000,34.562500,23.430746,30482000 +2001-02-13,34.125000,35.250000,32.375000,32.437500,21.990156,41910800 +2001-02-14,32.562500,34.546799,31.937500,34.125000,23.134155,47442300 +2001-02-15,35.437500,36.500000,35.125000,35.812500,24.278141,58334500 +2001-02-16,34.750000,35.312500,33.625000,34.375000,23.303635,41543900 +2001-02-20,34.062500,34.125000,31.375000,31.437500,21.312231,52397300 +2001-02-21,31.000000,32.750000,30.500000,30.750000,20.846159,51582200 +2001-02-22,30.937500,31.562500,29.625000,30.000000,20.337719,58517400 +2001-02-23,30.375000,30.750000,28.500000,29.937500,20.295345,63558300 +2001-02-26,30.562500,30.703100,28.437500,29.500000,19.998751,60349600 +2001-02-27,29.500000,30.875000,29.000000,29.000000,19.659796,40787300 +2001-02-28,29.375000,30.187500,28.000000,28.562500,19.363194,48601400 +2001-03-01,28.250000,29.250000,27.062500,29.125000,19.744537,56268300 +2001-03-02,28.500000,31.125000,28.375000,29.312500,19.871637,54626200 +2001-03-05,29.875000,30.750000,29.500000,30.375000,20.591928,33275700 +2001-03-06,31.625000,32.875000,31.437500,31.500000,21.354603,59734200 +2001-03-07,32.750000,33.687500,31.687500,32.937500,22.329111,77832700 +2001-03-08,32.937500,33.687500,32.687500,33.250000,22.540962,64903100 +2001-03-09,30.187500,30.593700,29.000000,29.437500,19.956381,95273400 +2001-03-12,28.500000,29.375000,27.562500,27.750000,18.812389,59597600 +2001-03-13,28.250000,29.625000,27.750000,29.375000,19.914009,52027200 +2001-03-14,28.375000,29.875000,28.000000,29.062500,19.702162,57451000 +2001-03-15,29.750000,29.937500,28.437500,28.500000,19.320833,40752100 +2001-03-16,28.437500,28.812500,27.687500,27.875000,18.897129,59068600 +2001-03-19,27.500000,27.750000,25.375000,27.062500,18.346310,76656300 +2001-03-20,27.375000,27.437500,24.562500,24.625000,16.693876,64431100 +2001-03-21,24.750000,26.750000,24.625000,25.562500,17.329426,68549500 +2001-03-22,26.125000,28.812500,26.062500,28.687500,19.447939,94022700 +2001-03-23,29.687500,29.750000,27.687500,28.812500,19.532682,84795800 +2001-03-26,29.500000,29.562500,27.875000,28.312500,19.193716,64433900 +2001-03-27,28.375000,29.703100,28.062500,29.375000,19.914009,72645800 +2001-03-28,28.687500,29.312500,26.812500,26.937500,18.261574,73000000 +2001-03-29,26.875000,27.562500,25.750000,26.562500,18.007351,64852600 +2001-03-30,26.625000,26.750000,25.312500,26.312500,17.837872,47297100 +2001-04-02,26.062500,26.875000,25.062500,25.796801,17.488262,44925500 +2001-04-03,25.312500,26.375000,24.843700,25.000000,16.948097,57239500 +2001-04-04,24.687500,25.093700,22.437500,22.625000,15.338023,84555800 +2001-04-05,24.250000,25.812500,24.093700,25.625000,17.371801,67714900 +2001-04-06,25.062500,25.234301,23.000000,23.625000,16.015949,73965900 +2001-04-09,23.690001,24.200001,22.250000,23.200001,15.727832,60543900 +2001-04-10,23.480000,25.100000,23.350000,24.770000,16.792170,55847600 +2001-04-11,27.900000,28.290001,27.180000,27.520000,18.656469,91360800 +2001-04-12,27.459999,28.510000,26.309999,28.120001,19.063217,54027200 +2001-04-16,26.770000,26.799999,25.520000,26.299999,17.829397,59342200 +2001-04-17,25.250000,26.730000,25.180000,26.040001,17.653133,74191900 +2001-04-18,29.219999,32.189999,28.600000,31.280001,21.205454,49959200 +2001-04-19,30.790001,32.520000,30.450001,32.490002,22.025740,85981400 +2001-04-20,31.969999,32.570000,31.260000,32.430000,21.985067,62659300 +2001-04-23,31.070000,31.299999,29.650000,30.320000,20.554651,58508800 +2001-04-24,29.940001,31.040001,28.900000,29.139999,19.754700,50134100 +2001-04-25,29.000000,29.360001,27.500000,29.030001,19.680130,64640600 +2001-04-26,30.230000,30.360001,28.600000,28.639999,19.415743,53730100 +2001-04-27,29.600000,30.230000,29.049999,30.180000,20.459747,42007500 +2001-04-30,30.850000,31.650000,30.530001,30.910000,20.954624,41266300 +2001-05-01,30.770000,31.410000,30.120001,31.180000,21.137661,37209500 +2001-05-02,31.889999,32.500000,31.200001,31.940001,21.652885,45022200 +2001-05-03,31.139999,31.200001,30.110001,30.400000,20.621796,37080900 +2001-05-04,29.900000,31.049999,29.299999,30.879999,20.947403,35393400 +2001-05-07,31.049999,31.680000,30.340000,31.160000,21.137342,33647800 +2001-05-08,31.490000,31.799999,30.900000,31.480000,21.354416,41514400 +2001-05-09,30.990000,30.990000,29.299999,29.930000,20.302969,61622800 +2001-05-10,30.480000,30.540001,28.900000,29.010000,19.678890,49116200 +2001-05-11,29.030001,29.240000,27.790001,27.940001,18.953068,47531600 +2001-05-14,28.049999,28.150000,26.709999,27.410000,18.593534,41994500 +2001-05-15,27.620001,28.100000,26.930000,27.200001,18.451080,47310800 +2001-05-16,27.000000,28.500000,26.500000,28.360001,19.237967,59906400 +2001-05-17,28.780001,29.190001,28.000000,28.600000,19.400766,56376100 +2001-05-18,28.530001,29.139999,27.990000,28.760000,19.509308,34775000 +2001-05-21,28.370001,30.010000,28.190001,29.900000,20.282625,44417800 +2001-05-22,30.190001,30.430000,29.400000,29.530001,20.031631,39665300 +2001-05-23,29.370001,30.250000,28.559999,28.799999,19.536434,53488500 +2001-05-24,28.840000,29.400000,28.120001,29.209999,19.814560,47217900 +2001-05-25,29.440001,29.549999,28.680000,29.100000,19.739944,29592100 +2001-05-29,28.959999,29.020000,27.780001,27.850000,18.892010,37797600 +2001-05-30,27.340000,27.700001,26.400000,26.600000,18.044071,47272800 +2001-05-31,27.030001,27.580000,26.840000,27.010000,18.322197,38761100 +2001-06-01,27.260000,29.070000,27.190001,28.740000,19.495743,60601900 +2001-06-04,29.120001,29.500000,28.059999,28.500000,19.332933,37894700 +2001-06-05,28.860001,29.950001,28.850000,29.730000,20.167303,51625800 +2001-06-06,29.450001,30.690001,29.049999,29.820000,20.228354,72646300 +2001-06-07,29.709999,31.230000,29.670000,31.139999,21.123770,75686000 +2001-06-08,31.889999,31.930000,30.000000,30.670000,20.804956,68334700 +2001-06-11,30.170000,30.510000,29.420000,30.330000,20.574312,41072800 +2001-06-12,29.700001,30.209999,29.000000,30.129999,20.438644,54088900 +2001-06-13,29.879999,30.129999,29.000000,29.059999,19.712807,41032400 +2001-06-14,28.559999,29.100000,27.559999,27.610001,18.729200,41913100 +2001-06-15,27.340000,28.299999,27.110001,27.680000,18.776688,54910400 +2001-06-18,27.870001,28.540001,27.430000,27.549999,18.688505,27854300 +2001-06-19,28.530001,28.790001,26.139999,26.670000,18.091558,60427600 +2001-06-20,26.309999,27.660000,26.260000,27.490000,18.647802,43070200 +2001-06-21,27.350000,28.090000,26.950001,27.270000,18.498568,45895500 +2001-06-22,27.469999,28.299999,27.270000,27.510000,18.661367,30366800 +2001-06-25,28.000000,28.690001,27.469999,28.580000,19.387201,28358600 +2001-06-26,28.090000,29.070000,28.030001,28.969999,19.651770,34780200 +2001-06-27,29.000000,29.209999,28.340000,28.650000,19.434689,33729600 +2001-06-28,29.230000,30.500000,29.200001,29.639999,20.106245,54522800 +2001-06-29,29.809999,30.770000,28.750000,29.250000,19.841700,49436600 +2001-07-02,29.580000,30.540001,29.160000,30.059999,20.391157,38578300 +2001-07-03,29.940001,30.690001,29.650000,30.459999,20.662495,22120800 +2001-07-05,30.080000,31.000000,29.799999,29.840000,20.241919,35630900 +2001-07-06,29.139999,29.850000,28.299999,28.430000,19.285448,37375700 +2001-07-09,28.530001,29.430000,28.110001,28.900000,19.604271,30139400 +2001-07-10,27.790001,29.170000,27.459999,27.790001,18.851311,41241500 +2001-07-11,27.650000,28.500000,27.000000,28.059999,19.034464,50333800 +2001-07-12,29.350000,30.190001,29.049999,30.100000,20.418291,49223400 +2001-07-13,30.010000,30.379999,29.250000,30.190001,20.479343,42796300 +2001-07-16,30.030001,30.750000,28.770000,29.129999,19.760290,65739200 +2001-07-17,28.570000,29.940001,28.080000,29.900000,20.282625,104487600 +2001-07-18,28.870001,30.150000,28.520000,28.889999,19.597488,71663500 +2001-07-19,29.590000,30.219999,29.430000,29.959999,20.323322,54602300 +2001-07-20,29.410000,30.030001,28.930000,29.930000,20.302969,50444200 +2001-07-23,29.969999,30.230000,28.910000,29.000000,19.672104,35057400 +2001-07-24,28.709999,29.590000,28.430000,28.879999,19.590700,38032700 +2001-07-25,28.969999,29.480000,28.190001,29.420000,19.957012,35538100 +2001-07-26,29.100000,29.900000,28.799999,29.780001,20.201220,46221000 +2001-07-27,29.610001,29.850000,29.010000,29.219999,19.821341,35482900 +2001-07-30,29.510000,29.740000,28.799999,29.040001,19.699240,30514600 +2001-07-31,29.160000,30.420000,29.030001,29.809999,20.221569,50354000 +2001-08-01,30.620001,30.980000,30.280001,30.750000,20.859217,45023900 +2001-08-02,31.410000,32.230000,31.330000,32.110001,21.781778,74140400 +2001-08-03,32.049999,32.080002,31.250000,31.680000,21.503475,35671500 +2001-08-06,30.430000,30.680000,30.040001,30.280001,20.553205,54176800 +2001-08-07,29.950001,31.000000,29.770000,30.620001,20.783981,44101300 +2001-08-08,30.389999,31.190001,29.389999,29.610001,20.098417,49096000 +2001-08-09,29.500000,30.030001,29.180000,29.650000,20.125572,35734300 +2001-08-10,29.520000,30.190001,28.990000,29.950001,20.329206,33800700 +2001-08-13,30.670000,30.719999,30.080000,30.559999,20.743252,30830500 +2001-08-14,30.709999,30.850000,30.240000,30.350000,20.600714,27561900 +2001-08-15,30.280001,30.750000,29.700001,29.780001,20.213810,33348300 +2001-08-16,29.410000,30.180000,29.080000,30.160000,20.471745,38692500 +2001-08-17,29.170000,29.379999,27.790001,28.070000,19.053112,60330900 +2001-08-20,28.070000,28.680000,27.900000,28.200001,19.141348,36548500 +2001-08-21,28.330000,28.510000,27.049999,27.070000,18.374348,35088800 +2001-08-22,27.590000,28.000000,27.000000,27.959999,18.978451,42316100 +2001-08-23,27.889999,28.370001,27.620001,27.670000,18.781603,32548500 +2001-08-24,28.049999,29.139999,27.850000,29.080000,19.738676,38858200 +2001-08-27,29.020000,29.889999,28.600000,29.150000,19.786184,27995600 +2001-08-28,29.219999,29.660000,28.430000,28.510000,19.351765,54856600 +2001-08-29,28.860001,28.920000,27.740000,28.100000,19.073475,37922200 +2001-08-30,27.500000,27.830000,26.879999,27.129999,18.415068,44788800 +2001-08-31,27.020000,28.129999,27.010000,27.959999,18.978451,38127600 +2001-09-04,27.559999,28.090000,26.850000,26.850000,18.225002,54390700 +2001-09-05,26.940001,27.690001,26.340000,27.469999,18.645849,71243200 +2001-09-06,26.760000,27.620001,25.799999,26.100000,17.715933,81642600 +2001-09-07,26.160000,26.980000,25.730000,25.889999,17.573391,72749200 +2001-09-10,25.530001,26.100000,25.459999,26.070000,17.695564,51654400 +2001-09-17,24.260000,25.000000,23.500000,23.590000,16.012217,81412400 +2001-09-18,23.879999,24.480000,23.200001,23.469999,15.930763,56115100 +2001-09-19,23.559999,23.690001,20.860001,22.280001,15.123025,86255200 +2001-09-20,21.459999,22.270000,20.500000,20.670000,14.030199,70338800 +2001-09-21,19.010000,20.750000,18.959999,19.299999,13.100286,116397800 +2001-09-24,20.000000,21.719999,19.500000,21.309999,14.464617,79136200 +2001-09-25,21.559999,21.959999,20.790001,21.680000,14.715760,65914600 +2001-09-26,21.719999,21.850000,20.719999,20.900000,14.186316,48082100 +2001-09-27,20.910000,21.360001,19.570000,20.549999,13.948749,58791700 +2001-09-28,20.740000,20.980000,20.100000,20.440001,13.874083,72640600 +2001-10-01,20.209999,20.280001,19.700001,20.010000,13.582216,44631700 +2001-10-02,20.000000,20.080000,19.370001,19.540001,13.263193,52207600 +2001-10-03,19.299999,21.650000,19.080000,21.230000,14.410321,75582600 +2001-10-04,21.730000,22.580000,21.000000,21.549999,14.627522,67181500 +2001-10-05,21.510000,22.049999,20.549999,21.959999,14.905823,49112300 +2001-10-08,21.379999,22.520000,21.270000,22.240000,15.095872,36853400 +2001-10-09,22.040001,22.230000,21.100000,21.450001,14.559644,42528700 +2001-10-10,21.430000,23.200001,21.370001,23.059999,15.652466,52538600 +2001-10-11,23.389999,24.680000,23.350000,24.510000,16.636690,76342800 +2001-10-12,24.309999,25.129999,24.230000,25.020000,16.982862,64736500 +2001-10-15,24.490000,24.520000,23.629999,24.379999,16.548449,44391600 +2001-10-16,24.530001,25.100000,24.170000,24.959999,16.942129,53540600 +2001-10-17,26.139999,26.230000,24.500000,24.570000,16.677418,91448800 +2001-10-18,24.600000,24.610001,23.700001,24.049999,16.324457,49862900 +2001-10-19,23.990000,24.559999,23.610001,24.150000,16.392326,42197000 +2001-10-22,24.120001,25.370001,23.760000,25.299999,17.172913,46022200 +2001-10-23,25.420000,26.000000,24.889999,25.000000,16.969286,41881700 +2001-10-24,25.190001,25.930000,24.920000,25.480000,17.295095,41092700 +2001-10-25,25.000000,26.219999,24.309999,26.100000,17.715933,56318500 +2001-10-26,26.010000,26.500000,25.549999,25.860001,17.553024,45505200 +2001-10-29,25.600000,25.889999,24.170000,24.180000,16.412691,46369900 +2001-10-30,23.770000,24.400000,23.240000,23.540001,15.978281,52532700 +2001-10-31,23.930000,25.290001,23.440001,24.420000,16.575590,64549300 +2001-11-01,24.530001,25.969999,24.250000,25.940001,17.607332,54534000 +2001-11-02,25.950001,26.730000,25.500000,26.299999,17.851686,49877700 +2001-11-05,26.750000,27.280001,26.650000,26.959999,18.313602,42474800 +2001-11-06,26.790001,28.280001,26.700001,28.250000,19.189878,63152300 +2001-11-07,27.910000,29.080000,27.750000,28.290001,19.217064,59713700 +2001-11-08,28.870001,29.400000,27.930000,28.280001,19.210266,64845900 +2001-11-09,28.180000,28.299999,27.600000,27.879999,18.938547,40852500 +2001-11-12,27.610001,28.770000,26.770000,28.379999,19.278191,47878400 +2001-11-13,29.059999,30.059999,28.950001,30.049999,20.412605,68022300 +2001-11-14,30.469999,31.590000,29.900000,31.320000,21.275301,78499200 +2001-11-15,30.820000,31.480000,30.459999,30.780001,20.908482,58207300 +2001-11-16,30.629999,30.950001,30.150000,30.629999,20.806587,39647000 +2001-11-19,30.809999,31.299999,29.910000,30.990000,21.051134,47857300 +2001-11-20,30.709999,30.790001,29.830000,29.950001,20.344673,41297200 +2001-11-21,29.540001,30.840000,29.480000,30.809999,20.928860,55275700 +2001-11-23,30.580000,31.250000,30.320000,31.059999,21.098680,17574100 +2001-11-26,31.430000,32.119999,31.309999,31.870001,21.648903,53246100 +2001-11-27,31.510000,32.990002,30.900000,32.310001,21.947790,80781000 +2001-11-28,31.920000,32.549999,31.610001,31.760000,21.574181,61282400 +2001-11-29,31.990000,32.419998,31.160000,32.320000,21.954586,45961000 +2001-11-30,32.230000,32.910000,31.680000,32.660000,22.185541,42399600 +2001-12-03,32.290001,32.880001,31.969999,32.040001,21.764383,43008300 +2001-12-04,32.200001,32.900002,31.840000,32.860001,22.321415,44357600 +2001-12-05,33.060001,34.849998,33.040001,34.610001,23.510153,75429600 +2001-12-06,34.500000,34.779999,33.750000,34.160000,23.204470,58338000 +2001-12-07,34.160000,34.500000,32.750000,33.240002,22.579529,59279300 +2001-12-10,32.889999,33.619999,32.849998,32.950001,22.382536,41557600 +2001-12-11,33.349998,34.139999,33.049999,33.189999,22.545559,46751600 +2001-12-12,33.290001,34.139999,33.110001,34.080002,23.150127,50047800 +2001-12-13,33.279999,33.720001,32.500000,32.570000,22.124405,51006500 +2001-12-14,32.590000,33.779999,32.270000,33.270000,22.599907,46155500 +2001-12-17,33.099998,34.090000,33.000000,33.970001,23.075413,39108700 +2001-12-18,34.150002,34.330002,33.360001,33.810001,22.966724,39780800 +2001-12-19,33.330002,33.959999,33.040001,33.049999,22.450468,39961400 +2001-12-20,32.849998,33.200001,31.959999,31.980000,21.723631,49423400 +2001-12-21,32.220001,32.740002,31.969999,32.410000,22.015728,57817500 +2001-12-24,32.160000,32.400002,32.000000,32.020000,21.750797,8673800 +2001-12-26,32.049999,33.119999,32.020000,32.290001,21.934202,23231600 +2001-12-27,32.410000,32.980000,32.360001,32.669998,22.192329,22443900 +2001-12-28,32.939999,33.310001,32.119999,32.240002,21.900242,27584200 +2001-12-31,32.150002,32.410000,31.410000,31.450001,21.363609,27975400 +2002-01-02,31.900000,33.000000,31.730000,33.000000,22.416498,42357300 +2002-01-03,33.500000,35.619999,33.400002,35.520000,24.128300,91464500 +2002-01-04,36.200001,36.349998,35.320000,35.790001,24.311720,65032900 +2002-01-07,36.020000,36.250000,35.020000,35.270000,23.958483,48808800 +2002-01-08,35.340000,35.970001,34.950001,35.580002,24.169048,35636600 +2002-01-09,35.959999,36.779999,35.029999,35.360001,24.019627,59083800 +2002-01-10,35.430000,35.470001,34.500000,34.650002,23.537329,51679400 +2002-01-11,34.820000,35.110001,34.259998,34.549999,23.469393,39583200 +2002-01-14,34.299999,35.189999,34.099998,34.840000,23.666391,58696400 +2002-01-15,34.939999,34.980000,34.090000,34.680000,23.557699,57115500 +2002-01-16,33.959999,34.590000,33.680000,33.709999,22.898790,76428600 +2002-01-17,34.049999,34.750000,33.599998,34.529999,23.455809,50498800 +2002-01-18,33.549999,34.299999,33.160000,33.480000,22.742550,51643600 +2002-01-22,33.549999,33.590000,31.559999,31.700001,21.533430,52957100 +2002-01-23,31.660000,32.610001,31.620001,32.450001,22.042892,49429000 +2002-01-24,32.919998,33.599998,32.560001,33.200001,22.552357,53902500 +2002-01-25,32.869999,34.160000,32.750000,33.680000,22.878418,35832800 +2002-01-28,33.830002,34.310001,33.320000,33.919998,23.041441,29919400 +2002-01-29,33.889999,34.299999,32.500000,32.680000,22.199127,44733000 +2002-01-30,32.869999,33.889999,32.459999,33.860001,23.000700,47008900 +2002-01-31,34.610001,35.150002,34.320000,35.040001,23.802250,63035000 +2002-02-01,34.820000,35.070000,34.060001,34.669998,23.550909,39369800 +2002-02-04,34.630001,34.630001,33.660000,33.980000,23.082201,38594200 +2002-02-05,33.799999,34.389999,33.400002,33.799999,22.973459,40974500 +2002-02-06,33.770000,33.799999,32.529999,32.919998,22.375319,51612200 +2002-02-07,32.799999,33.299999,32.099998,32.310001,21.960716,46596000 +2002-02-08,32.509998,32.599998,31.379999,32.520000,22.103451,60722800 +2002-02-11,32.240002,33.630001,32.119999,33.570000,22.817133,37651700 +2002-02-12,33.110001,33.480000,32.639999,32.970001,22.409313,37593400 +2002-02-13,33.200001,33.700001,33.060001,33.380001,22.687988,36786800 +2002-02-14,33.630001,34.349998,33.310001,33.340000,22.660799,44874100 +2002-02-15,33.419998,33.669998,31.950001,32.290001,21.947119,47587600 +2002-02-19,31.740000,32.169998,31.180000,31.340000,21.301422,44224000 +2002-02-20,31.500000,31.590000,29.950001,31.440001,21.369387,63430900 +2002-02-21,30.340000,30.680000,29.480000,29.480000,20.037205,76409400 +2002-02-22,29.510000,30.100000,29.170000,29.530001,20.071178,56059600 +2002-02-25,29.760000,31.510000,29.730000,31.020000,21.083923,52400300 +2002-02-26,31.250000,31.440001,29.750000,30.020000,20.404228,61576000 +2002-02-27,30.549999,31.070000,29.280001,29.889999,20.315874,57714000 +2002-02-28,30.110001,30.110001,28.500000,28.549999,19.405090,64454700 +2002-03-01,29.090000,31.010000,28.990000,30.980000,21.056732,58489400 +2002-03-04,30.950001,31.879999,29.879999,31.850000,21.648060,57664400 +2002-03-05,32.509998,33.290001,32.400002,32.700001,22.225790,68035700 +2002-03-06,32.840000,33.080002,32.130001,32.959999,22.402506,44898700 +2002-03-07,33.509998,33.610001,32.040001,32.980000,22.416115,55171900 +2002-03-08,33.189999,34.250000,32.840000,34.169998,23.224936,70218400 +2002-03-11,33.820000,34.080002,33.160000,33.419998,22.715166,40275400 +2002-03-12,32.470001,33.020000,32.310001,32.990002,22.422907,37674800 +2002-03-13,32.009998,32.060001,31.049999,31.340000,21.301422,56552400 +2002-03-14,31.260000,31.650000,30.799999,30.969999,21.049936,39862300 +2002-03-15,30.870001,31.850000,30.799999,31.740000,21.573294,49693300 +2002-03-18,31.930000,32.250000,31.240000,31.620001,21.491732,38894600 +2002-03-19,31.709999,32.160000,31.260000,31.719999,21.559706,33498000 +2002-03-20,30.580000,30.709999,30.020000,30.530001,20.750874,51105500 +2002-03-21,30.590000,31.490000,30.459999,31.400000,21.342199,36841700 +2002-03-22,31.100000,31.209999,30.459999,30.590000,20.791660,33576400 +2002-03-25,30.700001,30.969999,29.959999,30.000000,20.390636,42929400 +2002-03-26,30.010000,31.040001,29.950001,30.770000,20.914003,37563100 +2002-03-27,30.469999,30.500000,29.950001,30.410000,20.669317,38028800 +2002-03-28,30.809999,31.250000,30.379999,30.410000,20.669317,33005100 +2002-04-01,30.139999,31.450001,30.020000,31.170000,21.185873,32592200 +2002-04-02,30.580000,30.900000,30.020000,30.030001,20.411036,37849000 +2002-04-03,30.080000,30.290001,29.379999,29.870001,20.302284,42763300 +2002-04-04,30.049999,30.680000,29.950001,30.590000,20.791660,43744800 +2002-04-05,30.680000,30.700001,29.799999,30.049999,20.424622,32757200 +2002-04-08,29.040001,30.040001,28.500000,29.930000,20.343067,45247300 +2002-04-09,29.910000,30.240000,28.410000,28.459999,19.343908,61982800 +2002-04-10,28.650000,29.389999,28.010000,29.260000,19.887676,60569500 +2002-04-11,28.830000,29.440001,28.510000,28.940001,19.670172,42024500 +2002-04-12,29.150000,29.150000,28.070000,28.389999,19.296343,40682600 +2002-04-15,28.209999,28.719999,27.760000,28.110001,19.106026,42941400 +2002-04-16,29.080000,29.799999,28.980000,29.510000,20.057592,60448200 +2002-04-17,31.200001,31.280001,30.309999,30.639999,20.825640,63790400 +2002-04-18,30.540001,30.930000,29.860001,30.450001,20.696491,45465200 +2002-04-19,30.820000,30.850000,30.059999,30.100000,20.458599,34806900 +2002-04-22,29.940001,30.219999,29.530001,30.059999,20.431421,34145800 +2002-04-23,30.170000,30.340000,29.360001,29.540001,20.077984,42582500 +2002-04-24,29.660000,29.990000,28.879999,28.910000,19.649778,38224600 +2002-04-25,28.660000,29.480000,28.170000,29.090000,19.772125,49886000 +2002-04-26,29.430000,29.459999,28.100000,28.120001,19.112827,39343600 +2002-04-29,28.170000,28.450001,27.510000,28.040001,19.058453,40652200 +2002-04-30,28.010000,29.250000,27.900000,28.610001,19.445873,45052800 +2002-05-01,28.570000,29.049999,27.540001,28.629999,19.459475,46014800 +2002-05-02,28.510000,29.219999,27.770000,27.870001,18.942909,41815600 +2002-05-03,27.850000,27.950001,26.490000,26.559999,18.065479,50945400 +2002-05-06,26.500000,27.000000,25.750000,25.780001,17.534939,44269700 +2002-05-07,26.150000,26.980000,25.559999,26.150000,17.786606,55914400 +2002-05-08,27.240000,29.059999,27.070000,28.980000,19.711500,58152400 +2002-05-09,28.650000,28.850000,27.799999,28.240000,19.208172,41394900 +2002-05-10,28.459999,28.610001,26.920000,27.010000,18.371553,43997500 +2002-05-13,27.200001,28.559999,27.110001,28.520000,19.398624,40695200 +2002-05-14,29.920000,30.350000,29.370001,30.150000,20.507309,57087400 +2002-05-15,29.680000,31.000000,29.500000,30.240000,20.568518,53419600 +2002-05-16,30.219999,30.790001,29.910000,30.770000,20.929016,37284100 +2002-05-17,31.000000,31.360001,30.590000,31.200001,21.221498,53195200 +2002-05-20,30.600000,30.799999,29.920000,30.190001,20.534517,37234800 +2002-05-21,30.200001,30.340000,28.959999,29.070000,19.772709,48063600 +2002-05-22,28.910000,29.670000,28.709999,29.590000,20.126411,41216600 +2002-05-23,29.650000,29.799999,28.440001,29.389999,19.990370,42332100 +2002-05-24,28.790001,29.000000,28.400000,28.660000,19.493847,26029600 +2002-05-28,28.559999,28.620001,27.670000,28.350000,19.282984,42888200 +2002-05-29,27.879999,27.990000,27.250000,27.270000,18.548405,35346600 +2002-05-30,27.010000,27.709999,26.600000,27.420000,18.650427,40982400 +2002-05-31,27.920000,28.430000,27.410000,27.620001,18.786467,38515500 +2002-06-03,27.430000,27.719999,26.440001,26.620001,18.106289,34869600 +2002-06-04,26.230000,27.520000,26.219999,27.500000,18.704847,49303700 +2002-06-05,27.600000,28.200001,26.889999,28.180000,19.167368,41646700 +2002-06-06,27.500000,27.580000,26.700001,27.000000,18.364759,53854700 +2002-06-07,22.340000,22.750000,21.700001,22.000000,14.963870,151697500 +2002-06-10,22.280001,22.290001,20.990000,21.070000,14.331311,67962100 +2002-06-11,21.440001,21.889999,20.180000,20.219999,13.753156,69932400 +2002-06-12,20.110001,21.600000,20.000000,21.580000,14.678204,76957400 +2002-06-13,21.610001,21.969999,21.000000,21.110001,14.358518,49372400 +2002-06-14,20.549999,21.379999,20.059999,21.280001,14.474148,50410100 +2002-06-17,21.660000,22.570000,21.350000,22.559999,15.344773,53044600 +2002-06-18,22.139999,22.990000,22.010000,22.020000,14.977479,51943800 +2002-06-19,20.959999,21.209999,20.020000,20.090000,13.664742,65481800 +2002-06-20,20.120001,20.600000,19.219999,19.240000,13.086585,76656900 +2002-06-21,19.080000,19.639999,18.400000,18.730000,12.739697,80815300 +2002-06-24,18.420000,19.959999,18.389999,19.330000,13.147799,70345000 +2002-06-25,19.790001,19.980000,18.299999,18.320000,12.460827,68249700 +2002-06-26,17.500000,18.889999,17.450001,18.610001,12.658079,84988500 +2002-06-27,18.900000,18.959999,17.870001,18.650000,12.685285,72620200 +2002-06-28,18.709999,19.320000,18.110001,18.270000,12.426820,63858200 +2002-07-01,18.350000,18.770000,17.490000,17.540001,11.930290,48681300 +2002-07-02,17.459999,17.809999,16.459999,16.570000,11.270517,77807700 +2002-07-03,16.270000,17.780001,16.260000,17.750000,12.073129,63562800 +2002-07-05,18.700001,19.610001,18.600000,19.540001,13.290641,34149100 +2002-07-08,19.260000,19.580000,18.070000,18.500000,12.583260,57648600 +2002-07-09,18.280001,18.450001,17.750000,17.959999,12.215964,53507600 +2002-07-10,18.260000,18.280001,16.770000,16.809999,11.433761,73848000 +2002-07-11,16.740000,18.299999,16.510000,18.250000,12.413212,89828400 +2002-07-12,18.799999,18.879999,17.709999,17.990000,12.236369,74887900 +2002-07-15,18.040001,19.150000,17.430000,19.120001,13.004966,79892000 +2002-07-16,18.559999,19.450001,18.139999,18.360001,12.488031,98863000 +2002-07-17,19.299999,19.879999,18.809999,19.440001,13.222621,96553800 +2002-07-18,19.260000,19.750000,19.000000,19.190001,13.052582,57109500 +2002-07-19,18.700001,19.459999,18.500000,18.650000,12.685285,62042100 +2002-07-22,18.469999,19.200001,18.250000,18.260000,12.420013,77366100 +2002-07-23,18.400000,18.740000,17.760000,17.809999,12.113935,71030900 +2002-07-24,17.250000,18.719999,17.030001,18.700001,12.719298,83101300 +2002-07-25,18.260000,18.700001,17.100000,17.480000,11.889476,80606500 +2002-07-26,17.680000,18.200001,17.020000,17.809999,12.113935,57020100 +2002-07-29,18.330000,18.900000,18.000000,18.889999,12.848525,55085100 +2002-07-30,18.570000,19.110001,18.250000,18.969999,12.902941,60407100 +2002-07-31,18.920000,18.969999,18.010000,18.790001,12.780506,54030300 +2002-08-01,18.719999,18.850000,17.459999,17.559999,11.943892,55134100 +2002-08-02,17.559999,17.559999,16.520000,16.709999,11.365741,55576300 +2002-08-05,16.680000,17.010000,15.820000,15.880000,10.814140,59625800 +2002-08-06,16.330000,17.930000,16.170000,17.129999,11.665377,83272800 +2002-08-07,17.990000,18.150000,16.629999,17.719999,12.067161,71381700 +2002-08-08,17.590000,18.420000,17.030001,18.379999,12.516618,60914400 +2002-08-09,17.920000,18.260000,17.620001,17.860001,12.162504,45576200 +2002-08-12,17.200001,17.610001,17.000000,17.530001,11.937774,35477300 +2002-08-13,17.400000,17.990000,16.690001,16.700001,11.372554,48730600 +2002-08-14,16.920000,18.320000,16.719999,18.290001,12.455328,55038600 +2002-08-15,18.340000,18.799999,18.020000,18.610001,12.673242,51558800 +2002-08-16,18.059999,19.020000,17.980000,18.750000,12.768587,54921500 +2002-08-19,18.610001,19.629999,18.440001,19.459999,13.252087,51720400 +2002-08-20,19.180000,19.320000,18.750000,18.969999,12.918397,45347100 +2002-08-21,19.230000,19.670000,18.799999,19.590000,13.340621,57883400 +2002-08-22,19.430000,19.500000,18.889999,19.150000,13.040983,55744000 +2002-08-23,18.840000,18.840000,17.889999,17.959999,12.230604,48371600 +2002-08-26,18.100000,18.219999,17.610001,18.129999,12.346375,46069000 +2002-08-27,17.910000,17.959999,17.150000,17.180000,11.699428,60623500 +2002-08-28,17.110001,17.440001,16.770000,16.840000,11.467894,55663700 +2002-08-29,16.580000,17.450001,16.510000,17.139999,11.672190,50516700 +2002-08-30,16.889999,17.080000,16.650000,16.670000,11.352122,32857100 +2002-09-03,16.469999,16.500000,15.850000,15.860000,10.800519,58140400 +2002-09-04,15.810000,16.170000,15.580000,16.110001,10.970769,66790200 +2002-09-05,15.810000,15.830000,15.030000,15.110000,10.289775,86969600 +2002-09-06,16.400000,16.549999,16.110001,16.219999,11.045678,77957400 +2002-09-09,16.030001,16.340000,15.690000,16.080000,10.950339,51444400 +2002-09-10,16.190001,16.639999,16.100000,16.469999,11.215924,57279400 +2002-09-11,16.730000,17.040001,16.580000,16.620001,11.318074,45864800 +2002-09-12,16.360001,16.379999,15.670000,15.700000,10.691560,48750200 +2002-09-13,15.700000,16.200001,15.640000,16.030001,10.916290,44670900 +2002-09-16,15.990000,16.139999,15.540000,15.700000,10.691560,41224000 +2002-09-17,16.160000,16.350000,15.500000,15.570000,10.603030,55756400 +2002-09-18,15.220000,15.650000,15.000000,15.280000,10.405546,51894800 +2002-09-19,15.020000,15.550000,14.900000,14.980000,10.201249,56278400 +2002-09-20,15.110000,15.180000,14.820000,14.900000,10.146768,76653900 +2002-09-23,14.720000,14.730000,14.100000,14.130000,9.622405,62986100 +2002-09-24,14.000000,15.000000,13.900000,14.340000,9.765411,84156500 +2002-09-25,14.560000,15.490000,14.430000,15.200000,10.351066,72720800 +2002-09-26,15.640000,15.690000,14.730000,15.150000,10.317017,72311200 +2002-09-27,14.990000,15.290000,14.490000,14.620000,9.956092,65195700 +2002-09-30,14.250000,14.290000,13.670000,13.890000,9.458967,76123100 +2002-10-01,14.050000,14.700000,13.850000,14.670000,9.990139,68218600 +2002-10-02,14.770000,15.210000,14.240000,14.300000,9.738175,78381500 +2002-10-03,14.290000,14.590000,13.800000,13.840000,9.424919,61416800 +2002-10-04,14.150000,14.330000,13.590000,13.710000,9.336388,65440500 +2002-10-07,13.730000,14.260000,13.640000,13.820000,9.411297,56912400 +2002-10-08,14.040000,14.090000,13.090000,13.220000,9.002703,85399200 +2002-10-09,13.000000,13.810000,12.950000,13.460000,9.166140,81753200 +2002-10-10,13.490000,14.420000,13.490000,14.180000,9.656456,83505000 +2002-10-11,14.390000,15.250000,14.150000,15.220000,10.364686,77757500 +2002-10-14,14.920000,15.190000,14.600000,15.100000,10.282969,48236600 +2002-10-15,15.940000,16.549999,15.120000,16.520000,11.249973,109131100 +2002-10-16,13.530000,14.120000,13.420000,13.540000,9.220621,155210300 +2002-10-17,14.220000,14.290000,13.910000,14.230000,9.690503,103266700 +2002-10-18,14.240000,14.500000,13.690000,14.460000,9.847136,73323700 +2002-10-21,14.220000,15.530000,14.150000,15.450000,10.521314,87945600 +2002-10-22,14.850000,15.470000,14.740000,15.120000,10.296586,74188700 +2002-10-23,15.070000,16.280001,15.020000,16.160000,11.004818,91799700 +2002-10-24,16.350000,16.660000,15.570000,15.630000,10.643891,86356300 +2002-10-25,15.690000,16.600000,15.590000,16.590000,11.297638,69819200 +2002-10-28,17.129999,17.280001,16.540001,16.809999,11.447466,85986500 +2002-10-29,16.700001,16.930000,16.049999,16.400000,11.168255,79050400 +2002-10-30,16.580000,17.379999,16.389999,16.990000,11.570036,80766700 +2002-10-31,17.110001,17.510000,16.820000,17.299999,11.781146,77160500 +2002-11-01,17.100000,18.480000,16.910000,18.299999,12.462136,85017800 +2002-11-04,18.870001,19.230000,18.430000,18.770000,12.782205,80962600 +2002-11-05,18.360001,18.770000,17.709999,18.350000,12.509516,71532500 +2002-11-06,18.490000,19.230000,18.240000,19.150000,13.054889,81286600 +2002-11-07,18.680000,19.080000,18.200001,18.440001,12.570874,66486000 +2002-11-08,18.370001,18.879999,18.049999,18.150000,12.373178,49747500 +2002-11-11,17.959999,18.160000,17.270000,17.340000,11.820984,40879200 +2002-11-12,17.520000,18.309999,17.500000,17.790001,12.127758,54639500 +2002-11-13,17.620001,18.230000,17.530001,18.120001,12.352724,65938300 +2002-11-14,18.870001,19.290001,18.600000,19.209999,13.095796,64924500 +2002-11-15,18.480000,18.920000,18.100000,18.799999,12.816291,73472600 +2002-11-18,19.080000,19.180000,18.480000,18.549999,12.645857,52772600 +2002-11-19,18.309999,18.580000,18.010000,18.150000,12.373178,51321400 +2002-11-20,18.240000,19.170000,18.080000,19.150000,13.054889,64934300 +2002-11-21,19.400000,20.370001,19.350000,20.209999,13.777509,90938900 +2002-11-22,19.809999,20.389999,19.610001,20.049999,13.668438,59559700 +2002-11-25,20.049999,20.559999,19.900000,20.480000,13.961571,53680200 +2002-11-26,20.510000,20.700001,20.000000,20.200001,13.770694,70854100 +2002-11-27,20.570000,21.100000,20.400000,20.900000,14.247895,50910900 +2002-11-29,21.190001,21.299999,20.600000,20.879999,14.234262,20667400 +2002-12-02,21.879999,22.090000,20.770000,21.049999,14.350155,83017000 +2002-12-03,20.900000,20.910000,20.150000,20.309999,13.845682,53659700 +2002-12-04,19.400000,20.049999,19.299999,19.670000,13.409381,75039800 +2002-12-05,20.070000,20.150000,18.879999,18.959999,12.925364,87944700 +2002-12-06,18.610001,19.020000,18.379999,18.709999,12.754931,71640400 +2002-12-09,18.450001,18.500000,17.639999,17.680000,12.052772,71922900 +2002-12-10,17.830000,18.500000,17.719999,18.129999,12.359536,58576400 +2002-12-11,17.940001,18.410000,17.760000,18.160000,12.379990,55585900 +2002-12-12,18.410000,18.580000,17.950001,18.190001,12.400441,54295800 +2002-12-13,17.850000,18.000000,17.559999,17.580000,11.984597,53468200 +2002-12-16,17.690001,18.240000,17.600000,18.219999,12.420896,51245600 +2002-12-17,18.190001,18.309999,17.750000,17.889999,12.195926,52191400 +2002-12-18,17.540001,17.600000,17.020000,17.129999,11.677820,54053300 +2002-12-19,16.980000,17.480000,16.650000,17.000000,11.589198,59466800 +2002-12-20,17.160000,17.410000,16.950001,17.010000,11.596016,69088400 +2002-12-23,16.860001,17.400000,16.830000,17.209999,11.732358,35447500 +2002-12-24,17.020000,17.150000,16.780001,16.780001,11.439220,21515900 +2002-12-26,16.889999,17.240000,16.629999,16.690001,11.377870,29989200 +2002-12-27,16.580000,16.840000,16.290001,16.400000,11.180167,31252300 +2002-12-30,16.440001,16.549999,15.740000,15.760000,10.743869,56796600 +2002-12-31,15.710000,15.820000,15.420000,15.570000,10.614340,49986600 +2003-01-02,16.020000,16.730000,15.660000,16.690001,11.377870,57135100 +2003-01-03,16.670000,16.850000,16.340000,16.540001,11.275606,50271500 +2003-01-06,16.700001,17.459999,16.600000,17.180000,11.711912,57114300 +2003-01-07,17.510000,17.650000,17.000000,17.360001,11.834619,63853500 +2003-01-08,17.170000,17.299999,16.590000,16.680000,11.371046,55719700 +2003-01-09,16.879999,17.379999,16.860001,17.059999,11.630100,58692700 +2003-01-10,17.040001,17.500000,16.860001,17.420000,11.875517,54995200 +2003-01-13,17.850000,17.980000,17.230000,17.379999,11.848253,66865000 +2003-01-14,17.559999,17.840000,17.340000,17.790001,12.127758,80562500 +2003-01-15,17.940001,18.010000,17.340000,17.350000,11.827800,99754800 +2003-01-16,17.450001,17.530001,17.110001,17.200001,11.725543,54420100 +2003-01-17,16.889999,16.950001,16.280001,16.340000,11.139262,67963800 +2003-01-21,16.270000,16.590000,16.230000,16.290001,11.105176,57401500 +2003-01-22,16.209999,16.690001,16.150000,16.250000,11.077904,60169100 +2003-01-23,16.530001,16.780001,16.190001,16.670000,11.364234,51948900 +2003-01-24,16.440001,16.490000,15.750000,15.850000,10.805223,60831600 +2003-01-27,15.490000,16.129999,15.480000,15.880000,10.825675,56559500 +2003-01-28,16.100000,16.280001,15.800000,16.030001,10.927932,58387000 +2003-01-29,15.940000,16.690001,15.700000,16.660000,11.357414,63040400 +2003-01-30,16.629999,16.700001,15.760000,15.780000,10.757503,55537500 +2003-01-31,15.390000,15.850000,15.140000,15.660000,10.675697,65637900 +2003-02-03,15.650000,15.980000,15.500000,15.780000,10.757503,43773800 +2003-02-04,15.570000,15.780000,15.330000,15.640000,10.662062,41066900 +2003-02-05,15.770000,16.150000,15.500000,15.580000,10.634757,50881700 +2003-02-06,15.490000,15.710000,15.260000,15.410000,10.518719,47355000 +2003-02-07,15.530000,15.630000,14.890000,15.050000,10.272984,49537900 +2003-02-10,15.070000,15.450000,14.880000,15.270000,10.423154,52977000 +2003-02-11,15.390000,15.530000,15.060000,15.340000,10.470935,47251200 +2003-02-12,15.280000,15.420000,15.110000,15.150000,10.341244,38401800 +2003-02-13,15.330000,15.600000,15.100000,15.530000,10.600626,54625400 +2003-02-14,15.680000,16.200001,15.530000,16.150000,11.023831,54749800 +2003-02-18,16.410000,16.750000,16.180000,16.730000,11.419739,50500400 +2003-02-19,16.990000,17.059999,16.500000,16.780001,11.453867,51793600 +2003-02-20,17.080000,17.100000,16.820000,16.959999,11.576731,52122900 +2003-02-21,17.040001,17.049999,16.420000,16.790001,11.460693,61341900 +2003-02-24,16.680000,17.100000,16.520000,16.540001,11.290047,49143300 +2003-02-25,16.290001,16.790001,16.000000,16.730000,11.419739,58507600 +2003-02-26,16.520000,16.850000,16.110001,16.240000,11.085267,53413000 +2003-02-27,16.379999,16.770000,16.299999,16.700001,11.399260,50289500 +2003-02-28,16.980000,17.290001,16.809999,17.250000,11.774685,65249200 +2003-03-03,17.129999,17.309999,16.580000,16.660000,11.371959,58274100 +2003-03-04,16.690001,16.910000,16.480000,16.620001,11.344653,50779600 +2003-03-05,16.660000,17.090000,16.600000,16.980000,11.590383,49337000 +2003-03-06,16.860001,16.990000,16.570000,16.660000,11.371959,56422200 +2003-03-07,15.860000,16.190001,15.720000,16.010000,10.928272,91034200 +2003-03-10,15.920000,16.100000,15.710000,15.900000,10.853185,57545600 +2003-03-11,15.970000,16.100000,15.810000,15.850000,10.819057,49677600 +2003-03-12,15.810000,16.209999,15.590000,16.170000,11.037487,61890000 +2003-03-13,16.620001,17.360001,16.400000,17.350000,11.842944,78008100 +2003-03-14,17.410000,17.440001,16.879999,17.170000,11.720076,73086100 +2003-03-17,17.000000,18.180000,16.940001,18.059999,12.327583,77678200 +2003-03-18,18.170000,18.290001,17.780001,18.250000,12.457272,62210200 +2003-03-19,18.090000,18.200001,17.670000,17.980000,12.272974,64608400 +2003-03-20,17.870001,18.610001,17.799999,18.270000,12.470931,68798500 +2003-03-21,18.690001,19.010000,18.500000,18.920000,12.914614,73448400 +2003-03-24,18.080000,18.320000,17.809999,17.820000,12.163758,64780300 +2003-03-25,17.930000,18.240000,17.650000,18.040001,12.313934,60596500 +2003-03-26,17.990000,18.049999,17.799999,17.889999,12.211544,44360100 +2003-03-27,17.610001,17.820000,17.420000,17.580000,11.999937,46430300 +2003-03-28,17.420000,17.650000,17.200001,17.219999,11.754207,37304200 +2003-03-31,16.650000,16.820000,16.260000,16.280001,11.112575,66443100 +2003-04-01,16.379999,16.650000,16.280001,16.420000,11.208137,45993300 +2003-04-02,17.000000,17.600000,17.000000,17.520000,11.958980,56811800 +2003-04-03,17.620001,18.000000,17.450001,17.570000,11.993114,55164700 +2003-04-04,17.629999,17.680000,16.850000,17.049999,11.638164,56633700 +2003-04-07,18.049999,18.090000,17.350000,17.350000,11.842944,59299000 +2003-04-08,17.389999,17.480000,16.940001,17.100000,11.672297,48778100 +2003-04-09,17.150000,17.430000,16.650000,16.680000,11.385609,56516400 +2003-04-10,16.860001,16.980000,16.559999,16.879999,11.522127,44893000 +2003-04-11,17.250000,17.379999,16.639999,16.740000,11.426561,41744200 +2003-04-14,16.820000,17.200001,16.650000,17.160000,11.713250,41620500 +2003-04-15,17.129999,17.340000,16.920000,17.129999,11.692772,62708600 +2003-04-16,17.959999,18.320000,17.799999,18.160000,12.395840,106294400 +2003-04-17,17.990000,18.690001,17.889999,18.660000,12.737137,68959100 +2003-04-21,18.549999,18.790001,18.290001,18.650000,12.730314,50354700 +2003-04-22,18.290001,19.020000,18.240000,19.000000,12.969212,60474700 +2003-04-23,19.049999,19.559999,18.889999,19.480000,13.296868,63125000 +2003-04-24,19.350000,19.350000,18.690001,18.950001,12.935086,65451700 +2003-04-25,18.549999,18.590000,18.059999,18.280001,12.477753,60849000 +2003-04-28,18.340000,18.879999,18.180000,18.750000,12.798572,51125000 +2003-04-29,18.969999,19.270000,18.700001,18.920000,12.914614,60841900 +2003-04-30,18.840000,18.910000,18.360001,18.400000,12.559666,64415500 +2003-05-01,18.370001,18.760000,18.299999,18.530001,12.648398,52929100 +2003-05-02,18.549999,19.080000,18.389999,19.030001,12.989693,59571700 +2003-05-05,19.240000,19.430000,18.969999,19.020000,12.996530,55276200 +2003-05-06,18.980000,19.680000,18.930000,19.530001,13.345020,62109200 +2003-05-07,19.280001,19.540001,19.059999,19.200001,13.119528,53515100 +2003-05-08,18.920000,19.270000,18.840000,18.870001,12.894028,54055600 +2003-05-09,19.330000,19.580000,19.170000,19.580000,13.379180,51872500 +2003-05-12,19.480000,20.030001,19.430000,19.990000,13.659335,68815600 +2003-05-13,19.790001,19.959999,19.650000,19.830000,13.550009,46439800 +2003-05-14,19.910000,19.969999,19.299999,19.660000,13.433845,57713200 +2003-05-15,19.850000,20.110001,19.610001,20.000000,13.666166,71834200 +2003-05-16,19.700001,20.000000,19.450001,19.500000,13.324515,56693900 +2003-05-19,19.150000,19.309999,18.629999,18.670000,12.757373,59059300 +2003-05-20,18.670000,18.850000,18.510000,18.660000,12.750536,56797200 +2003-05-21,18.790001,18.889999,18.570000,18.840000,12.873531,49470700 +2003-05-22,18.930000,19.059999,18.730000,18.770000,12.825703,60999000 +2003-05-23,18.770000,18.990000,18.719999,18.809999,12.853031,36898400 +2003-05-27,18.690001,19.790001,18.670000,19.780001,13.515846,71371300 +2003-05-28,19.850000,20.100000,19.610001,19.740000,13.488507,69176900 +2003-05-29,19.799999,20.969999,19.780001,20.830000,14.233316,122283700 +2003-05-30,20.870001,21.010000,20.440001,20.820000,14.226486,69245000 +2003-06-02,21.000000,21.160000,20.299999,20.379999,13.925825,73472400 +2003-06-03,20.360001,21.120001,20.180000,21.100000,14.417812,67898600 +2003-06-04,21.030001,21.500000,20.850000,21.379999,14.609140,79271300 +2003-06-05,21.090000,21.950001,20.799999,21.840000,14.923462,88161800 +2003-06-06,22.459999,22.920000,21.740000,21.760000,14.868797,105871500 +2003-06-09,21.590000,21.780001,21.139999,21.670000,14.807297,50303400 +2003-06-10,21.910000,21.980000,21.469999,21.969999,15.012289,52440200 +2003-06-11,21.530001,21.959999,21.400000,21.889999,14.957623,54241500 +2003-06-12,22.010000,22.340000,21.879999,22.139999,15.128449,59508600 +2003-06-13,21.959999,22.059999,21.200001,21.360001,14.595467,58853400 +2003-06-16,21.500000,21.940001,21.320000,21.870001,14.943960,52015900 +2003-06-17,21.969999,22.010000,21.379999,21.450001,14.656966,50766600 +2003-06-18,21.299999,21.969999,21.139999,21.750000,14.861960,62519500 +2003-06-19,21.660000,21.920000,21.120001,21.120001,14.431482,69563700 +2003-06-20,21.340000,21.420000,20.639999,20.670000,14.123987,78909400 +2003-06-23,20.700001,20.969999,20.049999,20.360001,13.912162,59628100 +2003-06-24,20.110001,20.740000,20.040001,20.450001,13.973666,63799700 +2003-06-25,20.530001,20.830000,19.990000,20.040001,13.693501,61250600 +2003-06-26,20.299999,20.760000,20.150000,20.629999,14.096654,52904900 +2003-06-27,20.700001,21.129999,20.530001,20.570000,14.055658,63348200 +2003-06-30,21.139999,21.299999,20.590000,20.809999,14.219648,51457500 +2003-07-01,20.870001,21.500000,20.510000,21.410000,14.629635,64496600 +2003-07-02,21.660000,22.320000,21.469999,22.209999,15.176282,74291500 +2003-07-03,21.969999,22.309999,21.709999,21.719999,14.841457,40502400 +2003-07-07,22.240000,22.980000,22.170000,22.910000,15.654601,56553100 +2003-07-08,22.830000,23.400000,22.670000,23.150000,15.818592,64980800 +2003-07-09,23.299999,23.990000,23.250000,23.480000,16.044086,78521900 +2003-07-10,23.070000,23.299999,22.610001,22.910000,15.654601,63261600 +2003-07-11,23.290001,23.500000,23.070000,23.340000,15.948420,46535400 +2003-07-14,24.270000,24.580000,23.850000,24.020000,16.413071,76909400 +2003-07-15,24.440001,24.770000,23.670000,24.100000,16.467739,102323700 +2003-07-16,25.240000,25.500000,24.820000,25.309999,17.294537,128925700 +2003-07-17,24.690001,25.100000,24.600000,24.930000,17.034878,71736800 +2003-07-18,25.100000,25.150000,24.150000,24.660000,16.850384,65296900 +2003-07-21,24.600000,24.629999,23.950001,24.059999,16.440403,52851200 +2003-07-22,24.389999,24.530001,24.049999,24.420000,16.686396,61074300 +2003-07-23,24.370001,24.900000,24.260000,24.809999,16.952883,49058200 +2003-07-24,25.150000,25.170000,23.950001,23.969999,16.378906,58119100 +2003-07-25,24.170000,24.940001,23.730000,24.910000,17.021217,52627700 +2003-07-28,24.920000,25.129999,24.610001,24.760000,16.918718,45462200 +2003-07-29,24.809999,25.230000,24.700001,24.900000,17.014376,68217600 +2003-07-30,24.860001,24.870001,24.280001,24.490000,16.734221,40786200 +2003-07-31,24.799999,25.350000,24.680000,24.889999,17.007549,68692100 +2003-08-01,24.780001,25.070000,24.730000,25.020000,17.096382,48494900 +2003-08-04,24.910000,25.230000,24.389999,25.129999,17.171545,53570000 +2003-08-05,25.120001,25.120001,24.230000,24.270000,16.597105,51979800 +2003-08-06,24.100000,24.549999,23.809999,24.139999,16.508204,57799000 +2003-08-07,23.940001,24.299999,23.860001,23.990000,16.405626,48517800 +2003-08-08,24.150000,24.219999,23.330000,23.580000,16.125242,57453600 +2003-08-11,23.620001,24.129999,23.580000,23.900000,16.344080,41624600 +2003-08-12,24.090000,24.400000,23.820000,24.370001,16.665501,48475100 +2003-08-13,24.500000,25.000000,24.299999,24.709999,16.898006,51882500 +2003-08-14,24.799999,25.170000,24.549999,25.139999,17.192059,51830000 +2003-08-15,25.090000,25.250000,24.809999,25.049999,17.130505,21622800 +2003-08-18,25.100000,26.230000,25.049999,26.190001,17.910099,59081000 +2003-08-19,26.370001,26.540001,25.920000,26.469999,18.101583,55966300 +2003-08-20,26.139999,26.740000,26.129999,26.360001,18.026358,47210300 +2003-08-21,26.690001,26.780001,26.010000,26.389999,18.046873,66434900 +2003-08-22,28.160000,29.040001,27.320000,27.389999,18.730724,120604100 +2003-08-25,27.559999,27.760000,27.070000,27.240000,18.628151,52037500 +2003-08-26,26.959999,27.740000,26.680000,27.709999,18.949560,65213400 +2003-08-27,27.610001,28.080000,27.420000,28.020000,19.161552,58217200 +2003-08-28,28.100000,28.350000,27.850000,28.299999,19.353033,48631600 +2003-08-29,28.180000,28.650000,28.040001,28.590000,19.551350,41986600 +2003-09-02,28.770000,28.840000,28.170000,28.740000,19.653931,58841200 +2003-09-03,28.940001,28.969999,28.040001,28.219999,19.298326,60714800 +2003-09-04,28.320000,28.740000,28.040001,28.600000,19.558193,63744700 +2003-09-05,28.830000,29.100000,28.370001,28.709999,19.633417,68429900 +2003-09-08,28.879999,29.200001,28.799999,29.180000,19.954826,52154000 +2003-09-09,29.000000,29.129999,28.660000,28.790001,19.688129,49792900 +2003-09-10,28.440001,28.490000,27.629999,27.660000,18.915373,57999300 +2003-09-11,27.620001,28.350000,27.290001,28.030001,19.168390,56654900 +2003-09-12,27.809999,28.389999,27.549999,28.340000,19.380386,51931600 +2003-09-15,28.330000,28.450001,27.910000,27.990000,19.141039,36350400 +2003-09-16,28.080000,28.990000,28.020000,28.910000,19.770184,48748000 +2003-09-17,28.940001,29.379999,28.770000,28.879999,19.749668,52827300 +2003-09-18,28.690001,29.280001,28.459999,29.160000,19.941147,46619000 +2003-09-19,29.299999,29.360001,28.830000,29.170000,19.947983,53550300 +2003-09-22,28.600000,28.770000,28.200001,28.520000,19.503481,48490600 +2003-09-23,28.510000,29.000000,28.420000,28.940001,19.790699,43934300 +2003-09-24,28.900000,29.000000,27.740000,27.780001,18.997433,59596400 +2003-09-25,27.940001,28.350000,27.400000,27.450001,18.771763,57560700 +2003-09-26,27.500000,27.840000,27.219999,27.270000,18.648666,68682000 +2003-09-29,27.549999,28.400000,27.469999,28.370001,19.400904,65800400 +2003-09-30,28.170000,28.170000,27.440001,27.520000,18.819628,63410200 +2003-10-01,27.820000,28.730000,27.809999,28.629999,19.578703,59519900 +2003-10-02,28.580000,28.950001,28.410000,28.620001,19.571869,42385100 +2003-10-03,29.270000,29.799999,29.200001,29.610001,20.248877,66635500 +2003-10-06,29.680000,29.799999,29.379999,29.559999,20.214689,28955800 +2003-10-07,29.280001,29.990000,29.150000,29.950001,20.481384,47943100 +2003-10-08,29.920000,30.000000,29.500000,29.670000,20.289915,41147400 +2003-10-09,29.709999,30.389999,29.480000,29.770000,20.358295,76072800 +2003-10-10,30.160000,30.490000,30.090000,30.430000,20.809639,46206700 +2003-10-13,30.709999,30.940001,30.480000,30.799999,21.062664,41697500 +2003-10-14,30.790001,31.100000,30.530001,31.080000,21.254145,66909700 +2003-10-15,32.770000,32.779999,31.620001,31.760000,21.719168,110833700 +2003-10-16,31.500000,32.259998,31.400000,32.230000,22.040573,55199000 +2003-10-17,32.270000,32.389999,31.570000,31.660000,21.650772,52536500 +2003-10-20,31.610001,32.209999,31.559999,32.160000,21.992708,43090700 +2003-10-21,32.279999,32.330002,32.009998,32.119999,21.965351,50250800 +2003-10-22,31.770000,32.500000,31.410000,31.520000,21.555038,49873700 +2003-10-23,30.920000,31.389999,30.889999,31.219999,21.349876,48215300 +2003-10-24,30.959999,31.180000,30.360001,31.080000,21.254145,55915500 +2003-10-27,31.250000,31.549999,31.240000,31.420000,21.486652,37237300 +2003-10-28,31.639999,32.740002,31.559999,32.669998,22.341463,57041700 +2003-10-29,32.509998,32.919998,32.430000,32.799999,22.430368,47727900 +2003-10-30,33.080002,33.279999,32.830002,32.889999,22.491913,55581700 +2003-10-31,32.930000,33.130001,32.770000,32.950001,22.532951,39557700 +2003-11-03,33.330002,34.110001,33.150002,34.040001,23.278347,53324900 +2003-11-04,33.910000,34.000000,33.570000,33.680000,23.032162,42009400 +2003-11-05,33.669998,33.880001,33.240002,33.740002,23.086901,45615300 +2003-11-06,33.900002,34.220001,33.439999,34.119999,23.346920,42140200 +2003-11-07,34.419998,34.509998,33.740002,33.869999,23.175858,48461500 +2003-11-10,34.009998,34.139999,33.230000,33.389999,22.847412,54424600 +2003-11-11,33.250000,33.439999,33.110001,33.410000,22.861099,41184300 +2003-11-12,33.570000,34.290001,33.509998,34.099998,23.333237,49291000 +2003-11-13,33.900002,33.990002,33.430000,33.779999,23.114271,52569600 +2003-11-14,33.840000,33.980000,32.700001,32.799999,22.443699,59409400 +2003-11-17,32.400002,32.580002,31.660000,32.230000,22.053667,64927100 +2003-11-18,32.509998,32.630001,31.809999,31.840000,21.786812,57338800 +2003-11-19,31.910000,32.610001,31.719999,32.520000,22.252106,47996500 +2003-11-20,32.250000,32.790001,31.760000,31.830000,21.779968,59523800 +2003-11-21,32.180000,32.369999,31.930000,32.320000,22.115257,45646200 +2003-11-24,32.500000,33.490002,32.500000,33.459999,22.895306,45783200 +2003-11-25,33.430000,33.740002,33.049999,33.070000,22.628448,38861700 +2003-11-26,33.400002,33.599998,32.889999,33.349998,22.820047,42781700 +2003-11-28,33.139999,33.630001,33.130001,33.540001,22.950050,13253800 +2003-12-01,33.820000,34.139999,33.520000,34.040001,23.292187,47063000 +2003-12-02,34.189999,34.400002,33.810001,33.849998,23.162161,41987300 +2003-12-03,34.070000,34.340000,33.250000,33.340000,22.813200,49743600 +2003-12-04,33.490002,33.709999,32.849998,33.540001,22.950050,61217300 +2003-12-05,32.459999,32.730000,32.000000,32.099998,21.964716,66215400 +2003-12-08,31.930000,32.290001,31.330000,31.639999,21.649958,66864300 +2003-12-09,31.860001,31.930000,30.110001,30.250000,20.698835,81626300 +2003-12-10,30.299999,30.490000,29.660000,30.420000,20.815168,81153700 +2003-12-11,30.500000,30.990000,30.330000,30.910000,21.150442,56879100 +2003-12-12,31.129999,31.180000,30.490000,30.860001,21.116240,48042500 +2003-12-15,31.500000,31.530001,30.100000,30.240000,20.691990,60872700 +2003-12-16,30.230000,30.450001,29.709999,30.260000,20.705683,56367000 +2003-12-17,30.290001,30.570000,29.959999,30.170000,20.644102,57924100 +2003-12-18,30.309999,30.990000,30.290001,30.900000,21.143606,52707200 +2003-12-19,30.990000,31.150000,30.360001,30.570000,20.917801,55145700 +2003-12-22,30.389999,30.790001,30.170000,30.420000,20.815168,33894800 +2003-12-23,30.500000,31.139999,30.370001,31.110001,21.287304,37282300 +2003-12-24,31.070000,31.260000,30.900000,31.080000,21.266771,15596500 +2003-12-26,31.180000,31.540001,31.139999,31.360001,21.458361,11868800 +2003-12-29,31.540001,32.209999,31.510000,32.150002,21.998930,36514900 +2003-12-30,32.230000,32.369999,31.940001,32.040001,21.923664,31563100 +2003-12-31,32.240002,32.490002,31.910000,32.049999,21.930504,32092800 +2004-01-02,32.360001,32.599998,32.029999,32.160000,22.005775,37343200 +2004-01-05,32.520000,32.970001,32.400002,32.910000,22.518969,42611900 +2004-01-06,32.919998,33.000000,32.619999,32.900002,22.512127,38007600 +2004-01-07,33.330002,34.000000,33.220001,33.990002,23.257963,63665000 +2004-01-08,34.169998,34.349998,33.900002,34.240002,23.429035,50596000 +2004-01-09,33.830002,34.599998,33.799999,33.970001,23.244286,56841100 +2004-01-12,34.270000,34.330002,33.860001,34.150002,23.367451,50664500 +2004-01-13,34.330002,34.389999,33.259998,33.590000,22.984264,68191900 +2004-01-14,33.790001,33.849998,33.139999,33.389999,22.847412,75452000 +2004-01-15,32.709999,33.410000,32.669998,33.060001,22.621613,82565000 +2004-01-16,33.369999,33.380001,32.680000,32.889999,22.505287,54502900 +2004-01-20,32.990002,33.060001,32.279999,32.610001,22.313690,47694300 +2004-01-21,32.240002,32.299999,31.820000,32.200001,22.033138,56228700 +2004-01-22,32.270000,32.360001,31.590000,31.629999,21.643116,51950200 +2004-01-23,31.900000,32.009998,31.480000,31.750000,21.725225,45845000 +2004-01-26,31.700001,32.490002,31.700001,32.430000,22.190519,41329300 +2004-01-27,32.299999,32.349998,31.600000,31.629999,21.643116,51436200 +2004-01-28,31.879999,32.200001,31.170000,31.379999,21.472054,61499400 +2004-01-29,31.559999,31.559999,30.520000,30.889999,21.136765,84928900 +2004-01-30,30.879999,30.990000,30.350000,30.520000,20.883587,64192400 +2004-02-02,30.900000,30.950001,30.209999,30.320000,20.746735,65039500 +2004-02-03,30.440001,31.430000,30.320000,31.400000,21.485735,62375400 +2004-02-04,30.950001,31.000000,30.010000,30.020000,20.567663,79361900 +2004-02-05,30.350000,30.440001,29.750000,29.920000,20.499142,74618700 +2004-02-06,30.049999,30.940001,29.990000,30.879999,21.156881,55401000 +2004-02-09,31.100000,31.100000,30.480000,30.570000,20.944483,36540300 +2004-02-10,30.680000,30.910000,30.330000,30.540001,20.923927,36344100 +2004-02-11,30.870001,31.160000,30.530001,30.990000,21.232233,52150100 +2004-02-12,30.950001,31.379999,30.719999,30.740000,21.060947,38205500 +2004-02-13,31.000000,31.190001,29.860001,30.139999,20.649872,63292500 +2004-02-17,30.379999,30.889999,30.209999,30.809999,21.108910,40220700 +2004-02-18,30.840000,30.959999,30.540001,30.600000,20.965034,42232600 +2004-02-19,30.940001,31.100000,29.850000,29.889999,20.478594,60100700 +2004-02-20,30.090000,30.100000,29.500000,30.000000,20.553955,70620300 +2004-02-23,29.990000,30.030001,28.650000,29.000000,19.868826,92175800 +2004-02-24,28.799999,29.430000,28.770000,29.200001,20.005854,68433000 +2004-02-25,29.430000,29.770000,29.299999,29.620001,20.293606,54661900 +2004-02-26,29.540001,29.870001,29.350000,29.500000,20.211390,45906300 +2004-02-27,29.700001,29.730000,29.100000,29.200001,20.005854,58987700 +2004-03-01,29.040001,29.750000,28.850000,29.690001,20.341564,65372800 +2004-03-02,29.750000,30.139999,29.559999,29.600000,20.279905,65223700 +2004-03-03,29.559999,29.660000,28.840000,29.040001,19.896229,68249000 +2004-03-04,29.070000,29.700001,29.049999,29.650000,20.314154,60135800 +2004-03-05,28.959999,29.379999,28.770000,28.950001,19.834572,118682400 +2004-03-08,29.059999,29.100000,27.620001,27.700001,18.978148,105763200 +2004-03-09,27.750000,28.100000,27.520000,27.980000,19.169989,92538800 +2004-03-10,28.040001,28.250000,27.170000,27.309999,18.710957,88033100 +2004-03-11,27.090000,27.790001,27.040001,27.080000,18.553371,97958600 +2004-03-12,27.500000,27.730000,27.360001,27.690001,18.971300,56526800 +2004-03-15,27.570000,27.590000,27.030001,27.100000,18.567076,54857000 +2004-03-16,27.320000,27.510000,26.719999,27.160000,18.608179,67306500 +2004-03-17,27.440001,27.900000,27.330000,27.790001,19.039822,55548300 +2004-03-18,27.740000,27.809999,27.110001,27.200001,18.635582,70686100 +2004-03-19,27.049999,27.370001,26.379999,26.490000,18.149153,83734500 +2004-03-22,26.260000,26.490000,26.030001,26.230000,17.971004,73006200 +2004-03-23,26.500000,26.700001,26.100000,26.160000,17.923052,70217700 +2004-03-24,26.219999,26.870001,26.160000,26.530001,18.176558,69501200 +2004-03-25,26.900000,27.799999,26.860001,27.790001,19.039822,84754400 +2004-03-26,27.780001,27.850000,27.320000,27.379999,18.758909,65644100 +2004-03-29,27.650000,27.950001,27.500000,27.690001,18.971300,66249300 +2004-03-30,27.430000,27.540001,27.100000,27.430000,18.793167,62191000 +2004-03-31,27.420000,27.469999,27.020000,27.200001,18.635582,57809100 +2004-04-01,27.370001,27.780001,27.280001,27.379999,18.758909,55051700 +2004-04-02,28.000000,28.120001,27.650000,28.120001,19.265911,78672000 +2004-04-05,28.299999,28.559999,28.120001,28.549999,19.560511,47534500 +2004-04-06,28.250000,28.450001,28.040001,28.270000,19.368675,70147800 +2004-04-07,28.080000,28.129999,27.480000,27.620001,18.923342,72680200 +2004-04-08,28.080000,28.139999,27.200001,27.370001,18.752058,71791400 diff --git a/hmm.py b/hmm.py index 4d33ea5..02c1ff3 100644 --- a/hmm.py +++ b/hmm.py @@ -160,7 +160,7 @@ def train_batch(self, X, Z_seq=list()): for e in range(self.n_iter): # EM步骤迭代 # 更新初始概率过程 # E步骤 - print "iter: ", e + print("iter: ", e) b_post_state = [] # 批量累积:状态的后验概率,类型list(array) b_post_adj_state = np.zeros((self.n_state, self.n_state)) # 批量累积:相邻状态的联合后验概率,数组 b_start_prob = np.zeros(self.n_state) # 批量累积初始概率 @@ -219,7 +219,7 @@ def train(self, X, Z_seq=np.array([])): for e in range(self.n_iter): # EM步骤迭代 # 中间参数 - print e, " iter" + print(e, " iter") # E步骤 # 向前向后传递因子 alpha, c = self.forward(X, Z) # P(x,z)