Looking Back at the Higgs Boson Classification Challenge Dataset

Back in 2014, even basic machine learning classification problems were considered difficult. The Kaggle organization sponsors ML competitions, one of which in 2014 was called the Higgs Boson Challenge. See https://www.kaggle.com/c/higgs-boson. Note: I’m not particularly a fan of Kaggle and I don’t recommend them.

Briefly, the problem is simple binary classification. The training data consists of 250,000 items that are simulated high energy physics data. Each item has 30 numeric predictor variables. The class label to predict is either ‘b’ for background noise, or ‘s’ for a signal. Additionally, each data item has an ID, and a scoring weight used by Kaggle when evaluating contest entries.

In high energy particle physics research, physicists collide protons at nearly the speed of light. Sometimes, very rarely, the collisions produce exotic particles like the Higgs boson. But a Higgs boson particle decays almost instantly and produces photons and other particles which can be detected. The vast majority of the data collected is background noise (‘b’) that hides a real signal (‘s’) — roughly 300 signals per 100,000,000,000 background events — and so detection is very difficult. In 2014, the idea of using machine learning for Higgs boson detection was a new idea.

One morning, I was waiting for some work colleagues to respond to some email messages and so just for intellectual entertainment, I figured I’d look at the old Higgs boson data. First, I logged onto Kaggle and downloaded the Higgs training and test data in zipped format. I extracted just the 250,000 raw training items. The raw data looks like:

EventId, DER_mass_MMC, . . . PRI_jet_all_pt, Weight, Label
100000,138.47, . . . 113.497,0.00265331133733,s
. . . 

The first line is a header. For the data lines, the first column at [0] is an ID. Columns [1] to [30] are the predictor variable values. Column [31] is the special weight used by Kaggle for scoring. Column [32] is the class label, ‘s’ or ‘b’.

Many of the values in the raw data are -999.0 which indicates an invalid value. I didn’t want to use all 250,000 training items, so I wrote a utility program to extract the just first 1,000 training data items that didn’t have any invalid values.

Next, I normalized each of the 30 predictor variables by dividing by a constant. The 30 normalization constants I used were: 1000, 200, 500, 600, 10, 4000, 20, 10, 300, 1200, 20, 10, 1, 400, 10, 10, 400, 10, 10, 400, 10, 1200, 10, 600, 10, 10, 400, 10, 10, 1000. The constants were chosen so that all normalized values are between 0.0 and 1.0 (well, actually, a few of the raw values were negative so the normalized values are all between -1.0 and +1.0).

I encoded background as 0 and signal as 1. I formatted all normalized values to 8 decimal places. I saved the first 800 normalized and encoded data items as a training set, and the remaining 200 items as a test set. The resulting training data looks like:

# higgs_train_800.txt
# EventId, DER_mass_MMC, . . . PRI_jet_all_pt, Weight, Label
#
100000,0.13847000,  . . .  0.11349700,0.00265331,1
100005,0.08974400,  . . .  0.19366000,0.08341403,0
. . .
103004,0.13814900,  . . . -0.30544500,0.00150187,1

My next step was to prepare a PyTorch binary classification neural network. First, I created a HiggsDataset class to read the data so that it could be served up in batches (I used size = 2 for my test). And then . . . my work colleagues started responding to my email messages and so I had to get back to work.

I’ll implement the rest of my Higgs boson binary classifier in PyTorch when I get a chance.



Here’s a nice diagram that explains how Higgs bosons are formed and detected. Click to enlarge.


Demo code:

# higgs_dataloader.py

# PyTorch 2.0.0-CPU  Anaconda3-2022.10  Python 3.9.13
# Windows 10/11 

import numpy as np
import torch as T
device = T.device('cpu')  # apply to Tensor or Module

# ---------------------------------------------------------

class HiggsDataset(T.utils.data.Dataset):
  # ID, 30 preds, kaggle wt, class 0 = back, 1 = sig
  # [0] [1]-[30]  [31]        [32]
  def __init__(self, src_file):
    all_data = np.loadtxt(src_file, usecols=range(0,33),
      delimiter=",", comments="#", dtype=np.float32) 

    self.id = T.tensor(all_data[:,0]).to(T.int64).to(device)
    self.score_wt = T.tensor(all_data[:,31]).to(device)
    self.x_data = T.tensor(all_data[:,1:31],
      dtype=T.float32).to(device)
    self.y_data = T.tensor(all_data[:,32],
      dtype=T.float32).to(device)  # float32 required

    self.y_data = self.y_data.reshape(-1,1)  # 2-D required

  def __len__(self):
    return len(self.x_data)

  def __getitem__(self, idx):
    id = self.id[idx]
    score_wt = self.score_wt[idx]
    feats = self.x_data[idx,:]  # idx row, all cols
    lbl = self.y_data[idx,:]    # idx row, the only col
    return (id, score_wt, feats, lbl)  # as a Tuple  

# ---------------------------------------------------------

def main():
  # 1. create Dataset and DataLoader objects
  print("\nCreating Higgs train and test Datasets ")

  train_file = ".\\Data\\higgs_train_800.txt"
  test_file = ".\\Data\\higgs_test_200.txt"

  train_ds = HiggsDataset(train_file)  # 800 rows
  test_ds = HiggsDataset(test_file)    # 200 rows

  bat_size = 2
  train_ldr = T.utils.data.DataLoader(train_ds,
    batch_size=bat_size, shuffle=False)

  for (batch_idx, batch) in enumerate(train_ldr):
    if batch_idx == 3: break  # show just first 3 batches
    id = batch[0]
    wt = batch[1]
    X = batch[2]    # [bs,30]  inputs
    y = batch[3]    # [bs,1]  targets
    print("\nInputs: ")
    print(X)
    print("Target: ")
    print(y)

  print("\nEnd demo ")
if __name__== "__main__":
  main()

Training data:

# higgs_train_800.txt
# EventId,DER_mass_MMC,DER_mass_transverse_met_lep,DER_mass_vis,DER_pt_h,DER_deltaeta_jet_jet,DER_mass_jet_jet,DER_prodeta_jet_jet,DER_deltar_tau_lep,DER_pt_tot,DER_sum_pt,DER_pt_ratio_lep_tau,DER_met_phi_centrality,DER_lep_eta_centrality,PRI_tau_pt,PRI_tau_eta,PRI_tau_phi,PRI_lep_pt,PRI_lep_eta,PRI_lep_phi,PRI_met,PRI_met_phi,PRI_met_sumet,PRI_jet_num,PRI_jet_leading_pt,PRI_jet_leading_eta,PRI_jet_leading_phi,PRI_jet_subleading_pt,PRI_jet_subleading_eta,PRI_jet_subleading_phi,PRI_jet_all_pt,Weight,Label
# ID, 30 predictors, kaggle weight, label: 0 = b = background/noise, 1 = s = signal
# predictor normalization constants: 1000, 200, 500, 600, 10, 4000, 20, 10, 300, 1200, 20, 10, 1, 400, 10, 10, 400, 10, 10, 400, 10, 1200, 10, 600, 10, 10, 400, 10, 10, 1000
#
100000,0.13847000,0.25827500,0.19565400,0.04663333,0.09100000,0.03117775,0.13330000,0.30640000,0.13976000,0.16480000,0.07910000,0.13960000,0.20000000,0.08159500,0.10170000,0.03810000,0.12906500,0.22730000,-0.24140000,0.04206000,-0.02770000,0.21561083,0.20000000,0.11239167,0.21500000,0.04440000,0.11515500,0.12400000,-0.24750000,0.11349700,0.00265331,1
100005,0.08974400,0.06775000,0.11829800,0.19390667,0.26360000,0.07114600,-0.02700000,0.13620000,0.20539667,0.23239667,0.02940000,0.04790000,0.97500000,0.13412750,0.03710000,0.13290000,0.07891250,-0.08840000,0.18570000,0.10183750,0.22370000,0.23570750,0.30000000,0.15091167,-0.24120000,-0.06530000,0.14041250,0.02240000,0.31060000,0.19366000,0.08341403,0
100006,0.14875400,0.14431000,0.21556400,0.17688333,0.07330000,0.03958975,0.00565000,0.29410000,0.00848333,0.25497250,0.16855000,0.13930000,0.79100000,0.07212500,0.11130000,0.24090000,0.24310000,0.06750000,-0.09660000,0.09605250,-0.14430000,0.24506167,0.20000000,0.20501667,0.08640000,0.14500000,0.14216750,0.01310000,-0.27670000,0.17987700,0.00265331,1
100011,0.11474400,0.05143000,0.15142400,0.05136000,0.25630000,0.06314975,-0.07005000,0.28880000,0.12248333,0.19983667,0.05305000,0.13640000,0.76900000,0.08994000,-0.06690000,-0.03420000,0.09547000,-0.01650000,0.25020000,0.05596250,0.21480000,0.24212250,0.30000000,0.12795500,-0.07900000,0.03030000,0.14219000,0.17730000,-0.20790000,0.16564000,0.30716952,0
100023,0.14148100,0.00368000,0.22316200,0.29012500,0.19550000,0.09108600,-0.04615000,0.13350000,0.02221000,0.36738250,0.03260000,0.10420000,0.20700000,0.24641250,0.01900000,-0.15060000,0.16071250,0.14050000,-0.09520000,0.04490000,-0.09730000,0.37898750,0.20000000,0.32588833,0.11560000,0.14160000,0.20619250,-0.07980000,-0.27850000,0.27800900,0.00150270,1
100027,0.11127100,0.13590000,0.14128400,0.24127667,0.49360000,0.25533050,-0.29170000,0.17950000,0.00122333,0.25832667,0.14240000,0.13060000,0.69600000,0.06224750,-0.00890000,-0.23420000,0.17730750,-0.09800000,-0.07830000,0.17341000,-0.11730000,0.24156333,0.20000000,0.28452000,-0.19610000,0.22200000,0.10864500,0.29740000,-0.01030000,0.21417000,0.00150270,1
100029,0.09876100,0.07012000,0.14846000,0.22134333,0.36760000,0.07896350,-0.13325000,0.12610000,0.07763333,0.19944167,0.07705000,0.13060000,0.98200000,0.12406000,-0.10930000,0.19950000,0.19113500,-0.05950000,0.08360000,0.06609500,0.11500000,0.29817917,0.20000000,0.13437833,0.09930000,-0.20180000,0.08156250,-0.26830000,-0.14670000,0.11325200,0.30979516,0
100031,0.12168100,0.03020500,0.14640400,0.33019000,0.26390000,0.07398550,-0.08690000,0.11480000,0.10339000,0.34376500,0.01310000,0.08380000,0.98400000,0.31517750,0.09530000,0.24920000,0.08246500,0.02310000,-0.28990000,0.16272500,-0.27690000,0.42951250,0.30000000,0.30408167,0.13830000,0.00010000,0.09501500,-0.12570000,-0.06090000,0.25346100,0.00150270,1
100032,0.12918600,0.32022500,0.13899800,0.10527500,0.50870000,0.21369975,-0.30795000,0.27450000,0.02193333,0.16923333,0.03845000,0.13550000,0.82000000,0.09441000,0.02150000,0.07400000,0.07263500,-0.05750000,-0.29140000,0.11313250,0.12040000,0.16655083,0.20000000,0.13528333,0.31020000,-0.09770000,0.13773000,-0.19850000,0.30650000,0.13626200,0.00150270,1
100033,0.12311200,0.31379000,0.17340400,0.06650167,0.31600000,0.06104525,-0.10695000,0.28250000,0.03244000,0.15349500,0.10445000,0.13370000,0.92900000,0.06518750,-0.01750000,-0.07820000,0.13619000,0.10260000,0.29440000,0.05904500,-0.12090000,0.25785833,0.20000000,0.11854500,0.21770000,0.05580000,0.08128750,-0.09830000,-0.26280000,0.10364200,1.13515160,0
100038,0.13836200,0.19017000,0.19807600,0.10836833,0.18140000,0.06886525,0.07530000,0.26050000,0.32416667,0.33605583,0.09375000,0.00230000,0.00000000,0.05331500,0.14590000,-0.16150000,0.09998500,-0.11330000,-0.18690000,0.04523250,-0.02990000,0.37807500,0.30000000,0.19100333,0.06190000,0.01650000,0.19263250,0.24330000,-0.26370000,0.34194700,0.01863612,1
100039,0.12050600,0.11364500,0.17777800,0.05999833,0.02180000,0.04179375,0.25850000,0.24650000,0.10902000,0.24529083,0.07240000,0.11710000,0.00000000,0.09776750,-0.10810000,0.14310000,0.14152500,-0.11850000,-0.10320000,0.00678250,0.12900000,0.20322250,0.30000000,0.14733167,-0.21680000,-0.14230000,0.19317500,-0.23850000,0.18760000,0.19863200,0.00265331,1
100042,0.12251600,0.25091500,0.17536400,0.17067167,0.32800000,0.11989750,-0.12820000,0.18810000,0.00243667,0.24790833,0.02385000,0.10250000,0.63100000,0.19274250,-0.03030000,-0.26940000,0.09186500,-0.07580000,0.17640000,0.06980250,-0.27190000,0.22935167,0.20000000,0.16366333,0.19950000,0.09610000,0.21362000,-0.12850000,-0.09950000,0.18364600,0.00150270,1
100045,0.02778800,0.34016000,0.04706000,0.05562500,0.13700000,0.01954725,0.17215000,0.07800000,0.03400333,0.11080417,0.06865000,-0.07760000,0.02400000,0.06591250,0.06640000,0.16930000,0.09050000,0.06560000,0.24740000,0.08048750,-0.04980000,0.19444500,0.20000000,0.06289000,0.26630000,-0.04910000,0.08166500,0.12930000,-0.23580000,0.07040000,1.91655444,0
100046,0.20147300,0.11501000,0.20808200,0.10081667,0.44370000,0.12284375,-0.24580000,0.29680000,0.00595333,0.20644250,0.01285000,0.14080000,0.68800000,0.25654500,-0.14750000,0.24090000,0.06583500,-0.12810000,-0.09130000,0.11812250,-0.15770000,0.28116500,0.20000000,0.14407833,-0.21420000,0.02980000,0.08083000,0.22950000,-0.22730000,0.11877900,0.01863612,1
100051,0.10414200,0.18970000,0.13805800,0.08430000,0.39410000,0.10295325,-0.09300000,0.24480000,0.01398000,0.15474000,0.04945000,0.14070000,0.99100000,0.08827750,0.09480000,-0.21670000,0.08728000,0.16050000,0.17580000,0.06026000,-0.30990000,0.16856750,0.20000000,0.11561833,-0.05480000,0.05700000,0.11523500,0.33920000,-0.17250000,0.11546500,0.00150270,1
100057,0.14852300,0.15955500,0.19499400,0.28512333,0.12090000,0.06565250,-0.00335000,0.14230000,0.06953000,0.35007417,0.05090000,0.05580000,0.00000000,0.18495500,-0.19870000,-0.28640000,0.18837000,-0.19920000,-0.14410000,0.21732500,-0.10440000,0.43446667,0.20000000,0.35741500,-0.00580000,0.15250000,0.14077500,0.11510000,-0.17430000,0.27075900,0.00150270,1
100059,0.07381900,0.41868500,0.12131800,0.07239167,0.14940000,0.04054775,-0.02730000,0.15760000,0.15269000,0.22768000,0.10135000,-0.13400000,0.00100000,0.07500000,0.20200000,-0.18030000,0.15200750,0.19050000,0.29080000,0.09983250,0.08770000,0.23609500,0.30000000,0.13340333,-0.08560000,0.13040000,0.13125250,0.06380000,-0.11140000,0.18241300,0.74405625,0
100060,0.10364600,0.20459000,0.12848800,0.22621000,0.06800000,0.01826400,0.08245000,0.15240000,0.06178333,0.25418917,0.02585000,0.12870000,0.95900000,0.15278500,-0.05950000,0.13530000,0.07899750,-0.13980000,0.26480000,0.14956250,0.16680000,0.33523083,0.30000000,0.13029000,-0.16680000,-0.09780000,0.14524250,-0.09890000,-0.17270000,0.21231400,0.00150270,1
100068,0.08853200,0.08172500,0.10028000,0.15884833,0.45570000,0.14503150,-0.17180000,0.17710000,0.11385333,0.15637833,0.06450000,0.13060000,0.58500000,0.06666250,-0.12010000,0.01750000,0.08601500,-0.03440000,0.17250000,0.13043750,0.13370000,0.27167250,0.20000000,0.13999333,-0.09530000,-0.15220000,0.10647000,0.36040000,-0.21220000,0.12658400,0.07135714,0
100070,0.12025300,0.15072000,0.16435200,0.06456000,0.39180000,0.10189475,-0.17285000,0.25510000,0.15433667,0.20258583,0.05085000,0.14000000,0.43400000,0.09980750,0.19630000,0.00620000,0.10150500,0.11740000,-0.23640000,0.02781500,-0.07880000,0.28129917,0.30000000,0.09900167,0.13420000,-0.03690000,0.13427750,-0.25770000,0.21400000,0.16257700,0.00150270,1
100077,0.08662900,0.16928000,0.13500000,0.08180167,0.29780000,0.05729000,-0.08350000,0.19510000,0.05933000,0.17077500,0.06365000,-0.07000000,0.42200000,0.07135500,-0.04760000,0.29730000,0.09082000,-0.21240000,0.19290000,0.03142250,0.01000000,0.17949417,0.30000000,0.09491833,0.07490000,-0.02960000,0.10720000,-0.22290000,-0.28250000,0.14006000,0.30716952,0
100078,0.13235000,0.32929000,0.21314000,0.20806667,0.58220000,0.38969325,-0.42115000,0.19310000,0.11595667,0.25280833,0.17395000,-0.02400000,0.99800000,0.07291750,0.17690000,0.19720000,0.25370750,0.03620000,-0.29890000,0.09355500,-0.18620000,0.27114417,0.20000000,0.16989000,0.31390000,0.04440000,0.17696500,-0.26830000,-0.05670000,0.17272100,0.00150270,1
100082,0.16664000,0.07934000,0.16095400,0.12985833,0.15750000,0.05378025,-0.02720000,0.28710000,0.09345000,0.34214000,0.03455000,0.13100000,0.15900000,0.09860250,-0.06400000,-0.26220000,0.06817250,0.07930000,0.11740000,0.17335000,0.15410000,0.37761750,0.30000000,0.14232000,-0.10620000,0.01660000,0.20389750,0.05130000,-0.22550000,0.34385800,0.00150270,1
100083,0.14599000,0.34431000,0.19468400,0.04756333,0.46640000,0.09922875,-0.25745000,0.30880000,0.08303000,0.14539167,0.10695000,0.14100000,0.67700000,0.07808500,-0.01850000,0.29450000,0.16699000,-0.09170000,-0.00560000,0.05201000,0.22990000,0.16575333,0.20000000,0.06596167,0.28710000,-0.23160000,0.09215750,-0.17930000,0.12950000,0.07644000,1.08294034,0
100084,0.09966800,0.12993000,0.12127400,0.32044500,0.10480000,0.05783650,-0.01365000,0.14050000,0.12651667,0.36306583,0.16410000,0.06770000,0.47500000,0.05961250,-0.05600000,0.11280000,0.19562000,0.04180000,0.01190000,0.26347250,-0.01680000,0.32736500,0.30000000,0.29415000,-0.05580000,0.26640000,0.18391500,0.04900000,-0.16160000,0.33358600,0.35853999,0
100090,0.15145000,0.19663000,0.21653600,0.03287833,0.07260000,0.04484975,0.04365000,0.33870000,0.01596333,0.25462167,0.06195000,0.14140000,0.00000000,0.09084250,0.07100000,-0.00140000,0.11253500,0.23170000,-0.29960000,0.03403000,-0.11600000,0.32552500,0.30000000,0.14396500,0.13650000,0.01550000,0.20106000,0.06390000,0.31180000,0.22419500,1.11353315,0
100093,0.09637900,0.08559000,0.12674600,0.11839833,0.61080000,0.30106075,-0.41545000,0.16770000,0.07426000,0.17221917,0.02130000,0.03080000,0.89500000,0.16073250,0.04180000,-0.25660000,0.06848250,0.00100000,0.20910000,0.09074000,0.15420000,0.21786833,0.20000000,0.11045000,0.20450000,0.00500000,0.12176750,-0.40630000,-0.13190000,0.11497700,0.00150270,1
100097,0.12457500,0.17279000,0.20039400,0.26841833,0.32430000,0.08114925,-0.13130000,0.14790000,0.20449000,0.26279500,0.14565000,0.02270000,0.32800000,0.09173750,0.02180000,-0.05630000,0.26724250,0.16480000,-0.09370000,0.06391250,-0.16110000,0.36020083,0.30000000,0.16193333,-0.16860000,0.28580000,0.10702000,0.15570000,0.15340000,0.17176300,0.01863612,1
100098,0.07757800,0.36138500,0.11633600,0.25601000,0.26040000,0.09273425,-0.07985000,0.09880000,0.13918667,0.27555833,0.10160000,0.05720000,0.06100000,0.10451000,-0.12980000,0.19300000,0.21238500,-0.18660000,0.27390000,0.12536250,0.15650000,0.29315000,0.20000000,0.18609333,-0.09870000,-0.00350000,0.23064000,0.16170000,-0.14330000,0.20391100,0.30979516,0
100099,0.10735000,0.10177000,0.15551000,0.14840667,0.44490000,0.14120900,-0.14950000,0.24820000,0.10623667,0.19428250,0.18050000,0.13350000,0.25100000,0.05404250,-0.12680000,-0.11140000,0.19508500,-0.12160000,0.26880000,0.06791750,0.31340000,0.27285167,0.20000000,0.15892000,-0.08250000,-0.02010000,0.09533750,0.36250000,0.29300000,0.13348800,2.31755816,0
100101,0.09578700,0.12054500,0.12613800,0.08332333,0.02370000,0.03652950,0.19295000,0.22660000,0.18008667,0.19907333,0.04455000,0.14110000,0.00000000,0.08425000,-0.12610000,0.18270000,0.07504250,-0.02950000,-0.02230000,0.04192250,0.09110000,0.34665917,0.20000000,0.22635833,-0.20870000,-0.21990000,0.09839000,-0.18500000,0.04900000,0.17517100,0.00150270,1
100102,0.10107900,0.45658500,0.15838000,0.12220500,0.24630000,0.06544025,-0.06790000,0.26000000,0.19385000,0.28190250,0.20455000,-0.14110000,0.65600000,0.05072750,-0.12790000,-0.25920000,0.20753250,-0.11990000,0.00070000,0.11940750,0.16290000,0.31336500,0.30000000,0.15074167,-0.16300000,-0.11660000,0.14741250,0.08330000,0.30920000,0.23497900,0.74405625,0
100103,0.13012300,0.04125500,0.16346400,0.13510833,0.30220000,0.06553200,-0.10600000,0.21110000,0.17192333,0.19764000,0.03580000,0.11990000,0.99500000,0.12456000,0.07840000,0.31270000,0.08917500,-0.02920000,0.13110000,0.08877000,0.15440000,0.30301333,0.30000000,0.12210000,-0.19150000,-0.16620000,0.10339250,0.11070000,0.13000000,0.15167400,0.00150270,1
100105,0.20857300,0.03427000,0.30867200,0.09504667,0.26850000,0.04593825,0.00130000,0.35810000,0.01882000,0.13423167,0.10320000,0.13620000,0.60100000,0.05126500,-0.10170000,0.07580000,0.10582250,0.23110000,-0.05630000,0.01412750,-0.01160000,0.21215417,0.20000000,0.11129000,0.00100000,-0.27310000,0.07867500,0.26950000,0.13420000,0.09824300,0.74405625,0
100106,0.09161600,0.00122500,0.12568400,0.02329000,0.36550000,0.11210225,-0.08700000,0.31020000,0.02543333,0.16979167,0.04780000,0.06180000,0.39600000,0.08005000,0.06600000,0.09880000,0.07654500,0.04950000,-0.21980000,0.03822750,-0.21870000,0.20430667,0.20000000,0.13058333,-0.30920000,0.01360000,0.15690250,0.05630000,0.30650000,0.14111100,0.00150270,1
100107,0.10982900,0.01661000,0.13067200,0.08703333,0.28930000,0.05280375,0.15305000,0.31290000,0.00382667,0.13528000,0.06175000,0.14020000,0.54300000,0.07273500,0.14240000,-0.29940000,0.08983000,0.11390000,0.01220000,0.11333500,0.00400000,0.12366167,0.20000000,0.09302333,0.37160000,-0.23430000,0.10374000,0.08240000,0.19080000,0.09731000,0.00150270,1
100111,0.08752300,0.12727500,0.11905000,0.14265000,0.48680000,0.11579525,-0.16995000,0.17390000,0.05413000,0.13389833,0.07270000,0.13920000,0.40100000,0.08046000,0.05350000,-0.15620000,0.11696000,0.07380000,0.01650000,0.08272000,-0.04940000,0.17088750,0.20000000,0.07080667,0.08450000,0.26050000,0.09806500,-0.40230000,0.23140000,0.08171000,0.07389913,0
100118,0.11899600,0.01171000,0.14428400,0.15261000,0.03130000,0.07048850,0.04410000,0.22670000,0.33905333,0.36040000,0.05285000,0.06780000,0.00000000,0.06311750,0.09740000,-0.17670000,0.06671500,-0.12870000,-0.19410000,0.10027000,-0.20130000,0.41680583,0.30000000,0.24695667,0.11090000,-0.12100000,0.35204500,0.07960000,0.13440000,0.38054700,0.00150270,1
100125,0.12980300,0.02899500,0.19341200,0.25828333,0.40230000,0.14510225,-0.04595000,0.15120000,0.08772000,0.28990750,0.01135000,0.07210000,0.63600000,0.36884250,-0.06110000,-0.29380000,0.08362250,-0.04150000,-0.14390000,0.03911750,-0.11850000,0.35879333,0.20000000,0.18532167,0.02430000,0.04540000,0.13927500,-0.37790000,0.02130000,0.16690400,0.00150270,1
100128,0.09689500,0.17121500,0.12113200,0.14669667,0.06900000,0.01531425,0.13655000,0.17920000,0.00809000,0.14904750,0.03990000,0.14110000,0.39800000,0.10833500,0.18850000,-0.01430000,0.08642250,0.20200000,-0.19300000,0.09692250,-0.09570000,0.16543000,0.20000000,0.09880333,0.20330000,0.26030000,0.10417750,0.13430000,0.15870000,0.10095300,0.07389913,0
100135,0.13919100,0.09551000,0.19261600,0.11558000,0.47610000,0.26125525,-0.28310000,0.23800000,0.05282333,0.23886917,0.06180000,0.13540000,0.89200000,0.10269500,-0.02750000,0.18780000,0.12693750,0.08700000,-0.23200000,0.05753500,-0.28860000,0.29257583,0.20000000,0.18876000,0.24470000,-0.07970000,0.20383000,-0.23140000,0.15030000,0.19478900,0.00150270,1
100144,0.13345100,0.23110500,0.12597000,0.16640500,0.00060000,0.00795675,0.00195000,0.22040000,0.08603000,0.16711000,0.03150000,0.14140000,0.00000000,0.11116000,0.12480000,0.27160000,0.07004750,0.12780000,0.05130000,0.16412750,0.16510000,0.24723417,0.30000000,0.08756833,0.01940000,-0.08610000,0.10478250,0.02000000,-0.14020000,0.12804900,1.37339095,0
100147,0.10835100,0.14128500,0.14116200,0.30856333,0.25940000,0.07525550,-0.04855000,0.11490000,0.01154000,0.25414833,0.05650000,0.14050000,0.52400000,0.14309500,0.10110000,0.16770000,0.16167500,0.18850000,0.09320000,0.17918250,0.13500000,0.30894000,0.20000000,0.19246000,-0.04540000,-0.17560000,0.16898500,0.21400000,-0.19370000,0.18307000,0.00150270,1
100150,0.12816700,0.26072500,0.17382400,0.17228833,0.09000000,0.01190900,0.24040000,0.22770000,0.00645333,0.17708750,0.01650000,0.12050000,0.09000000,0.20454500,-0.11220000,0.25860000,0.06757250,-0.15400000,-0.14590000,0.08757250,0.28020000,0.24381833,0.20000000,0.12067667,-0.26890000,-0.02950000,0.07813000,-0.17880000,-0.02870000,0.10365800,0.01863612,1
100154,0.28224200,0.23971500,0.44916600,0.25657833,0.57620000,0.35719400,-0.41005000,0.32070000,0.01415000,0.33932917,0.19270000,0.14020000,0.61100000,0.11169250,-0.02220000,0.09340000,0.43050000,-0.17070000,-0.25070000,0.06976500,0.30700000,0.39272083,0.20000000,0.24410500,-0.25670000,0.07350000,0.10964000,0.31950000,-0.07480000,0.19031900,0.07389913,0
100158,0.12167200,0.07837500,0.19088200,0.15835833,0.30150000,0.08246550,-0.10710000,0.15720000,0.11269000,0.33196333,0.05975000,-0.11370000,0.69100000,0.15412500,0.04750000,-0.13120000,0.18419000,0.05550000,-0.28820000,0.00363000,0.16820000,0.31320167,0.30000000,0.15628000,0.11460000,0.19090000,0.13465500,-0.18700000,-0.01890000,0.26303000,0.00265331,1
100164,0.12520700,0.04095000,0.16978400,0.12166167,0.08330000,0.01022200,-0.00185000,0.20330000,0.11234333,0.13387083,0.03035000,0.06910000,0.01400000,0.14393250,-0.01540000,0.27510000,0.08731250,-0.12320000,0.10280000,0.07085750,0.07670000,0.20087333,0.20000000,0.06344500,0.00460000,-0.22010000,0.07519750,-0.07870000,-0.13900000,0.06814700,0.06406078,0
100174,0.08965600,0.24813000,0.12823400,0.03800333,0.01910000,0.03604675,0.00685000,0.26650000,0.09281667,0.17557083,0.05005000,-0.14110000,0.00000000,0.08213750,0.21820000,-0.25630000,0.08220250,0.20000000,0.10620000,0.09426250,-0.05020000,0.19550417,0.20000000,0.13019333,0.04780000,-0.13020000,0.16708000,0.02870000,0.21680000,0.14494900,1.45484847,0
100178,0.07573300,0.45492500,0.11796400,0.07706833,0.07180000,0.02872950,0.00005000,0.17450000,0.08063333,0.16841667,0.13105000,-0.04440000,0.00000000,0.05936250,-0.23890000,0.04360000,0.15557250,-0.22720000,-0.13060000,0.08708250,0.14070000,0.19501167,0.20000000,0.13487833,0.00010000,-0.29540000,0.08800000,0.07200000,0.01890000,0.11612600,1.03409965,0
100183,0.08233600,0.24720000,0.10828600,0.04291000,0.09180000,0.01741725,0.23310000,0.28030000,0.07504333,0.09794167,0.05520000,0.12510000,0.00000000,0.06439750,-0.08710000,0.19680000,0.07110000,-0.05130000,-0.08120000,0.05745000,0.18140000,0.16642583,0.20000000,0.05384000,0.26660000,0.23190000,0.07756750,0.17490000,-0.14070000,0.06333100,0.01863612,1
100188,0.17257700,0.47597500,0.17969000,0.04128000,0.14410000,0.02700550,-0.02320000,0.28840000,0.01158333,0.14931417,0.10095000,0.11270000,0.05600000,0.07573000,-0.07860000,-0.15520000,0.15286500,-0.14580000,0.12530000,0.09621250,-0.15000000,0.13718917,0.20000000,0.09039500,0.04870000,0.30400000,0.08375500,-0.09540000,0.02550000,0.08773900,2.14252296,0
100191,0.09517700,0.16314000,0.12183200,0.14172000,0.00190000,0.00885275,0.01680000,0.19270000,0.00384667,0.13445500,0.02995000,0.13710000,0.00000000,0.11037750,0.03250000,-0.27940000,0.06607000,0.12710000,0.18100000,0.09017250,0.29240000,0.11924500,0.20000000,0.09133667,-0.05890000,-0.05220000,0.08991250,-0.05700000,0.02190000,0.09076700,1.45484847,0
100192,0.10236200,0.06058000,0.15660000,0.25675500,0.42610000,0.18145125,-0.17560000,0.14440000,0.23858000,0.30965000,0.18855000,0.07920000,0.44800000,0.07596250,-0.11060000,-0.02460000,0.28644250,-0.08970000,-0.16740000,0.08500750,-0.18690000,0.40290083,0.30000000,0.23076000,-0.11170000,0.14300000,0.13662750,0.31440000,0.06880000,0.22661800,0.06406078,0
100202,0.09823000,0.18626500,0.12735200,0.05436667,0.42970000,0.06970300,-0.12965000,0.28120000,0.06992000,0.13461083,0.03890000,0.14100000,1.00000000,0.09140750,0.13760000,0.28540000,0.07110250,0.14550000,0.00430000,0.04862750,0.18710000,0.18756333,0.30000000,0.05394667,0.35710000,-0.08190000,0.08020250,-0.07260000,-0.28020000,0.09652900,0.07389913,0
100205,0.15709600,0.11603000,0.22758600,0.16094000,0.26750000,0.08725950,-0.02875000,0.25170000,0.20857333,0.29958833,0.01370000,0.13980000,0.30600000,0.28033250,0.07730000,0.07910000,0.07680250,0.03540000,-0.16900000,0.02013500,-0.00310000,0.45376333,0.30000000,0.15918000,-0.24400000,0.22870000,0.21189000,0.02360000,-0.22310000,0.21665300,0.30097511,0
100206,0.17048800,0.10752500,0.16660000,0.11789500,0.04630000,0.06174600,-0.00195000,0.27490000,0.26306333,0.33792333,0.03020000,0.13610000,0.07700000,0.12929750,0.04570000,0.09360000,0.07814000,-0.02510000,-0.26900000,0.16698500,0.31180000,0.37366833,0.30000000,0.21173167,-0.01110000,0.21660000,0.28974250,0.03520000,-0.06220000,0.32253300,0.35853999,0
100211,0.08155500,0.09825000,0.08878800,0.14292167,0.06170000,0.01276725,-0.00350000,0.17580000,0.17610333,0.21651333,0.05560000,0.13480000,0.00000000,0.06800500,0.19890000,-0.27400000,0.07562000,0.22030000,0.17980000,0.12421000,0.23100000,0.21662167,0.30000000,0.11845167,0.04690000,-0.01910000,0.14498250,-0.01490000,-0.06080000,0.20236600,0.35853999,0
100214,0.06644700,0.03360500,0.06788400,0.29772167,0.00650000,0.13835900,0.00125000,0.08100000,0.08384333,0.55491250,0.04700000,0.12050000,0.00000000,0.10787750,-0.00520000,0.02130000,0.10144750,-0.06320000,0.07780000,0.24745750,0.06720000,0.65122917,0.20000000,0.63167500,0.01920000,-0.24260000,0.50789750,0.01280000,0.09500000,0.58216500,0.07389913,0
100219,0.13731300,0.00025500,0.19444200,0.19194833,0.40350000,0.13484075,-0.16660000,0.17350000,0.00492667,0.22675083,0.05955000,0.10010000,0.98800000,0.14597250,0.10940000,-0.13080000,0.17388500,0.10770000,-0.30430000,0.09922250,-0.30420000,0.24683583,0.20000000,0.12517667,-0.11580000,0.00200000,0.17262750,0.28760000,0.13160000,0.14415700,0.00150270,1
100232,0.08431800,0.10956500,0.07862600,0.39139500,0.04410000,0.01190850,0.05820000,0.09920000,0.15378333,0.30030667,0.09830000,0.06710000,0.00000000,0.07016000,-0.02120000,-0.17800000,0.13794250,0.05400000,-0.11330000,0.40185250,-0.09000000,0.25687000,0.30000000,0.19655500,-0.13220000,0.20310000,0.18574500,-0.08810000,0.19820000,0.27712700,0.07135714,0
100236,0.12654700,0.24457000,0.16247000,0.32548833,0.09160000,0.03218525,0.12515000,0.11960000,0.02463667,0.29830083,0.04500000,0.13680000,0.79200000,0.18636750,-0.23470000,-0.27020000,0.16777500,-0.18680000,0.24860000,0.18666750,-0.30920000,0.29229583,0.20000000,0.21006667,-0.21050000,-0.03220000,0.22566000,-0.11890000,0.04050000,0.21630400,0.00150270,1
100240,0.11048100,0.21027500,0.14777200,0.08308667,0.36600000,0.09644600,-0.06245000,0.26090000,0.15093333,0.18062667,0.04970000,0.10980000,0.02400000,0.07308250,-0.03870000,0.31200000,0.07264250,-0.20800000,-0.11780000,0.05804500,-0.30650000,0.22396667,0.30000000,0.10404833,-0.03810000,-0.00620000,0.14478500,0.32790000,0.30520000,0.15846300,0.08341403,0
100243,0.08814700,0.38068000,0.13518600,0.21682333,0.25410000,0.11398900,-0.08070000,0.11190000,0.14344333,0.38888167,0.02800000,0.00190000,0.61700000,0.20753750,0.03170000,-0.16710000,0.11623000,0.08540000,-0.06900000,0.10757500,-0.27260000,0.41093417,0.30000000,0.38436167,0.12420000,0.16090000,0.15261500,-0.12990000,-0.12470000,0.33715100,0.07135714,0
100244,0.11464800,0.12192500,0.14738800,0.08272500,0.06470000,0.02655625,0.05745000,0.26380000,0.04470000,0.21618917,0.03855000,0.14080000,0.00000000,0.09317750,-0.11780000,0.25570000,0.07188500,0.00400000,-0.13870000,0.06086750,-0.23440000,0.28242583,0.30000000,0.09835667,0.07960000,-0.05120000,0.11737750,0.14430000,0.19460000,0.19340200,0.06406078,0
100245,0.15959200,0.06531500,0.17647600,0.45856167,0.33420000,0.26409875,-0.13430000,0.10640000,0.05030667,0.52327417,0.02440000,0.11890000,0.88300000,0.30513000,-0.04310000,0.26160000,0.14890750,-0.09160000,0.16700000,0.29831250,0.18250000,0.64066583,0.20000000,0.55663167,0.13450000,-0.12870000,0.28084250,-0.19970000,0.10450000,0.44631500,0.00150270,1
100246,0.10739200,0.09888000,0.06631000,0.38338167,0.34830000,0.24802125,-0.14110000,0.10230000,0.06964667,0.38901000,0.03520000,0.14130000,1.00000000,0.09537750,-0.03200000,0.02880000,0.06716250,0.04940000,0.09080000,0.42031250,0.06130000,0.46311917,0.20000000,0.51486167,-0.12820000,-0.26860000,0.23219750,0.22020000,-0.01390000,0.40179600,0.00150270,1
100248,0.10290000,0.01942500,0.13822400,0.15109333,0.06610000,0.02887000,0.43485000,0.21890000,0.11068333,0.20007333,0.11810000,0.08980000,0.00000000,0.06302500,-0.15880000,-0.30920000,0.14883750,-0.14030000,0.10100000,0.11008000,0.09340000,0.16561583,0.30000000,0.10882000,-0.26370000,-0.08730000,0.14063750,-0.32980000,-0.30130000,0.15534300,0.01863612,1
100249,0.09125500,0.17237000,0.13968600,0.18836667,0.11240000,0.02575850,0.00710000,0.12980000,0.01753333,0.21118583,0.01495000,-0.00860000,0.96100000,0.23362750,0.04200000,-0.28110000,0.06988250,-0.07890000,0.30020000,0.05248000,0.14190000,0.31175083,0.20000000,0.14852167,-0.12390000,-0.03410000,0.10726750,-0.01150000,0.07900000,0.13201900,0.01863612,1
100250,0.11480300,0.26591500,0.13003200,0.08503333,0.33840000,0.06600075,-0.07565000,0.27110000,0.01966667,0.13634000,0.04315000,0.13550000,0.48000000,0.08173750,0.06400000,-0.18150000,0.07053000,-0.02880000,0.19210000,0.08595500,-0.23150000,0.17224333,0.20000000,0.11846000,-0.05300000,0.11470000,0.07906000,0.28540000,-0.11330000,0.10270000,0.00150270,1
100255,0.10395200,0.08859000,0.14204400,0.08376667,0.06890000,0.01975100,0.51600000,0.28840000,0.00244667,0.12592333,0.10535000,0.13710000,0.00000000,0.05068750,0.08300000,0.11540000,0.10679500,0.21940000,-0.25880000,0.05508000,0.31090000,0.14959417,0.20000000,0.09248167,0.28860000,0.06680000,0.08156500,0.35760000,-0.13640000,0.08811600,1.45484847,0
100259,0.14157400,0.07772000,0.20406400,0.07479000,0.37230000,0.07392025,-0.10395000,0.31610000,0.15466000,0.16357750,0.09810000,0.13780000,0.31800000,0.06455000,0.09920000,0.21550000,0.12665500,-0.08140000,-0.04400000,0.03350000,0.01660000,0.15213750,0.30000000,0.07599167,-0.06840000,0.04480000,0.10952500,0.30390000,-0.27020000,0.11981200,0.00150270,1
100263,0.14806300,0.33504000,0.23180000,0.05724167,0.24550000,0.04847550,-0.06785000,0.30080000,0.17483333,0.20504833,0.09010000,-0.06500000,0.17500000,0.05319750,-0.16370000,-0.18520000,0.09584750,0.12340000,-0.27510000,0.07487750,0.00900000,0.20688417,0.30000000,0.12165500,-0.16140000,0.27760000,0.09981750,0.08410000,0.06880000,0.18644000,0.74405625,0
100274,0.06346700,0.16757000,0.06985600,0.17393833,0.33300000,0.09708100,-0.13460000,0.12500000,0.00841000,0.19493000,0.07600000,0.13770000,0.42700000,0.05991500,-0.15730000,-0.14360000,0.09110000,-0.12520000,-0.02280000,0.13837000,-0.09930000,0.21883333,0.20000000,0.22800000,-0.13810000,0.23830000,0.09177500,0.19490000,-0.04840000,0.17351000,0.30979516,0
100280,0.10990900,0.15752000,0.13718000,0.20030000,0.26780000,0.03836525,-0.08080000,0.16410000,0.14639333,0.14604917,0.05640000,0.14060000,0.99800000,0.10514250,-0.12090000,-0.13220000,0.11858500,-0.04770000,0.01470000,0.13423000,-0.04880000,0.18457417,0.20000000,0.07331167,-0.17590000,0.22420000,0.10445250,0.09190000,0.24990000,0.08576800,0.01863612,1
100284,0.09947500,0.05595500,0.12057800,0.20657500,0.00330000,0.00764050,0.00515000,0.13750000,0.09893333,0.16446000,0.03590000,0.12230000,0.00000000,0.13976500,-0.04890000,0.28770000,0.10042000,-0.06540000,-0.20420000,0.13461500,-0.22830000,0.23461667,0.20000000,0.11789000,-0.03380000,0.05830000,0.07636000,-0.03050000,-0.00250000,0.10127800,0.07389913,0
100287,0.01861400,0.52442000,0.03014600,0.23270333,0.08850000,0.02203050,0.14580000,0.02670000,0.03787333,0.25921500,0.28625000,-0.00440000,0.96800000,0.05811500,0.15820000,0.01300000,0.33270500,0.18440000,0.01850000,0.05963500,0.25780000,0.17704833,0.20000000,0.15206833,0.13220000,-0.25190000,0.15872500,0.22060000,0.31050000,0.15473000,2.36285454,0
100295,0.13108700,0.12625000,0.17124800,0.13711833,0.03340000,0.01936400,0.00755000,0.21510000,0.09826000,0.15122000,0.04425000,0.13870000,0.00000000,0.11977000,0.03210000,0.27310000,0.10594500,0.12190000,0.07760000,0.08251250,0.14650000,0.18936167,0.20000000,0.08577667,-0.05890000,-0.22230000,0.09928000,-0.02560000,-0.02930000,0.09117700,0.00265331,1
100296,0.12688300,0.37480500,0.12249400,0.25253833,0.58790000,0.33126700,-0.40395000,0.14800000,0.06685667,0.20819000,0.06610000,0.12180000,0.74300000,0.09705500,-0.04180000,-0.24500000,0.12829500,-0.08540000,0.24180000,0.22285500,-0.26900000,0.20751667,0.20000000,0.19662000,0.36890000,0.03810000,0.10429250,-0.21900000,-0.08350000,0.15968800,0.00150270,1
100302,0.10518300,0.26486500,0.15019000,0.19529333,0.15460000,0.02582400,0.13290000,0.17230000,0.00996667,0.19004667,0.01735000,0.06400000,0.11100000,0.20163000,-0.13230000,-0.21370000,0.07004750,-0.06580000,-0.05480000,0.09436500,-0.24510000,0.22527500,0.20000000,0.11284333,-0.10310000,0.10120000,0.12920000,-0.25770000,0.12650000,0.11938600,1.45484847,0
100304,0.08393000,0.07945000,0.10618200,0.07750667,0.08290000,0.02308625,-0.00010000,0.23390000,0.15485667,0.11551000,0.05715000,0.13720000,0.00000000,0.06295000,-0.17470000,-0.17330000,0.07192500,-0.09130000,0.23650000,0.05518750,0.30070000,0.22268000,0.20000000,0.07599833,0.08270000,-0.23410000,0.09765750,-0.00020000,0.04490000,0.08466200,1.37339095,0
100306,0.14326900,0.05894000,0.18573000,0.17215333,0.40980000,0.14399125,-0.16680000,0.20390000,0.01102667,0.23977083,0.06895000,0.07310000,0.75200000,0.11599250,0.19470000,0.29420000,0.15991250,0.20230000,0.09050000,0.14177500,0.07090000,0.29545750,0.20000000,0.23146000,-0.11200000,-0.21120000,0.09621750,0.29780000,0.05340000,0.17736300,0.00150270,1
100311,0.08760400,0.14460500,0.09837800,0.23199333,0.13250000,0.04386650,-0.01850000,0.14000000,0.13141000,0.25681833,0.10280000,0.14130000,0.94600000,0.06139250,-0.10710000,0.02970000,0.12623250,-0.01060000,-0.07170000,0.18215250,-0.02350000,0.28973500,0.30000000,0.24000833,-0.09250000,0.28790000,0.11801000,0.04000000,0.11100000,0.23313200,0.00150187,1
100313,0.17207900,0.51052500,0.17093400,0.12367167,0.36020000,0.11253100,-0.12175000,0.27560000,0.16693000,0.19362667,0.06540000,0.13730000,0.57400000,0.09270500,0.09290000,-0.14160000,0.12128750,0.04430000,0.21550000,0.16871750,-0.19240000,0.28547667,0.20000000,0.14266833,0.09020000,0.09450000,0.15288500,-0.27010000,-0.18680000,0.14675500,0.07389913,0
100314,0.26482800,0.01461000,0.30887600,0.15030167,0.02900000,0.02167650,0.12040000,0.30400000,0.02555333,0.18830417,0.01880000,0.10840000,0.00000000,0.18082750,-0.18210000,-0.25500000,0.06795750,0.06290000,0.19350000,0.10195250,0.20220000,0.20616667,0.20000000,0.15127333,-0.17040000,0.02030000,0.08921500,-0.14140000,-0.14390000,0.12645100,1.45484847,0
100319,0.09956900,0.05217500,0.16286200,0.72615833,0.14070000,0.11291025,0.02570000,0.05270000,0.10744333,0.88555417,0.00985000,0.14140000,0.00000000,0.88152000,0.12100000,-0.25880000,0.17332000,0.11380000,-0.20660000,0.05459000,-0.23350000,0.89166583,0.30000000,0.67739167,-0.03010000,0.04050000,0.33130000,-0.17080000,0.16700000,0.64072800,0.06406078,0
100320,0.09485000,0.21524000,0.12615800,0.04938333,0.00390000,0.05333925,0.01780000,0.27810000,0.00752667,0.23021833,0.05450000,0.14010000,0.00000000,0.07555500,0.17600000,0.09160000,0.08237250,0.21330000,-0.18400000,0.04967500,0.01590000,0.27992417,0.20000000,0.17761000,0.05770000,0.14860000,0.26631250,0.06160000,-0.19410000,0.21309100,1.45484847,0
100322,0.12870100,0.05303500,0.16391000,0.26489000,0.58650000,0.31758150,-0.40115000,0.14410000,0.09105333,0.27959500,0.05090000,0.11690000,0.99900000,0.14706250,-0.01280000,-0.08260000,0.14974500,-0.08460000,-0.20750000,0.16644000,-0.19070000,0.27772833,0.30000000,0.18012000,0.21730000,0.16710000,0.10650500,-0.36910000,0.16670000,0.21679100,0.00150270,1
100327,0.11087500,0.20840000,0.12863200,0.12204167,0.20680000,0.08656500,-0.05335000,0.23530000,0.13574667,0.28366667,0.05345000,-0.09450000,0.29100000,0.08110000,-0.18070000,-0.10440000,0.08672250,-0.11960000,0.12290000,0.19276250,0.20580000,0.27029417,0.30000000,0.25987167,0.09860000,-0.06580000,0.19727000,-0.10820000,0.30860000,0.27327200,0.07135714,0
100329,0.10204300,0.23220500,0.11233000,0.13174167,0.14300000,0.04093925,0.01140000,0.22700000,0.09000667,0.18024250,0.06475000,0.14140000,0.94500000,0.06726500,-0.10280000,0.19080000,0.08711000,-0.06900000,-0.03370000,0.13024250,0.08160000,0.26030333,0.20000000,0.17349500,-0.01450000,-0.20360000,0.12610750,-0.15750000,0.24410000,0.15454000,0.00150270,1
100339,0.10189200,0.02245500,0.14853200,0.35037333,0.18950000,0.08530175,-0.00200000,0.10470000,0.35197333,0.50393250,0.00995000,0.07630000,0.18600000,0.39005750,-0.05810000,-0.18230000,0.07751000,0.03020000,-0.12610000,0.08071500,-0.11190000,0.54867167,0.30000000,0.27092333,0.00210000,0.15320000,0.27259500,-0.18740000,0.01050000,0.41769200,0.00150187,1
100342,0.08190000,0.32642500,0.12574400,0.02482500,0.13210000,0.02918550,0.02435000,0.19600000,0.09084333,0.14524250,0.06200000,-0.13970000,0.99400000,0.08066000,0.17590000,0.18540000,0.10000250,0.10120000,-0.26180000,0.07570500,-0.01840000,0.31741167,0.20000000,0.11791667,0.16210000,0.01730000,0.07819250,0.03000000,-0.28550000,0.10202700,0.98826952,0
100351,0.17395200,0.20409000,0.24640000,0.01468333,0.46410000,0.10778500,-0.26905000,0.33850000,0.12050667,0.16890000,0.04480000,-0.14120000,0.92000000,0.11133000,0.12590000,0.16920000,0.09976750,-0.06110000,-0.11290000,0.03620750,0.31260000,0.22910083,0.30000000,0.08474167,-0.22600000,-0.26420000,0.08713000,0.23810000,-0.04810000,0.11824200,0.07135714,0
100352,0.07304500,0.24002500,0.08715600,0.24102333,0.34250000,0.08665300,-0.07725000,0.10530000,0.17197333,0.17684083,0.03085000,0.06860000,0.41700000,0.13239750,-0.02690000,-0.26000000,0.08174750,0.04230000,-0.18050000,0.17706500,-0.28500000,0.33500583,0.20000000,0.12284833,0.05350000,0.12640000,0.13210500,-0.28910000,-0.02280000,0.12655100,0.07135714,0
100367,0.19175800,0.02181500,0.25569200,0.16191500,0.23920000,0.06961625,-0.02560000,0.24400000,0.08141333,0.26719167,0.01395000,0.08010000,0.29900000,0.25325000,-0.12530000,0.26560000,0.07053250,0.03560000,0.08230000,0.05894250,0.06530000,0.39807833,0.20000000,0.25283667,0.02370000,-0.10400000,0.09853500,-0.21550000,0.16340000,0.19111600,0.89767462,0
100368,0.09294500,0.06398000,0.13836400,0.21434500,0.38050000,0.21053650,-0.15390000,0.12730000,0.11203000,0.36792750,0.10215000,0.07090000,0.21800000,0.09887750,0.21900000,-0.25840000,0.20199000,0.16120000,-0.14500000,0.07237500,-0.11850000,0.34333500,0.30000000,0.36169500,0.11670000,0.17360000,0.17509750,-0.26380000,-0.08490000,0.32116600,0.30716952,0
100372,0.13359400,0.33030000,0.20252000,0.02249833,0.03130000,0.02620900,0.29470000,0.26070000,0.03281000,0.17375833,0.07105000,-0.14110000,0.00000000,0.10854500,-0.06660000,0.24380000,0.15421250,-0.03020000,-0.01430000,0.05942000,-0.22240000,0.30977333,0.20000000,0.09327500,-0.25890000,0.16980000,0.11860500,-0.22760000,-0.16010000,0.10340700,1.95440439,0
100377,0.12575000,0.04620500,0.13021200,0.14670167,0.04650000,0.02238550,-0.00230000,0.19740000,0.07985667,0.15903250,0.02420000,0.12060000,0.73200000,0.13890250,-0.00830000,0.17140000,0.06729250,0.02210000,-0.26190000,0.13725000,-0.28600000,0.17940500,0.20000000,0.12612667,-0.01410000,0.00110000,0.08171250,0.03230000,-0.20680000,0.10836100,0.00265331,1
100383,0.07058200,0.06239000,0.08737400,0.12886833,0.47700000,0.14742275,-0.27620000,0.15460000,0.13055333,0.14800500,0.04180000,0.13170000,0.94500000,0.08493750,0.04290000,-0.06270000,0.07103000,0.01590000,-0.21490000,0.08463750,-0.17440000,0.16479500,0.20000000,0.12636000,0.19790000,0.12300000,0.09850750,-0.27920000,0.18200000,0.11521900,0.07389913,0
100385,0.09167500,0.25629000,0.13153400,0.01256167,0.25600000,0.03302900,0.05490000,0.31010000,0.01542333,0.11222833,0.07655000,-0.14130000,0.00000000,0.06641500,-0.19510000,-0.09950000,0.10167750,-0.18940000,0.21880000,0.04322000,-0.04350000,0.13471000,0.20000000,0.05755167,0.03740000,0.31100000,0.08226250,0.29340000,-0.01570000,0.06743700,2.04246765,0
100387,0.09728900,0.10030500,0.12630000,0.09390333,0.03460000,0.04706425,0.02100000,0.22790000,0.01378000,0.21309333,0.06365000,-0.00620000,0.00000000,0.07232750,0.12580000,0.25430000,0.09210250,0.20520000,0.04060000,0.10078500,-0.01200000,0.21742750,0.20000000,0.15999833,-0.08430000,-0.14250000,0.23485000,-0.04980000,0.22740000,0.18993900,1.37339095,0
100398,0.13303500,0.24019000,0.18121600,0.12698000,0.37050000,0.08915550,-0.14360000,0.22980000,0.03365000,0.18037083,0.07895000,0.14130000,0.71500000,0.09544500,-0.02620000,0.14290000,0.15067250,0.03260000,-0.26320000,0.07640250,0.24630000,0.19403083,0.20000000,0.13288667,0.11040000,-0.09930000,0.09566500,-0.26010000,0.10350000,0.11799700,0.00150270,1
100399,0.10273200,0.11252000,0.13597600,0.09450667,0.54830000,0.24256050,-0.35595000,0.22120000,0.00259667,0.16700583,0.04530000,0.14010000,0.99900000,0.09760000,0.00580000,0.08100000,0.08844750,0.05390000,0.29690000,0.05567750,0.21440000,0.21040083,0.20000000,0.11990667,-0.21110000,-0.20590000,0.13511000,0.33730000,0.01890000,0.12598800,0.00150270,1
100406,0.08805000,0.18270000,0.13073600,0.11308667,0.15320000,0.02391525,-0.02625000,0.20490000,0.12643667,0.18943833,0.15525000,0.13710000,0.89400000,0.05292750,-0.10120000,-0.20740000,0.16433500,-0.05040000,0.22240000,0.03206500,-0.26980000,0.24224417,0.30000000,0.11796333,0.05180000,-0.07920000,0.09582250,-0.10140000,-0.01430000,0.14042100,1.07920278,0
100413,0.13406600,0.12181500,0.21484600,0.53077167,0.03250000,0.05786250,-0.00060000,0.08070000,0.22331667,0.56002333,0.08490000,0.05100000,0.00000000,0.25090500,-0.15320000,-0.04310000,0.42613750,-0.08030000,-0.00840000,0.13684500,0.01690000,0.57392417,0.30000000,0.53750667,0.02820000,0.27000000,0.10903250,-0.00430000,-0.11190000,0.40121100,0.01863612,1
100422,0.12347900,0.23204500,0.16933800,0.41120667,0.22700000,0.11651600,-0.05735000,0.13400000,0.06901667,0.40985583,0.21840000,0.13450000,0.77700000,0.08054750,0.05770000,0.18410000,0.35182000,0.09450000,0.31290000,0.23755500,0.27250000,0.47328750,0.20000000,0.36252500,0.15110000,0.02240000,0.25341500,-0.07590000,-0.13520000,0.31888000,0.00150270,1
100423,0.09003100,0.20963500,0.08386200,0.63127833,0.27990000,0.21461350,-0.07290000,0.05070000,0.36947000,0.59833750,0.02405000,0.12470000,0.95200000,0.30097500,-0.03200000,-0.22490000,0.14483750,-0.03970000,-0.17480000,0.51356250,-0.21340000,0.64808167,0.30000000,0.38203333,-0.21080000,0.01190000,0.49882500,0.06920000,0.14770000,0.53968000,0.35853999,0
100428,0.12237200,0.17059500,0.10318000,0.19498167,0.28060000,0.10409925,-0.08600000,0.27490000,0.05579333,0.21189667,0.06655000,0.13860000,0.98500000,0.05409500,0.13620000,0.26700000,0.07199500,0.06710000,0.00090000,0.25823250,0.06450000,0.25372500,0.20000000,0.19188167,0.19010000,-0.17810000,0.22177750,-0.09050000,0.27700000,0.20384000,2.09107436,0
100429,0.07802500,0.08437000,0.07292400,0.34682833,0.19530000,0.13151625,-0.04295000,0.10620000,0.09255000,0.54574417,0.12010000,0.12980000,0.10500000,0.05505750,0.03750000,0.12640000,0.13225000,0.11560000,0.19830000,0.34283250,0.17850000,0.57217417,0.30000000,0.32721833,0.06680000,-0.22120000,0.45709000,-0.12850000,-0.04120000,0.57997000,0.06406078,0
100432,0.10064300,0.21528000,0.13996600,0.13647167,0.20110000,0.02908050,-0.04340000,0.19180000,0.00671000,0.15185083,0.02545000,0.11510000,0.00200000,0.14957250,0.19930000,-0.24560000,0.07617750,0.20890000,0.19110000,0.06452000,-0.26210000,0.16019667,0.20000000,0.09281000,0.06270000,0.06790000,0.09059000,-0.13830000,-0.03830000,0.09192200,0.07389913,0
100437,0.09395500,0.05626500,0.12399000,0.08911000,0.48030000,0.28318800,-0.25495000,0.23630000,0.12241333,0.25650750,0.07320000,0.03150000,0.61100000,0.06766750,0.13410000,-0.15110000,0.09903750,0.08690000,0.24560000,0.08225250,0.21430000,0.23238750,0.30000000,0.18803667,-0.32190000,0.00410000,0.22933250,0.15840000,-0.30960000,0.24112700,0.00150270,1
100443,0.12581900,0.01593500,0.13065400,0.10486500,0.08990000,0.02720900,-0.00440000,0.25560000,0.10637000,0.14706083,0.04120000,0.11070000,0.57000000,0.08912000,0.00360000,-0.10770000,0.07343500,-0.06740000,0.13790000,0.13810250,0.13000000,0.20810750,0.20000000,0.12888167,0.01120000,-0.20760000,0.08530500,-0.07870000,0.03760000,0.11145100,0.00265331,1
100450,0.09428200,0.00115000,0.11828000,0.06428667,0.28930000,0.07234450,-0.10345000,0.26380000,0.00136333,0.16271000,0.05680000,0.09840000,0.92200000,0.07140250,0.04270000,-0.11730000,0.08108750,0.02610000,0.14600000,0.07139750,0.14670000,0.14051750,0.20000000,0.14288500,0.12950000,-0.18750000,0.12131250,-0.15980000,0.13990000,0.13425600,0.30979516,0
100457,0.10905400,0.15118500,0.15170200,0.02350333,0.01570000,0.03125125,0.00715000,0.34000000,0.13817000,0.19320500,0.04170000,0.11780000,0.00200000,0.08097000,-0.08880000,0.03960000,0.06754250,0.05820000,-0.26700000,0.02120000,0.03760000,0.21141583,0.30000000,0.14400500,0.03070000,0.19650000,0.11001250,0.04640000,-0.12920000,0.17244100,0.30716952,0
100462,0.12982400,0.03805500,0.11867400,0.88383833,0.19560000,0.09131625,-0.01715000,0.08740000,0.21705333,0.57673250,0.19695000,0.09180000,0.11700000,0.08405000,-0.14170000,-0.28330000,0.33108500,-0.06500000,0.30320000,0.91838500,0.29980000,0.52703833,0.30000000,0.74006000,-0.01950000,-0.02030000,0.10887750,0.17610000,0.08950000,0.52602500,0.00150187,1
100463,0.11576200,0.52796500,0.13916800,0.02387500,0.46380000,0.09529000,-0.07205000,0.25700000,0.06062333,0.17954417,0.13380000,-0.10210000,0.96100000,0.05405000,-0.19640000,0.10290000,0.14463500,-0.24470000,-0.14940000,0.12045750,0.16600000,0.29455250,0.30000000,0.06361500,0.03350000,0.18660000,0.09012250,-0.43030000,-0.19630000,0.13597800,0.06406078,0
100465,0.09887900,0.01496500,0.11249400,0.18753167,0.39110000,0.08193325,-0.14900000,0.14140000,0.13898333,0.18088917,0.02835000,0.10710000,0.64900000,0.14346750,0.02290000,-0.03870000,0.08133750,0.03660000,-0.17940000,0.13295250,-0.17220000,0.23552500,0.30000000,0.09798333,0.10370000,0.14540000,0.09152750,-0.28740000,0.29550000,0.12714400,0.07135714,0
100468,0.10432300,0.00100500,0.14395200,0.16491667,0.56410000,0.19544075,-0.37665000,0.16240000,0.00638667,0.16324167,0.05745000,0.10050000,0.99300000,0.11331000,0.08980000,0.08640000,0.13015750,0.04190000,0.24150000,0.08731500,0.24100000,0.15195250,0.20000000,0.10797333,-0.21710000,-0.11140000,0.08429750,0.34690000,-0.14160000,0.09850300,0.00150270,1
100469,0.08339500,0.01781000,0.06067200,0.60156833,0.03870000,0.01939000,0.20370000,0.04770000,0.29716333,0.47702083,0.01870000,0.08770000,0.00000000,0.25953000,-0.04670000,-0.10170000,0.09703250,-0.08400000,-0.13130000,0.55584500,-0.13510000,0.55433583,0.30000000,0.32694667,-0.18340000,0.20160000,0.29293500,-0.22210000,0.22680000,0.42980000,0.35853999,0
100475,0.08909100,0.09362000,0.09755800,0.14010333,0.00980000,0.03011275,0.33775000,0.20430000,0.22162667,0.20379583,0.06865000,0.03460000,0.00000000,0.06073750,-0.05270000,0.03520000,0.08341500,-0.03220000,0.23850000,0.16668250,0.27850000,0.26568583,0.30000000,0.16739833,0.25510000,-0.09490000,0.12626000,0.26480000,-0.29300000,0.18689500,0.07135714,0
100477,0.08296700,0.04994000,0.09640200,0.38225000,0.19860000,0.05185925,-0.04375000,0.07790000,0.07381333,0.28129917,0.07110000,0.08010000,0.00800000,0.12940000,0.12720000,0.26940000,0.18405750,0.18460000,0.21680000,0.27807250,0.20570000,0.29947167,0.20000000,0.27764500,0.06590000,-0.09530000,0.11397000,-0.13260000,-0.05600000,0.21217500,0.07135714,0
100479,0.08448100,0.16916000,0.12983400,0.18315333,0.03940000,0.01493725,0.14235000,0.11840000,0.10120000,0.18659417,0.05795000,0.10230000,0.00000000,0.13482500,0.04880000,0.11970000,0.15632250,0.06210000,0.23740000,0.03838750,0.12190000,0.25145250,0.20000000,0.11981167,0.15020000,-0.14740000,0.08891750,0.18960000,-0.03890000,0.10745400,1.45484847,0
100482,0.11570400,0.06582500,0.15602800,0.11428333,0.19580000,0.03019225,-0.04435000,0.21620000,0.09923333,0.14333250,0.02665000,0.13460000,0.85100000,0.13874250,-0.16180000,0.13330000,0.07389000,-0.06600000,-0.30120000,0.05336500,0.27410000,0.23456250,0.20000000,0.08757333,-0.12450000,-0.21040000,0.08600500,0.07120000,-0.01370000,0.08694600,0.00265331,1
100489,0.15297900,0.13809000,0.20451200,0.18046833,0.25790000,0.06240250,-0.07130000,0.21960000,0.01029667,0.21975917,0.07950000,0.13290000,0.84000000,0.10850000,0.07530000,-0.14080000,0.17254750,0.00510000,0.06720000,0.11927500,0.01860000,0.30940750,0.20000000,0.18308333,0.08020000,0.28650000,0.10360500,-0.17770000,-0.16780000,0.15129100,0.00150270,1
100502,0.14939500,0.04445000,0.15987800,0.15023500,0.47990000,0.20705400,-0.16835000,0.21920000,0.01114000,0.20100000,0.03535000,0.11740000,0.49100000,0.13346750,0.03840000,-0.23820000,0.09438250,0.04770000,-0.01910000,0.16400250,-0.03700000,0.23097167,0.20000000,0.13427167,0.08530000,0.14300000,0.17374500,-0.39450000,-0.30060000,0.15006000,0.00150270,1
100506,0.11880300,0.40216500,0.18290000,0.05329833,0.01610000,0.02953375,0.30670000,0.23620000,0.03164000,0.17484250,0.06515000,-0.10450000,0.00000000,0.09714750,-0.07230000,0.26720000,0.12661250,0.03290000,-0.14960000,0.07987250,0.16050000,0.27223917,0.20000000,0.12166500,0.25580000,-0.07650000,0.11826750,0.23980000,0.20460000,0.12030700,0.01863612,1
100512,0.12815400,0.00413500,0.18395200,0.48678833,0.36840000,0.22647975,-0.07325000,0.08410000,0.00334333,0.51770167,0.06170000,0.09790000,0.76000000,0.24229000,-0.03130000,0.13490000,0.29893500,0.04230000,0.09430000,0.20262250,0.09340000,0.44983250,0.20000000,0.58104000,-0.04540000,-0.20510000,0.14032250,0.32300000,0.11960000,0.40475200,0.00150270,1
100517,0.07894800,0.11338500,0.06263400,0.28654167,0.17310000,0.03547800,-0.03510000,0.09490000,0.08652333,0.18545667,0.03240000,0.14110000,0.39900000,0.10567250,0.03220000,0.01610000,0.06844750,0.06130000,-0.07410000,0.27323000,-0.03240000,0.21235333,0.20000000,0.18420833,-0.10830000,0.26600000,0.10593750,0.06490000,-0.29670000,0.15289900,0.07135714,0
100523,0.16929100,0.28174500,0.20110400,0.21106000,0.25700000,0.12661350,-0.08255000,0.26780000,0.20958667,0.33729500,0.05025000,0.13080000,0.58400000,0.08346500,-0.12660000,-0.11070000,0.08390000,0.09300000,-0.26420000,0.20154000,-0.14970000,0.39736000,0.30000000,0.30842833,0.12710000,0.11700000,0.22837000,-0.12980000,-0.17900000,0.33780800,1.17714326,0
100524,0.11454100,0.24334500,0.16509600,0.11068667,0.21680000,0.06613100,0.02525000,0.31390000,0.05433333,0.23859833,0.10070000,-0.14140000,0.49100000,0.07233000,0.05860000,-0.20170000,0.14564000,0.03810000,0.11340000,0.11415750,0.01510000,0.31567333,0.30000000,0.15442000,0.02120000,0.26130000,0.17919500,0.23800000,-0.11500000,0.19913000,0.07389913,0
100525,0.11504700,0.04486500,0.14491600,0.32971000,0.05280000,0.01659850,0.03610000,0.11030000,0.00860333,0.28199833,0.05340000,0.11510000,0.00000000,0.16216500,0.13160000,0.17710000,0.17326500,0.19170000,0.08460000,0.20064250,0.09670000,0.24314917,0.20000000,0.28575500,0.11540000,-0.18610000,0.08193000,0.06260000,-0.25510000,0.20422600,0.00150187,1
100531,0.08021900,0.10492500,0.07765800,0.22112833,0.41070000,0.18104575,-0.20300000,0.13150000,0.11451000,0.23759500,0.06770000,0.13380000,0.78800000,0.06752500,0.09490000,-0.00230000,0.09144250,0.06050000,-0.12920000,0.20362000,-0.09050000,0.23717667,0.30000000,0.16901833,-0.24490000,0.15070000,0.21458250,0.16580000,0.27810000,0.22152700,0.07135714,0
100534,0.15216900,0.08098000,0.14416200,0.22707000,0.09700000,0.02906125,0.10670000,0.18140000,0.01191000,0.21321833,0.02880000,0.12390000,0.00000000,0.14939250,-0.05280000,-0.22090000,0.08599500,-0.08390000,0.22870000,0.22342500,0.25800000,0.27828917,0.20000000,0.19536833,0.20240000,0.01510000,0.11121500,0.10540000,-0.11170000,0.16170600,0.00150187,1
100535,0.09899500,0.30116000,0.11986800,0.04670333,0.44550000,0.09902500,-0.24210000,0.29050000,0.09848000,0.14819833,0.06225000,0.12850000,0.86300000,0.06508250,-0.06250000,0.13000000,0.08104250,-0.12010000,-0.15470000,0.07377750,0.11340000,0.26399833,0.30000000,0.08215667,0.18820000,-0.25170000,0.09133250,-0.25730000,-0.04980000,0.11938800,0.07389913,0
100538,0.38500800,0.06948500,0.41422400,0.14471167,0.01830000,0.04510525,0.07215000,0.35840000,0.09506333,0.25150833,0.03865000,0.12610000,0.00000000,0.16174750,-0.18260000,0.14990000,0.12497750,0.06100000,-0.21560000,0.19947500,-0.23770000,0.31369917,0.20000000,0.20595000,-0.11130000,0.04490000,0.15887500,-0.12960000,-0.27710000,0.18712000,0.74405625,0
100539,0.13070300,0.47332000,0.20179200,0.21286667,0.03850000,0.02335175,0.07630000,0.15890000,0.16180333,0.31698500,0.02690000,-0.01450000,0.02400000,0.23777000,0.12620000,-0.01970000,0.12793500,0.08780000,-0.17400000,0.12376000,0.07080000,0.44196250,0.30000000,0.19732833,0.14430000,0.30970000,0.18465500,0.10580000,0.22040000,0.23410100,0.00150187,1
100540,0.10629900,0.10442500,0.08416000,0.41307333,0.15020000,0.04159600,-0.00345000,0.09180000,0.19274667,0.32460167,0.04305000,0.13360000,0.01800000,0.12552500,0.12810000,0.30830000,0.10804000,0.08050000,0.22980000,0.40580250,0.25480000,0.48372833,0.30000000,0.20728000,-0.14550000,-0.04050000,0.18057000,0.00470000,-0.08970000,0.29609600,0.08341403,0
100541,0.11417000,0.16420000,0.15922000,0.04538833,0.05670000,0.01593650,-0.00395000,0.30610000,0.00698000,0.12362083,0.02940000,-0.14140000,0.00000000,0.12960250,-0.14890000,-0.30920000,0.07616250,-0.13500000,0.01330000,0.03164250,-0.18480000,0.12636250,0.20000000,0.05864833,0.02450000,-0.05220000,0.07712500,-0.03220000,0.17680000,0.06603900,0.00265331,1
100549,0.09249300,0.19428500,0.12252000,0.13191000,0.42200000,0.10733750,-0.00495000,0.18750000,0.12991000,0.16009917,0.07530000,0.14080000,0.27300000,0.07656250,0.00210000,0.00780000,0.11530250,-0.03190000,0.19220000,0.08152250,0.08720000,0.21157250,0.20000000,0.13542667,-0.00240000,-0.18920000,0.08529000,0.41960000,-0.18770000,0.11537300,1.68161144,0
100552,0.09879800,0.01821500,0.12781400,0.21311833,0.25870000,0.09327000,-0.07705000,0.15930000,0.14364000,0.28312417,0.10910000,0.09370000,1.00000000,0.07118750,-0.11820000,0.30760000,0.15529500,-0.03560000,0.17130000,0.14412250,0.16520000,0.26567083,0.30000000,0.22233333,0.09300000,-0.09530000,0.19412750,-0.16570000,-0.25230000,0.24915600,0.30716952,0
100554,0.15002300,0.01374000,0.20070000,0.16326833,0.20440000,0.04240450,0.05175000,0.20810000,0.01338667,0.20363667,0.06080000,0.09410000,0.78200000,0.13176250,-0.08510000,0.04420000,0.16018750,-0.09350000,-0.16370000,0.12340500,-0.16860000,0.19015000,0.20000000,0.13875667,-0.04200000,0.15410000,0.11082750,-0.24640000,0.30130000,0.12758500,0.00150270,1
100557,0.11054500,0.04859500,0.11832000,0.19925167,0.43710000,0.13200325,-0.17875000,0.20400000,0.00762667,0.15636750,0.08665000,0.11530000,0.93300000,0.06048000,-0.07150000,-0.26490000,0.10481750,-0.16710000,0.18330000,0.19621750,0.20020000,0.20696083,0.20000000,0.11768667,0.10900000,-0.11920000,0.12727500,-0.32810000,-0.07670000,0.12152200,0.00150270,1
100566,0.10165500,0.23051000,0.12375000,0.17418833,0.41850000,0.10133625,-0.04230000,0.18260000,0.01638667,0.15457667,0.02265000,0.12960000,0.99600000,0.14507000,0.19490000,-0.18920000,0.06577000,0.20140000,-0.00670000,0.11797250,-0.14940000,0.23346917,0.20000000,0.08767167,0.39720000,0.16820000,0.12138250,-0.02130000,0.16090000,0.10115600,0.00150270,1
100568,0.08845500,0.08041500,0.09942000,0.13454667,0.26320000,0.05350150,0.00950000,0.22290000,0.11909333,0.17021083,0.08755000,0.03270000,0.19700000,0.05201250,0.05280000,0.19430000,0.09104750,0.02910000,-0.21240000,0.15070750,-0.17790000,0.30549250,0.30000000,0.10350667,-0.27030000,0.21950000,0.11884750,-0.00700000,-0.00440000,0.14702900,0.06406078,0
100571,0.17605500,0.04600500,0.24077600,0.37366333,0.24390000,0.19027700,-0.05110000,0.19430000,0.09106333,0.47858833,0.23280000,0.12890000,0.87000000,0.06212750,0.07770000,-0.15390000,0.28929500,-0.11360000,-0.11980000,0.21210500,-0.12910000,0.56954250,0.20000000,0.43844500,0.05380000,0.12200000,0.42667500,-0.19020000,-0.27820000,0.43373700,1.43101907,0
100573,0.09587600,0.05875000,0.12017400,0.25984167,0.16240000,0.05699375,0.11605000,0.13300000,0.24616000,0.29383917,0.10605000,0.11650000,0.00000000,0.08263250,0.02730000,-0.13630000,0.17529500,0.06290000,-0.00820000,0.17787000,-0.02480000,0.26491917,0.30000000,0.16938000,-0.09140000,0.19870000,0.19499000,-0.25380000,-0.20730000,0.24943600,0.30716952,0
100574,0.09164200,0.12749500,0.11296400,0.08032667,0.13210000,0.02754175,0.36470000,0.27770000,0.04471667,0.12308250,0.06575000,0.14010000,0.00100000,0.05676750,0.19830000,-0.09830000,0.07462250,0.10280000,0.16250000,0.08179000,0.07850000,0.12880333,0.20000000,0.10742333,0.34410000,-0.24640000,0.07672500,0.21200000,0.04100000,0.09514300,1.45484847,0
100575,0.13300100,0.01824000,0.17102000,0.05489333,0.21020000,0.04732850,0.00420000,0.27060000,0.10436000,0.19120583,0.02635000,0.06990000,0.00000000,0.12867000,0.08430000,-0.09660000,0.06785000,0.20850000,0.29130000,0.05288500,0.27600000,0.23979667,0.30000000,0.10195667,-0.00390000,0.06480000,0.14014250,-0.21410000,-0.23800000,0.15083900,0.07135714,0
100583,0.07424600,0.04779500,0.09893000,0.31370333,0.27520000,0.14647925,0.00000000,0.10050000,0.13262667,0.38032417,0.16820000,0.01340000,0.00600000,0.06425000,0.07070000,0.09310000,0.21616250,0.17120000,0.09560000,0.19102250,0.10730000,0.39513917,0.30000000,0.32400833,0.00000000,-0.24990000,0.27011500,-0.27520000,-0.06460000,0.34422400,0.07135714,0
100584,0.08281700,0.03164000,0.10331800,0.38987500,0.05430000,0.02180150,0.07170000,0.07890000,0.00726333,0.31543167,0.09410000,0.08760000,0.36000000,0.11891500,-0.20880000,0.06930000,0.22377250,-0.15020000,0.12220000,0.25732750,0.12870000,0.29386250,0.20000000,0.26084500,-0.14990000,-0.18130000,0.21233750,-0.09560000,-0.23060000,0.24144300,1.45484847,0
100585,0.13921100,0.04633500,0.20735800,0.11962333,0.17880000,0.01874825,0.09215000,0.21370000,0.02091333,0.15046667,0.02580000,0.01530000,0.01000000,0.18330000,-0.08160000,-0.27850000,0.09460000,0.02970000,-0.09610000,0.01768000,-0.03870000,0.17167667,0.20000000,0.06360833,-0.07310000,0.12840000,0.07808750,-0.25200000,0.06110000,0.06940000,0.00265331,1
100591,0.18764400,0.35803500,0.21230000,0.17393500,0.16310000,0.02454350,-0.03140000,0.28720000,0.01697000,0.15588750,0.03865000,0.13990000,0.02500000,0.11750250,0.02230000,-0.07390000,0.09078250,-0.13750000,-0.31250000,0.18027500,-0.15750000,0.18326917,0.20000000,0.10824833,-0.06230000,0.17550000,0.09700250,0.10080000,0.11640000,0.10375000,0.74405625,0
100595,0.08305500,0.08763500,0.11346400,0.22910333,0.64740000,0.37534250,-0.49500000,0.11740000,0.19522333,0.22286000,0.01875000,0.13600000,0.48200000,0.19716250,0.11770000,0.10270000,0.07396500,0.20050000,0.18590000,0.09088750,0.13180000,0.24873083,0.30000000,0.11153167,0.24760000,-0.24070000,0.12987000,-0.39980000,-0.07570000,0.15898100,0.06406078,0
100600,0.11200700,0.03546500,0.14827200,0.10200333,0.11910000,0.03670375,0.05880000,0.25900000,0.09663333,0.17500500,0.08860000,0.06490000,0.95300000,0.06412000,-0.24570000,0.18910000,0.11362500,-0.13680000,-0.20420000,0.08272750,-0.18590000,0.26003083,0.20000000,0.12209500,-0.06420000,-0.02940000,0.16413000,-0.18320000,0.16200000,0.13890800,0.00265331,1
100601,0.11291100,0.30666000,0.14635600,0.04392500,0.05890000,0.02433975,-0.00020000,0.29940000,0.01210667,0.13924500,0.04950000,-0.13210000,0.97600000,0.08876500,-0.08980000,-0.02730000,0.08791500,-0.03330000,0.26680000,0.06727500,-0.06320000,0.15243917,0.20000000,0.10343833,-0.05820000,0.30960000,0.08589750,0.00070000,0.01880000,0.09642200,0.00150187,1
100605,0.07756800,0.31143000,0.11761200,0.24403667,0.12470000,0.01354525,-0.01465000,0.10020000,0.26832667,0.19076333,0.09185000,0.01110000,0.32900000,0.10437500,0.13200000,-0.14940000,0.19170000,0.03470000,-0.12550000,0.11361500,-0.23670000,0.32185417,0.30000000,0.07136500,-0.09340000,0.19160000,0.09152750,0.03130000,0.19900000,0.11048600,0.74405625,0
100615,0.08059700,0.14256000,0.12179800,0.34109500,0.09780000,0.01908500,0.18810000,0.07340000,0.14220667,0.32966833,0.01770000,0.03450000,0.67700000,0.35582250,0.18590000,-0.01450000,0.12582750,0.16950000,-0.08610000,0.10822000,-0.14820000,0.39471167,0.30000000,0.21638667,0.15110000,0.27630000,0.09335500,0.24890000,0.26030000,0.20294300,0.06406078,0
100622,0.12024200,0.33397500,0.14132200,0.09328833,0.40730000,0.07081400,-0.16745000,0.30370000,0.19657000,0.12093750,0.03130000,-0.14040000,0.83200000,0.11088250,0.02830000,0.22500000,0.06937750,0.00210000,-0.07750000,0.10451000,0.27610000,0.19691000,0.20000000,0.06646333,0.29300000,-0.31160000,0.08285750,-0.11430000,-0.04640000,0.07302100,0.01863612,1
100624,0.09365800,0.08627000,0.11613800,0.19884833,0.02650000,0.01257025,0.03040000,0.17330000,0.06644667,0.18156750,0.12750000,0.13340000,0.48800000,0.05062000,-0.04740000,0.15150000,0.12905500,0.09030000,0.25660000,0.13804500,0.22420000,0.19092500,0.20000000,0.12552833,0.09230000,-0.05940000,0.17673500,0.06580000,-0.12120000,0.14601100,0.00265331,1
100626,0.07243300,0.28284000,0.09212000,0.08875333,0.28870000,0.04876075,-0.09650000,0.19200000,0.00080667,0.12496167,0.06405000,0.06900000,0.79900000,0.06065250,-0.15720000,-0.12900000,0.07767500,-0.10750000,0.05640000,0.08549750,-0.15370000,0.14906917,0.20000000,0.10555000,0.10520000,0.17490000,0.07823250,-0.18340000,-0.23820000,0.09462300,0.30716952,0
100627,0.12033700,0.02261000,0.15144000,0.22610667,0.48300000,0.27413925,-0.29160000,0.21680000,0.00835000,0.24501333,0.14870000,0.09210000,0.86100000,0.06172250,0.07140000,0.15630000,0.18354000,0.09560000,-0.25650000,0.18762500,-0.25050000,0.22821917,0.20000000,0.16558833,-0.23950000,0.12260000,0.24139500,0.24360000,-0.03520000,0.19591000,0.00150270,1
100629,0.08914800,0.09081500,0.11457600,0.09137333,0.06930000,0.04856425,0.08325000,0.25390000,0.02472000,0.20469750,0.06980000,0.13580000,0.66700000,0.05954000,0.07750000,-0.05710000,0.08309500,0.15570000,-0.29870000,0.08284500,-0.24330000,0.24506417,0.20000000,0.16613167,0.09900000,0.20260000,0.22226000,0.16830000,-0.05770000,0.18858400,0.07389913,0
100632,0.16734100,0.09251500,0.18229600,0.19747667,0.68590000,0.75557325,-0.57335000,0.30150000,0.05743667,0.25453667,0.09745000,0.13390000,0.99100000,0.07335750,-0.07660000,-0.06840000,0.14296750,0.02110000,0.21670000,0.22060000,0.19060000,0.33982667,0.20000000,0.26420500,-0.28870000,-0.09800000,0.15097750,0.39710000,0.24880000,0.21891400,0.00150270,1
100634,0.15152100,0.04032000,0.18548200,0.18385833,0.25880000,0.07035975,0.12135000,0.25440000,0.13692667,0.19864417,0.10490000,0.11340000,0.26100000,0.06884250,0.19440000,0.21140000,0.14444250,0.05250000,0.00020000,0.15638750,0.01360000,0.28708667,0.20000000,0.16785500,0.07310000,-0.24990000,0.13086500,0.33190000,0.14010000,0.15305900,0.00150270,1
100641,0.15287800,0.09586500,0.14340000,0.31419167,0.40700000,0.17883025,-0.11150000,0.16660000,0.01311667,0.23974750,0.05600000,0.12110000,0.94000000,0.11095250,0.14610000,0.10540000,0.12423000,0.08750000,0.26140000,0.31644250,0.23710000,0.25218167,0.20000000,0.19724667,-0.06530000,-0.11240000,0.18819250,0.34170000,-0.05860000,0.19362500,0.07389913,0
100645,0.08521700,0.27681000,0.12727400,0.02868833,0.21490000,0.05955275,-0.05565000,0.22830000,0.16120333,0.21834333,0.06655000,-0.14050000,0.99900000,0.07570500,0.02880000,0.22720000,0.10080000,0.01730000,-0.00080000,0.08059750,-0.17590000,0.31103000,0.30000000,0.15382833,0.12770000,0.10200000,0.14842250,-0.08720000,-0.27600000,0.19141000,0.35853999,0
100648,0.12679000,0.01521500,0.18847400,0.15639333,0.19010000,0.02748950,-0.03730000,0.21460000,0.13821667,0.18989750,0.11180000,0.09220000,0.04100000,0.08396500,0.12710000,-0.22150000,0.18776750,0.20970000,0.20870000,0.06903000,0.20200000,0.17233917,0.30000000,0.07044333,0.13470000,-0.15610000,0.09669500,-0.05540000,0.01750000,0.11918400,0.01863612,1
100649,0.09849800,0.07488000,0.15088200,0.28992167,0.03930000,0.01207775,0.20675000,0.11010000,0.10745333,0.29409500,0.11695000,0.12530000,0.01900000,0.11768500,0.17580000,-0.07080000,0.27527750,0.16520000,0.03890000,0.08974000,0.01500000,0.30727250,0.30000000,0.18358833,0.18460000,-0.30680000,0.11241250,0.22390000,0.27810000,0.19572900,1.68161144,0
100651,0.14075500,0.19139000,0.20076000,0.05437833,0.47370000,0.17185125,-0.27535000,0.28000000,0.00663667,0.18664833,0.05920000,0.14090000,0.95300000,0.11024000,0.09360000,0.18950000,0.13051250,0.01990000,-0.08060000,0.03058500,0.09120000,0.24582417,0.20000000,0.10954667,-0.26910000,-0.14680000,0.15487250,0.20460000,0.21580000,0.12767700,0.00150270,1
100655,0.08218900,0.06329000,0.08099600,0.17092333,0.52970000,0.16064000,-0.28980000,0.16310000,0.05734000,0.15217000,0.04825000,0.12530000,0.99900000,0.06913750,0.05160000,0.01850000,0.06672000,0.10170000,-0.13680000,0.16682500,-0.10670000,0.22656333,0.30000000,0.07931333,-0.15440000,0.19110000,0.10924000,0.37530000,0.26370000,0.12826100,0.07135714,0
100656,0.15197100,0.18043000,0.19186800,0.11707500,0.28300000,0.10021500,-0.08790000,0.22900000,0.19556333,0.30233583,0.05130000,-0.05910000,0.75500000,0.12996000,-0.12640000,0.14080000,0.13336750,-0.12450000,-0.08820000,0.15834000,-0.15130000,0.38588250,0.30000000,0.19380167,0.09210000,0.13220000,0.18082500,-0.19090000,-0.18070000,0.25747200,0.00150270,1
100657,0.07974500,0.30298000,0.10771400,0.11643500,0.15360000,0.02925650,-0.01075000,0.17670000,0.01841333,0.14546333,0.09475000,0.10600000,0.85800000,0.06323500,0.09640000,0.03760000,0.11984750,0.09130000,0.21420000,0.08444500,0.04370000,0.24436833,0.20000000,0.09057833,0.13810000,-0.11590000,0.11744000,-0.01550000,-0.29150000,0.10132300,0.07389913,0
100658,0.11388600,0.31009000,0.16301800,0.11292500,0.47970000,0.19516675,-0.25410000,0.22040000,0.00024333,0.20408250,0.08175000,0.13440000,0.70700000,0.08927250,0.21730000,-0.16190000,0.14592000,0.22320000,0.05850000,0.07465500,-0.10900000,0.16195250,0.20000000,0.17084667,0.32180000,0.22790000,0.12078750,-0.15790000,-0.14490000,0.15082300,0.00150270,1
100659,0.09198200,0.19131500,0.12597400,0.08314167,0.39430000,0.13026150,-0.16665000,0.26370000,0.00921000,0.17976750,0.06355000,0.14140000,0.99800000,0.07054250,0.03910000,-0.00250000,0.08964250,0.08410000,0.25730000,0.07936250,0.13670000,0.17764167,0.20000000,0.17024167,-0.12270000,-0.16700000,0.12375500,0.27160000,0.14630000,0.15164700,0.00150270,1
100662,0.17354500,0.16655500,0.21617200,0.18355333,0.31160000,0.17001375,-0.10865000,0.20730000,0.19805333,0.45836833,0.05295000,0.01830000,0.23100000,0.15137500,0.11000000,-0.07810000,0.16027750,0.13810000,-0.28350000,0.20367750,0.29830000,0.46888583,0.30000000,0.35138500,-0.20630000,0.01120000,0.22879000,0.10530000,0.23680000,0.42538100,0.74405625,0
100665,0.06609700,0.42048500,0.10713200,0.08684667,0.19890000,0.06696975,-0.03845000,0.11920000,0.16831667,0.27254667,0.07855000,-0.13640000,0.89400000,0.08899750,0.00810000,-0.31010000,0.13985750,-0.08020000,0.23830000,0.08449500,-0.02440000,0.31829333,0.30000000,0.14707667,-0.14640000,-0.06190000,0.21386750,0.05250000,0.26710000,0.23551400,1.05149323,0
100668,0.15930900,0.04088500,0.19491800,0.09061333,0.29470000,0.09312425,-0.07615000,0.28140000,0.01093667,0.22285000,0.05245000,0.12770000,0.50700000,0.12009250,-0.22000000,-0.19150000,0.12600500,-0.20200000,0.15600000,0.11185250,0.17320000,0.26754833,0.20000000,0.18061833,0.06680000,-0.08830000,0.15152500,-0.22790000,0.24880000,0.16898100,0.00150270,1
100669,0.14831500,0.17539500,0.18898600,0.23412833,0.43320000,0.20743975,-0.18580000,0.20570000,0.00392000,0.29672667,0.01170000,0.14120000,1.00000000,0.27833500,0.14870000,-0.17680000,0.06524750,0.10000000,0.25170000,0.11084750,-0.26830000,0.34038417,0.20000000,0.27441667,-0.11780000,0.06300000,0.13497500,0.31540000,0.28100000,0.21864000,0.01863612,1
100673,0.06301000,0.33106500,0.09638800,0.01380000,0.58140000,0.24432525,-0.37735000,0.19190000,0.03321333,0.18884500,0.05900000,-0.13470000,0.31300000,0.05775500,0.08460000,-0.21710000,0.06817000,0.21820000,0.27350000,0.10531500,0.00250000,0.31565167,0.30000000,0.08887000,0.19560000,-0.25640000,0.13274500,-0.38580000,0.09140000,0.17624500,1.04814274,0
100674,0.11501400,0.17134000,0.14652600,0.38134500,0.10040000,0.08222775,-0.00685000,0.10940000,0.54836000,0.53449667,0.11230000,0.13490000,0.04000000,0.11650500,0.08600000,0.06270000,0.26169500,0.05600000,0.16790000,0.23707500,0.13340000,0.54624083,0.30000000,0.30609167,-0.08420000,-0.29790000,0.29182500,0.01620000,-0.02650000,0.49011600,0.00150270,1
100677,0.09406000,0.01799500,0.10980200,0.18426667,0.29240000,0.05165575,-0.10200000,0.16260000,0.06188333,0.13902083,0.06450000,0.10960000,0.30500000,0.07207500,-0.06170000,0.20930000,0.09296750,-0.19050000,0.30840000,0.13510750,0.30040000,0.20539833,0.20000000,0.08725667,0.11510000,-0.05550000,0.12113750,-0.17730000,-0.03680000,0.10080800,0.07135714,0
100678,0.04278100,0.35227500,0.06913800,0.06703167,0.28110000,0.05870825,-0.06880000,0.10340000,0.09451000,0.15226083,0.03650000,-0.07880000,0.40000000,0.09983500,-0.15900000,-0.18500000,0.07285750,-0.21200000,-0.09620000,0.10725250,0.23520000,0.26597833,0.20000000,0.12355167,-0.21800000,-0.00960000,0.09876250,0.06310000,0.28000000,0.11363600,0.74405625,0
100679,0.64779000,0.53556000,0.64409000,0.12375500,0.19470000,0.04293850,0.00255000,0.43090000,0.00319667,0.19818333,0.10135000,0.13060000,0.00800000,0.09333500,0.24280000,-0.18680000,0.18917250,-0.11320000,0.05590000,0.12958500,-0.14930000,0.14419167,0.20000000,0.12462833,0.00260000,0.17790000,0.12510000,0.19730000,-0.25950000,0.12481700,1.53040011,0
100683,0.17525100,0.05084500,0.14721400,0.14354000,0.06230000,0.00908350,0.17925000,0.25840000,0.01357333,0.14068250,0.02635000,0.12360000,0.96000000,0.12906250,-0.14160000,0.09750000,0.06806750,-0.18560000,-0.27620000,0.22352750,-0.29690000,0.15732667,0.20000000,0.08340833,-0.22300000,-0.03250000,0.09980250,-0.16070000,0.00390000,0.08996600,0.00150270,1
100686,0.09800500,0.09725000,0.09875600,0.29188000,0.24950000,0.11670100,-0.06785000,0.11520000,0.21039333,0.35395250,0.04675000,0.14030000,0.97600000,0.10756500,0.12590000,-0.07530000,0.10055750,0.02510000,-0.13120000,0.23780250,-0.09970000,0.46976667,0.30000000,0.24295500,-0.08010000,0.11100000,0.30555000,0.16940000,0.26610000,0.34149400,0.07135714,0
100690,0.15373500,0.28309500,0.24600600,0.13863500,0.34630000,0.07635125,-0.11380000,0.21220000,0.23385333,0.24103167,0.04255000,-0.00350000,0.59300000,0.13108500,-0.00190000,0.25820000,0.11158250,0.21020000,0.25340000,0.05284000,0.01890000,0.28814583,0.30000000,0.09337833,0.25810000,0.05650000,0.13352250,-0.08820000,-0.05040000,0.19217100,0.74405625,0
100691,0.09020100,0.12180500,0.04827800,0.36059500,0.24660000,0.08947225,0.08810000,0.09500000,0.12401333,0.26428417,0.08130000,0.13810000,0.57700000,0.05095250,0.04940000,0.22780000,0.08284500,0.08970000,0.14180000,0.41855500,0.17460000,0.25191250,0.30000000,0.26524500,0.30450000,-0.17430000,0.16900000,0.05790000,-0.02870000,0.26362200,0.00265331,1
100694,0.09980900,0.13549000,0.13671600,0.03483833,0.19620000,0.05621725,-0.03425000,0.34780000,0.00702000,0.16402333,0.06760000,-0.14130000,0.39900000,0.05170000,0.03150000,0.12710000,0.06987750,-0.14660000,-0.17160000,0.04934000,-0.29460000,0.23069250,0.20000000,0.12930667,0.04540000,-0.04080000,0.17653250,-0.15070000,0.24850000,0.14819700,0.00150270,1
100695,0.10952600,0.09287500,0.14576200,0.03830333,0.22860000,0.04245500,-0.05990000,0.29040000,0.00804667,0.14413500,0.05550000,-0.13840000,0.09700000,0.08677000,0.19060000,0.25170000,0.09633500,0.20750000,-0.03820000,0.05517250,-0.10300000,0.16933583,0.20000000,0.09655000,0.14720000,0.30780000,0.10447250,-0.08140000,0.02750000,0.09971900,1.45484847,0
100698,0.09001800,0.07297500,0.11865400,0.22580833,0.29620000,0.11650175,-0.10075000,0.12450000,0.17110667,0.30578500,0.02155000,0.13840000,0.69600000,0.18590750,-0.20030000,0.16790000,0.08015000,-0.13140000,0.27150000,0.10597250,0.23170000,0.35143250,0.30000000,0.18127833,0.10590000,-0.05110000,0.24591750,-0.19030000,-0.25150000,0.26052000,0.30979516,0
100699,0.19491400,0.04162500,0.29006400,0.26547833,0.36940000,0.14097475,-0.14555000,0.22310000,0.06261667,0.29673333,0.14730000,0.11100000,0.66200000,0.10946250,-0.13400000,0.12230000,0.32246000,-0.04790000,-0.08350000,0.11247000,-0.07260000,0.34156833,0.20000000,0.18117833,0.25540000,0.28420000,0.18651000,-0.11400000,0.19190000,0.18331100,2.31940835,0
100701,0.30797600,0.21637500,0.43414000,0.04780000,0.38830000,0.09960150,-0.11875000,0.45350000,0.09948333,0.17957417,0.05945000,0.14130000,0.72500000,0.08366000,-0.12270000,0.25640000,0.09949750,0.22820000,-0.03090000,0.04966750,0.14470000,0.16530917,0.30000000,0.09529500,0.31230000,0.03510000,0.13669500,-0.07600000,-0.23040000,0.14222600,1.39502154,0
100702,0.10490800,0.27981500,0.13850000,0.04016667,0.07420000,0.01647150,0.01375000,0.29250000,0.03629667,0.10781500,0.05680000,0.12860000,0.00000000,0.07830000,-0.05430000,-0.07770000,0.08892250,-0.11510000,0.20840000,0.05777500,-0.06180000,0.20109667,0.20000000,0.05228333,0.10140000,0.12740000,0.07779500,0.02720000,-0.24060000,0.06248800,0.01863612,1
100710,0.09764900,0.13706000,0.15477200,0.17233167,0.24420000,0.04485050,0.11505000,0.17590000,0.03392333,0.18911917,0.20160000,0.00220000,0.01000000,0.05611500,0.17690000,-0.16820000,0.22626000,0.06670000,-0.03100000,0.02946250,0.05560000,0.18334333,0.20000000,0.12899167,-0.07260000,0.23160000,0.09149250,-0.31680000,-0.26390000,0.11399200,2.50303519,0
100711,0.10896600,0.04036000,0.13498200,0.03803667,0.52990000,0.12105525,-0.28705000,0.28080000,0.02473333,0.11065750,0.03855000,-0.03920000,0.86300000,0.09055000,0.07010000,-0.02090000,0.06980250,-0.01160000,-0.28960000,0.06782500,0.30930000,0.16671583,0.20000000,0.06405833,0.15190000,0.12760000,0.07553250,-0.37800000,-0.10720000,0.06864800,0.07389913,0
100715,0.12157700,0.07802500,0.16562400,0.24628000,0.45190000,0.17262050,-0.16295000,0.16580000,0.01096000,0.20750333,0.12385000,0.13410000,0.90200000,0.07444250,-0.20930000,0.09700000,0.18439250,-0.06350000,0.01800000,0.12684500,0.04360000,0.23742000,0.20000000,0.12323000,0.09010000,-0.26790000,0.17882750,-0.36190000,-0.28100000,0.14547000,0.00150270,1
100716,0.12615100,0.16264500,0.13416600,0.19550333,0.05410000,0.01386700,0.03760000,0.18210000,0.09453667,0.18923417,0.03920000,0.13940000,0.52200000,0.11766500,-0.02410000,0.05400000,0.09226750,-0.06900000,0.23050000,0.16298250,0.16290000,0.20083250,0.20000000,0.13661667,-0.06380000,-0.17060000,0.15284750,-0.11790000,-0.13340000,0.14310800,0.01863612,1
100719,0.07714700,0.48961500,0.12343400,0.08206667,0.25720000,0.09267575,-0.00370000,0.18890000,0.12770333,0.27192417,0.11795000,-0.03660000,0.95500000,0.05441500,0.02220000,-0.06420000,0.12838000,-0.09810000,0.08130000,0.12603250,-0.17780000,0.34424667,0.30000000,0.24663333,0.00290000,0.26440000,0.15138250,-0.25430000,-0.04490000,0.25319000,0.74405625,0
100721,0.12982100,0.03301500,0.18374600,0.17698500,0.04170000,0.00700275,0.01085000,0.18990000,0.00212000,0.20128750,0.01425000,0.12340000,0.00000000,0.26235750,0.07850000,0.02520000,0.07487250,0.10670000,0.21300000,0.04477000,0.18440000,0.22365000,0.20000000,0.12578500,-0.03020000,-0.23820000,0.07795500,-0.07190000,-0.25510000,0.10665300,0.00150187,1
100724,0.17894700,0.41103000,0.24419400,0.14231000,0.26870000,0.07222675,-0.06920000,0.32240000,0.06355667,0.19425667,0.08745000,0.08680000,0.78800000,0.05884500,-0.13990000,0.06750000,0.10290250,0.13050000,-0.10800000,0.15803500,0.07940000,0.25581833,0.20000000,0.21426500,-0.06940000,-0.25110000,0.09962250,0.19930000,0.13670000,0.16840800,0.35853999,0
100725,0.11906800,0.34446500,0.10985000,0.19695500,0.15370000,0.03827450,-0.02855000,0.19290000,0.08247333,0.17019000,0.04485000,0.09980000,0.88700000,0.07878500,-0.12410000,-0.10490000,0.07070250,-0.01280000,-0.26250000,0.20847500,-0.10480000,0.21089000,0.20000000,0.17793167,0.09060000,0.20920000,0.09418500,-0.06300000,0.00830000,0.14443300,0.00150187,1
100727,0.08262800,0.08001000,0.11147000,0.02503333,0.12060000,0.02914950,0.14470000,0.30580000,0.02199333,0.18552000,0.05655000,-0.14110000,0.00000000,0.06355000,-0.00210000,0.16920000,0.07186500,0.04880000,-0.15750000,0.03538750,-0.07590000,0.21145750,0.30000000,0.09523167,-0.24080000,0.26080000,0.10367500,-0.12020000,-0.04880000,0.16845800,0.30716952,0
100729,0.09441600,0.04077500,0.08790400,0.29215833,0.15340000,0.05310150,0.34420000,0.12030000,0.48713333,0.34599083,0.05895000,0.08520000,0.00000000,0.08470500,-0.07250000,-0.04730000,0.09986500,-0.15120000,-0.13820000,0.28724250,-0.15030000,0.33089167,0.30000000,0.16499500,0.35010000,0.20680000,0.16435750,0.19670000,-0.12670000,0.34136100,0.08341403,0
100735,0.10521500,0.08456500,0.12373200,0.05113500,0.44490000,0.08224150,-0.21310000,0.29330000,0.07734000,0.10986583,0.04160000,-0.13580000,0.37500000,0.08310750,-0.09060000,0.10440000,0.06910750,-0.13750000,-0.23450000,0.09590250,-0.18190000,0.14007417,0.20000000,0.05983167,0.30520000,0.15630000,0.08763500,-0.13960000,-0.01330000,0.07095300,0.07389913,0
100740,0.02747300,0.20080000,0.04301600,0.15117667,0.13600000,0.03707175,0.02400000,0.04570000,0.09645667,0.20834167,0.05320000,-0.00120000,0.25600000,0.11292250,-0.02760000,0.16860000,0.12015250,0.01770000,0.17510000,0.03258250,-0.01120000,0.25196833,0.20000000,0.20239333,0.02910000,-0.20520000,0.08836250,0.16510000,-0.00600000,0.15678100,0.92920243,0
100741,0.12270800,0.03092000,0.10729800,0.22776167,0.36450000,0.09956500,-0.13275000,0.16570000,0.00361667,0.19932667,0.03355000,0.11060000,0.67700000,0.11097250,-0.02360000,0.07590000,0.07446250,-0.03230000,0.24140000,0.24862750,0.23000000,0.20904000,0.20000000,0.22392500,-0.10060000,-0.13750000,0.07665750,0.26390000,0.02680000,0.16501800,0.00150270,1
100742,0.13821800,0.28270000,0.21389400,0.04252333,0.50170000,0.13911175,-0.31450000,0.26880000,0.04882000,0.15435417,0.07635000,-0.13610000,0.95800000,0.09391750,0.08220000,-0.27280000,0.14341750,-0.04610000,0.11940000,0.03791500,-0.13690000,0.23665917,0.20000000,0.08100833,-0.24510000,-0.27930000,0.10421500,0.25660000,-0.01200000,0.09029100,0.00150270,1
100747,0.13712700,0.44155000,0.13437800,0.15510167,0.17350000,0.03245025,0.00405000,0.25100000,0.01440333,0.15378000,0.03590000,0.09530000,0.81600000,0.10220250,-0.09600000,0.28330000,0.07336250,-0.05220000,-0.09790000,0.18448000,0.28050000,0.20985250,0.20000000,0.11055000,-0.00450000,0.03290000,0.11995000,-0.17800000,-0.09190000,0.11431100,0.00150270,1
100763,0.08909200,0.18424000,0.06091400,0.26768167,0.53810000,0.25558350,-0.31100000,0.11830000,0.06791000,0.18744500,0.06755000,0.13830000,0.87300000,0.05694000,-0.06100000,0.24970000,0.07692750,-0.00170000,0.14730000,0.28611000,0.21040000,0.27331917,0.30000000,0.13107500,-0.37000000,-0.11240000,0.15421250,0.16810000,-0.10530000,0.17138700,0.00150270,1
100768,0.12218300,0.44776500,0.16894800,0.33841667,0.35750000,0.13596150,-0.02470000,0.11030000,0.07106333,0.32283917,0.09165000,0.09970000,0.09100000,0.14825750,-0.09250000,0.01230000,0.27173000,-0.11250000,-0.09630000,0.17226750,0.01250000,0.27787250,0.20000000,0.28292667,-0.01440000,0.26310000,0.12413750,0.34310000,-0.24710000,0.21941100,0.00265331,1
100770,0.10081700,0.09219500,0.06615200,0.42784500,0.34470000,0.16815700,-0.10620000,0.08410000,0.00357333,0.28815333,0.04220000,0.14140000,0.99400000,0.10584250,0.03590000,0.29840000,0.08930750,0.10560000,0.25140000,0.45199000,0.27430000,0.33501500,0.20000000,0.31126000,-0.08040000,-0.05790000,0.20242000,0.26440000,0.00420000,0.26772400,0.00150270,1
100772,0.16471200,0.11797500,0.23258600,0.14020500,0.12020000,0.02284175,0.27950000,0.26320000,0.00076333,0.18400500,0.01575000,0.13830000,0.01200000,0.22081750,-0.02100000,0.30330000,0.06961750,0.11810000,0.07980000,0.02604500,0.23280000,0.16406167,0.20000000,0.10388500,0.18380000,0.00530000,0.10575500,0.30410000,-0.12550000,0.10463300,0.01863612,1
100777,0.09533700,0.09033000,0.14005800,0.14950000,0.37140000,0.12659100,-0.06310000,0.20580000,0.00248333,0.21397083,0.16425000,0.03730000,0.15500000,0.05471750,-0.16130000,0.05210000,0.17974250,-0.10580000,-0.14610000,0.07093500,-0.18640000,0.22911917,0.20000000,0.17546333,-0.03780000,0.11970000,0.14425750,0.33360000,-0.29750000,0.16298100,0.30979516,0
100778,0.08635400,0.00526000,0.11468600,0.02880333,0.08540000,0.02496450,-0.00780000,0.26630000,0.15842333,0.13898917,0.04575000,0.08340000,0.03500000,0.07709500,-0.09100000,-0.28040000,0.07057250,-0.09440000,0.08170000,0.02455250,0.07540000,0.22226750,0.20000000,0.12076500,-0.05900000,-0.15110000,0.08815500,0.02640000,0.05820000,0.10772100,0.78946139,0
100784,0.12885800,0.42770000,0.10226400,0.34317833,0.39800000,0.16656300,-0.19780000,0.13080000,0.13916667,0.27861417,0.05210000,0.11240000,0.98100000,0.10208750,-0.05060000,-0.07580000,0.10636000,-0.02060000,-0.20310000,0.36306250,-0.08800000,0.31888500,0.20000000,0.35089833,-0.19240000,0.21150000,0.10104750,0.20560000,0.13790000,0.25095900,0.00150270,1
100785,0.10146400,0.31092500,0.09520200,0.16927833,0.31880000,0.10065175,-0.10200000,0.18480000,0.14610667,0.21473333,0.04960000,0.12600000,0.08700000,0.07463750,-0.16120000,0.12660000,0.07400750,-0.17850000,0.31060000,0.17389500,0.15970000,0.30609750,0.30000000,0.16867833,-0.08860000,-0.10640000,0.15531000,0.23020000,0.28340000,0.19822200,0.07389913,0
100786,0.12392800,0.37877000,0.12440600,0.08112167,0.50750000,0.16005300,-0.27140000,0.25550000,0.04970333,0.13973833,0.09515000,0.12530000,0.99300000,0.05583500,0.15120000,-0.27880000,0.10626750,0.07990000,0.10420000,0.10639750,-0.30440000,0.15175417,0.20000000,0.10308000,0.35430000,-0.01200000,0.10249500,-0.15320000,-0.23640000,0.10284500,0.00150270,1
100787,0.08767700,0.06027000,0.10653200,0.28957833,0.12890000,0.05936925,0.06365000,0.09940000,0.45101000,0.41993167,0.05045000,0.12310000,0.00100000,0.13709250,-0.00230000,0.07050000,0.13830500,0.03740000,-0.02060000,0.19092500,-0.00210000,0.49594833,0.30000000,0.23202333,-0.06550000,-0.31370000,0.29057250,-0.19440000,0.18040000,0.39375900,0.08341403,0
100791,0.22424600,0.58146500,0.40661200,0.22467500,0.02640000,0.01585925,0.00325000,0.23070000,0.09652000,0.22602167,0.08945000,-0.00830000,0.00000000,0.13387500,0.03720000,0.24510000,0.23951250,-0.19180000,0.21770000,0.11641750,-0.19940000,0.27045667,0.20000000,0.13272167,-0.01540000,-0.01530000,0.10559250,-0.04180000,-0.12370000,0.12187100,0.74405625,0
100802,0.08219200,0.18294000,0.11269800,0.06894667,0.21400000,0.06581925,-0.05165000,0.21270000,0.04626000,0.22142167,0.04330000,0.09390000,0.38900000,0.08643000,-0.12460000,0.11930000,0.07486250,-0.13750000,-0.09300000,0.03568500,0.12420000,0.34024333,0.30000000,0.17820833,-0.14050000,-0.23830000,0.15091000,0.07350000,0.06950000,0.20119000,0.07135714,0
100804,0.11437400,0.05463000,0.16349200,0.37441333,0.01680000,0.05510000,0.02545000,0.10070000,0.73131333,0.66378167,0.09385000,0.08260000,0.00000000,0.14871750,0.15920000,-0.13510000,0.27915250,0.22610000,-0.05980000,0.16948500,-0.04720000,0.73855833,0.30000000,0.36533000,0.06340000,0.23170000,0.51286000,0.08030000,0.12570000,0.62539000,0.06406078,0
100805,0.10983800,0.00559000,0.12861800,0.33106000,0.50940000,0.34180375,-0.28920000,0.13090000,0.00574667,0.30256167,0.11470000,0.09820000,0.81700000,0.07965000,-0.07180000,0.12190000,0.18275500,0.03080000,0.04060000,0.25609250,0.03930000,0.33307333,0.20000000,0.33560000,0.17080000,-0.23390000,0.14188250,-0.33860000,0.22120000,0.25811200,0.00150270,1
100813,0.09976100,0.22426500,0.13797400,0.05377000,0.50850000,0.10400550,-0.32175000,0.32190000,0.07272667,0.10674167,0.04280000,0.14140000,0.50600000,0.08420250,-0.13510000,-0.19910000,0.07207250,-0.22690000,0.12070000,0.07293250,0.29750000,0.17431250,0.20000000,0.05835667,0.23730000,0.02490000,0.07641500,-0.27120000,-0.13520000,0.06557900,0.01863612,1
100814,0.10742100,0.05505500,0.15322400,0.13656000,0.30820000,0.07026850,-0.06770000,0.18030000,0.12838667,0.17782167,0.02270000,0.03660000,0.15900000,0.14868750,-0.04350000,0.07960000,0.06754500,0.10800000,-0.01830000,0.03054250,-0.07990000,0.35232750,0.20000000,0.13442167,-0.25520000,-0.26780000,0.11559750,0.05310000,0.25450000,0.12689200,0.06406078,0
100815,0.09616500,0.25252500,0.11526400,0.40537000,0.30820000,0.10463875,-0.01485000,0.08130000,0.05504000,0.35116000,0.03120000,0.10920000,0.89000000,0.22799500,0.15960000,0.18200000,0.14223250,0.19670000,0.10970000,0.26391500,0.17600000,0.35539500,0.20000000,0.40309833,-0.01000000,-0.16410000,0.07860500,0.29830000,0.04680000,0.27330000,0.07389913,0
100820,0.03329800,0.27874500,0.05353400,0.07234667,0.11850000,0.01886500,0.11985000,0.08830000,0.00747333,0.11367167,0.10120000,-0.13530000,0.19300000,0.05240500,0.01500000,0.24390000,0.10606000,0.08980000,0.19690000,0.04688750,-0.08650000,0.16325500,0.20000000,0.06460000,0.10650000,-0.02130000,0.08564750,0.22500000,-0.20370000,0.07302000,2.27151654,0
100821,0.15547900,0.32572000,0.24050800,0.27731000,0.25470000,0.05866375,-0.01795000,0.28550000,0.01543000,0.27087417,0.33085000,-0.13080000,0.28900000,0.05321500,-0.12690000,0.29340000,0.35214000,-0.02940000,0.02500000,0.14275000,-0.04940000,0.36777250,0.20000000,0.20460833,0.23970000,-0.31140000,0.10035500,-0.01500000,-0.28840000,0.16290800,2.45540382,0
100828,0.07401100,0.25051000,0.10700600,0.22149833,0.15610000,0.06544500,0.25440000,0.10820000,0.20458667,0.30647417,0.09045000,0.04990000,0.00000000,0.09003750,0.18840000,0.24170000,0.16289500,0.09750000,0.30040000,0.11098000,0.20350000,0.32514333,0.30000000,0.22403000,-0.31680000,-0.01210000,0.18053500,-0.16060000,-0.28910000,0.26659700,0.07135714,0
100831,0.10349000,0.17110000,0.12355400,0.22282667,0.01300000,0.09037950,0.07480000,0.15200000,0.19123667,0.41540917,0.03455000,0.14130000,0.00000000,0.13359000,0.11350000,-0.23290000,0.09231250,0.14460000,-0.08410000,0.16754500,-0.15430000,0.47164917,0.30000000,0.36766833,0.12900000,0.16710000,0.36360750,0.11600000,-0.13940000,0.40813000,0.30979516,0
100833,0.09952400,0.00568000,0.12212000,0.25329333,0.19530000,0.10127625,0.01540000,0.12210000,0.30659000,0.51002500,0.03055000,0.10600000,0.97900000,0.15263000,0.24070000,0.02990000,0.09319250,0.12640000,-0.01310000,0.14208250,-0.01060000,0.55614250,0.30000000,0.39203500,0.01470000,-0.30940000,0.21654000,0.20990000,-0.10940000,0.51370100,0.30097511,0
100834,0.08104000,0.15679000,0.11280400,0.09692833,0.09150000,0.03926900,0.08430000,0.18250000,0.16726000,0.20673000,0.05600000,0.11990000,0.00000000,0.08060000,-0.00080000,0.24980000,0.09029750,0.06780000,-0.20940000,0.03828000,0.27290000,0.32158833,0.30000000,0.13461167,-0.09190000,-0.11490000,0.15249250,-0.18340000,0.19110000,0.17971600,0.07135714,0
100835,0.15358400,0.00195500,0.23201200,0.62750833,0.02790000,0.04247850,0.03830000,0.10010000,0.43213333,0.70763000,0.00720000,0.10120000,0.57200000,0.77491750,-0.13470000,0.16270000,0.11148750,-0.07820000,0.08000000,0.11188250,0.08090000,0.72972167,0.30000000,0.24971500,-0.07470000,-0.12580000,0.37074750,-0.10260000,-0.23770000,0.49459400,0.00150187,1
100836,0.08854300,0.13472500,0.11227800,0.19282500,0.07830000,0.04740700,0.01150000,0.14550000,0.11178667,0.24786833,0.03380000,0.08280000,0.00200000,0.11093000,0.16560000,-0.07160000,0.07499000,0.03430000,-0.13440000,0.11661000,-0.06070000,0.35765917,0.30000000,0.22772833,-0.10110000,0.24360000,0.13810500,-0.02280000,-0.05680000,0.22307400,0.30716952,0
100848,0.07549500,0.18049500,0.09037600,0.14080000,0.33700000,0.05358725,0.09105000,0.16460000,0.01434667,0.12091250,0.07275000,0.14040000,0.83600000,0.06374750,0.13260000,0.04200000,0.09276500,0.14460000,-0.12220000,0.10523750,-0.02730000,0.16748750,0.20000000,0.08016667,0.38440000,0.29110000,0.08597250,0.04740000,0.24480000,0.08249000,0.30979516,0
100853,0.21806800,0.44330000,0.32797800,0.30278000,0.01190000,0.01305150,-0.00010000,0.22170000,0.03862333,0.33700917,0.01530000,0.06600000,0.00000000,0.40825000,-0.10190000,-0.14730000,0.12483500,-0.06370000,0.26270000,0.11346500,-0.12610000,0.38199250,0.20000000,0.24815167,0.00180000,0.14480000,0.10571500,-0.01000000,0.19120000,0.19117800,1.63531766,0
100854,0.05522100,0.01600000,0.07632800,0.09497667,0.23510000,0.04989200,-0.03215000,0.14460000,0.16454000,0.17929500,0.07665000,0.11450000,0.00400000,0.05762250,-0.15590000,0.00110000,0.08833500,-0.18890000,-0.13970000,0.03115000,-0.12450000,0.27096500,0.30000000,0.10018333,0.20350000,0.21730000,0.13162750,-0.03160000,-0.13960000,0.15677100,0.07135714,0
100861,0.12130200,0.15057000,0.16931200,0.03755500,0.56960000,0.28366950,-0.39940000,0.28080000,0.08733000,0.17687333,0.03945000,-0.09880000,0.70900000,0.11324250,0.12520000,0.20190000,0.08933250,0.20180000,-0.15630000,0.01586250,0.15840000,0.24245083,0.20000000,0.11402833,-0.24980000,0.00210000,0.15700500,0.31970000,0.29850000,0.13121900,0.00150270,1
100863,0.09787300,0.05844500,0.13650200,0.12378667,0.08060000,0.02645750,0.06470000,0.24330000,0.14091333,0.21272500,0.13225000,0.03340000,0.13200000,0.05585500,0.05310000,0.08840000,0.14774000,0.06330000,-0.29690000,0.08257500,-0.27030000,0.28772500,0.30000000,0.14059500,0.16100000,0.07560000,0.14574000,0.08040000,-0.05520000,0.17383300,0.01863612,1
100865,0.12492300,0.34700500,0.14631200,0.15017000,0.15810000,0.02665025,-0.03125000,0.19880000,0.00299667,0.15871750,0.09095000,0.10680000,0.91800000,0.07210750,0.08750000,-0.24820000,0.13114000,-0.02460000,0.21600000,0.11476500,-0.25520000,0.18500500,0.20000000,0.13121833,0.07750000,-0.03380000,0.07608000,-0.08060000,0.09900000,0.10916300,1.68161144,0
100874,0.12746900,0.16239000,0.15801200,0.15514500,0.52050000,0.25615725,-0.31850000,0.19860000,0.02215000,0.20662083,0.03690000,0.14050000,0.74100000,0.13725250,-0.20890000,0.05340000,0.10124000,-0.20600000,0.25190000,0.10377750,0.17050000,0.24125333,0.20000000,0.14175667,-0.32360000,-0.08840000,0.16873500,0.19680000,-0.28340000,0.15254700,0.00150270,1
100882,0.08677800,0.14281000,0.10186000,0.29569833,0.16040000,0.02625475,0.12750000,0.12340000,0.24007000,0.23352167,0.15745000,0.14120000,0.00000000,0.05718250,-0.03090000,-0.23090000,0.18004500,-0.12790000,-0.30720000,0.22055750,-0.27120000,0.24929583,0.30000000,0.12171167,0.09850000,0.00980000,0.11220250,0.25890000,-0.00090000,0.18533500,0.06406078,0
100886,0.11385900,0.14162000,0.08363400,0.48438333,0.30710000,0.19175250,-0.11645000,0.08390000,0.22068000,0.49924333,0.01730000,0.13940000,1.00000000,0.21317750,0.06570000,0.02770000,0.07374500,0.01420000,0.09390000,0.45245500,0.05490000,0.55527333,0.30000000,0.36048000,0.17060000,-0.22390000,0.31041750,-0.13650000,0.23680000,0.48432300,0.00150270,1
100890,0.10177800,0.06952000,0.13164400,0.07043167,0.63230000,0.21958700,-0.47540000,0.29700000,0.01706000,0.11856000,0.06485000,0.13960000,0.91500000,0.07238250,-0.03500000,-0.02130000,0.09389500,-0.02430000,0.31020000,0.07991000,-0.27770000,0.15450000,0.20000000,0.07530833,0.38600000,-0.04480000,0.07643750,-0.24630000,0.16040000,0.07576000,0.00150270,1
100891,0.20585900,0.40789500,0.33688000,0.19147500,0.12350000,0.01971875,-0.01415000,0.27360000,0.05376667,0.18701500,0.18640000,-0.00270000,0.27700000,0.05959500,-0.17120000,0.15930000,0.22219750,0.10140000,0.13490000,0.09051750,-0.02560000,0.22060833,0.20000000,0.13530333,0.09320000,-0.23930000,0.07629500,-0.03030000,-0.15160000,0.11170100,3.19073438,0
100899,0.10180100,0.20415000,0.05529400,0.32259167,0.22900000,0.08393200,0.10850000,0.10740000,0.01527000,0.26561167,0.04960000,0.13710000,0.38800000,0.06729750,-0.04780000,-0.02100000,0.06678250,-0.07510000,0.08290000,0.36838000,0.01660000,0.32580917,0.20000000,0.36552833,-0.07210000,-0.31160000,0.11446250,-0.30110000,-0.09320000,0.26510200,0.00150270,1
100908,0.09056900,0.12816000,0.13135800,0.16404167,0.13570000,0.02355925,0.14240000,0.15240000,0.06975667,0.17455833,0.01840000,0.08720000,0.22000000,0.18568250,-0.02020000,-0.04150000,0.06833500,-0.09840000,-0.17230000,0.03500250,-0.02950000,0.31435833,0.20000000,0.12627500,-0.11400000,0.19280000,0.08024500,-0.24970000,-0.31320000,0.10786300,0.07135714,0
100913,0.13073800,0.10921000,0.13217400,0.33155667,0.07530000,0.02173425,0.17095000,0.12730000,0.00830000,0.25396500,0.04525000,0.14140000,0.00300000,0.13191500,-0.01110000,-0.02370000,0.11939000,0.09880000,0.04040000,0.25884500,0.00920000,0.26942500,0.20000000,0.20210667,0.22640000,0.30860000,0.20743000,0.15110000,-0.28580000,0.20423600,0.00265331,1
100925,0.10489700,0.00749000,0.12341400,0.09916333,0.20950000,0.03938450,-0.03040000,0.25550000,0.10309667,0.17619750,0.06280000,0.09290000,0.16600000,0.07107250,0.10310000,-0.02460000,0.08928250,0.07050000,0.22880000,0.11337500,0.23260000,0.18594750,0.30000000,0.11806167,-0.17470000,-0.14940000,0.10929500,0.03480000,-0.00950000,0.14729500,0.07135714,0
100928,0.08335100,0.17569500,0.09851600,0.42969167,0.19410000,0.07459925,-0.02990000,0.06690000,0.07576000,0.45391583,0.07150000,0.14130000,0.04900000,0.15669750,-0.10820000,0.12090000,0.22401750,-0.11010000,0.18780000,0.28472250,0.15280000,0.43887500,0.30000000,0.43953667,0.15570000,-0.17990000,0.12091250,-0.03840000,-0.03850000,0.39241300,0.06406078,0
100932,0.12496000,0.08799500,0.13216200,0.20926833,0.44550000,0.12148725,-0.23710000,0.18290000,0.07735667,0.16343750,0.05885000,0.12410000,0.63500000,0.09599000,-0.18850000,-0.30110000,0.11302500,-0.19690000,0.14450000,0.19554000,0.17420000,0.23252917,0.20000000,0.12651333,0.17590000,-0.14800000,0.09152750,-0.26960000,-0.05620000,0.11251900,0.00150270,1
100936,0.13403700,0.10703500,0.13577600,0.52729833,0.26710000,0.12752175,0.04815000,0.08600000,0.11174667,0.42928667,0.02425000,0.13230000,0.15700000,0.27737500,-0.06300000,-0.02410000,0.13443250,0.01590000,-0.05820000,0.38440750,-0.03460000,0.49548250,0.20000000,0.48428333,-0.03220000,0.25270000,0.14962750,-0.29930000,-0.20380000,0.35042100,0.01863612,1
100943,0.08157400,0.05338500,0.10324600,0.15093000,0.20700000,0.05183400,0.06070000,0.16260000,0.04382000,0.18333917,0.06540000,0.06280000,0.44900000,0.06505500,-0.20320000,0.20270000,0.08509250,-0.05860000,0.27710000,0.09705500,0.30660000,0.19200000,0.20000000,0.20951833,-0.04770000,-0.01420000,0.08559000,-0.25470000,-0.26700000,0.15994700,0.07135714,0
100946,0.13381800,0.05252500,0.20549800,0.26780500,0.23760000,0.05378175,-0.01830000,0.13860000,0.16208667,0.26982917,0.03305000,0.14090000,0.00400000,0.21757000,0.05620000,-0.25000000,0.14373250,0.17950000,-0.18670000,0.05776500,-0.21560000,0.33069333,0.30000000,0.17337000,-0.22110000,0.14620000,0.10616000,0.01650000,0.01900000,0.17927300,0.00150270,1
100948,0.09616700,0.26356000,0.13505800,0.06938667,0.46980000,0.11978425,-0.25670000,0.28790000,0.01583667,0.13472667,0.03295000,0.10040000,0.55600000,0.10429500,-0.22010000,-0.10200000,0.06871500,-0.24170000,0.18510000,0.06436000,-0.10190000,0.20264750,0.20000000,0.09105333,-0.29670000,0.16480000,0.09459000,0.17300000,-0.23880000,0.09246800,0.07389913,0
100952,0.15630300,0.22129000,0.18470600,0.15047500,0.33340000,0.05275250,-0.13590000,0.23840000,0.23091000,0.14746083,0.03730000,0.14090000,0.93000000,0.14151250,0.01990000,0.18670000,0.10555750,-0.02000000,-0.20660000,0.13319750,-0.30360000,0.33209083,0.20000000,0.07457833,-0.14200000,-0.03490000,0.08344250,0.19150000,0.21130000,0.07812500,0.30979516,0
100953,0.04039400,0.05572000,0.05813000,0.15720333,0.38270000,0.07943875,-0.10425000,0.07640000,0.01593333,0.14955000,0.06810000,0.05590000,0.86300000,0.08222250,-0.01280000,-0.22530000,0.11200500,-0.05220000,-0.29070000,0.06012750,0.30350000,0.17573417,0.20000000,0.11479167,0.06580000,0.02110000,0.08223500,-0.31690000,0.07680000,0.10177000,1.94451253,0
100958,0.14261400,0.23132500,0.20785200,0.01823333,0.49320000,0.15478900,-0.29605000,0.35770000,0.10329000,0.17062583,0.08135000,-0.14120000,0.88600000,0.06551250,-0.07680000,0.21630000,0.10660250,0.12560000,-0.07860000,0.03957500,-0.29820000,0.18617917,0.30000000,0.10093000,-0.20670000,0.04620000,0.11285750,0.28650000,0.28500000,0.13590400,0.00150270,1
100960,0.11144600,0.38428000,0.18797400,0.25559000,0.27460000,0.09630450,-0.07660000,0.15030000,0.34706333,0.33291750,0.27870000,-0.12300000,0.12800000,0.06813500,0.05030000,0.21590000,0.37975250,0.13750000,0.09350000,0.02463750,-0.19730000,0.33226750,0.30000000,0.18728500,0.07790000,-0.19340000,0.18921500,-0.19670000,0.18480000,0.22034700,1.17385496,0
100961,0.07816100,0.00022000,0.10168200,0.11894500,0.17540000,0.06184900,0.03730000,0.19800000,0.11878667,0.20020417,0.09425000,0.10010000,0.49900000,0.05385250,-0.10340000,0.16810000,0.10153250,-0.05000000,-0.26960000,0.08717750,-0.26980000,0.26589500,0.20000000,0.15249333,-0.03540000,0.18230000,0.21648500,-0.21080000,-0.07710000,0.17809000,0.30097511,0
100971,0.09472500,0.05433500,0.14049200,0.30688167,0.24230000,0.07186825,-0.05955000,0.09670000,0.07211667,0.33973083,0.01930000,0.13760000,0.31900000,0.29502250,0.12380000,0.25010000,0.11399000,0.18230000,0.17300000,0.07766500,0.20200000,0.39888417,0.20000000,0.35357333,0.17380000,-0.08000000,0.07982000,-0.06850000,-0.27310000,0.24407200,0.07135714,0
100982,0.10864900,0.25706000,0.15302000,0.04934333,0.00270000,0.01746550,0.21705000,0.30300000,0.01217667,0.12364333,0.06775000,0.14130000,0.00000000,0.07811750,0.06250000,0.25360000,0.10587500,-0.00390000,-0.07900000,0.06106000,-0.26420000,0.19296750,0.20000000,0.07103000,0.20970000,0.19220000,0.08039250,0.20700000,-0.04510000,0.07477500,0.07389913,0
100984,0.16395900,0.07909000,0.24714400,0.14841833,0.02520000,0.02355075,0.09335000,0.29230000,0.13600667,0.19136667,0.15650000,-0.05390000,0.00100000,0.07490000,0.01800000,-0.27750000,0.23439750,-0.10340000,0.08500000,0.05735500,0.05070000,0.26724250,0.20000000,0.10226167,-0.12460000,-0.11610000,0.11141250,-0.14980000,0.29780000,0.10592200,0.74405625,0
100989,0.18368500,0.11418000,0.24779400,0.02226167,0.20060000,0.02949925,-0.04895000,0.30910000,0.08187667,0.14356583,0.02785000,-0.12650000,0.92900000,0.15439000,0.17820000,-0.26250000,0.08602250,0.01100000,0.10580000,0.06577750,0.02800000,0.21265167,0.20000000,0.06860167,-0.11650000,0.23140000,0.08738250,0.08410000,-0.11110000,0.07611400,2.02873211,0
101004,0.12503600,0.01500000,0.14939400,0.22483833,0.65350000,0.49786875,-0.52685000,0.14720000,0.00417667,0.22364750,0.02745000,0.10590000,0.97600000,0.18755500,-0.09360000,-0.15900000,0.10304750,-0.08840000,-0.01190000,0.15318500,-0.01790000,0.23344833,0.20000000,0.13456833,0.28930000,0.28710000,0.17848750,-0.36430000,0.18760000,0.15213700,0.00150270,1
101012,0.12428100,0.14692000,0.13549000,0.26932833,0.01990000,0.01593525,0.09170000,0.15140000,0.00139667,0.21354500,0.03150000,0.09390000,0.00000000,0.13129750,0.03860000,-0.01580000,0.08269500,0.17990000,0.03880000,0.20048250,-0.01910000,0.19730333,0.20000000,0.17170333,0.14580000,-0.29520000,0.16908500,0.12580000,0.26700000,0.17065700,0.01863612,1
101016,0.08724600,0.01955000,0.09407800,0.18024500,0.23140000,0.05442100,0.25360000,0.16240000,0.07679667,0.17597250,0.05770000,0.11000000,0.00200000,0.06657250,-0.07820000,0.26790000,0.07685750,0.04150000,-0.25050000,0.15379000,-0.25950000,0.22934667,0.20000000,0.20326833,-0.13750000,0.00160000,0.07958500,-0.36890000,0.26660000,0.15379500,0.30716952,0
101021,0.11412000,0.06403000,0.08303800,0.50006333,0.07650000,0.11099675,0.11755000,0.13480000,0.15566000,0.51054500,0.11415000,0.11210000,0.00000000,0.05359500,-0.09380000,-0.20070000,0.12235500,-0.04030000,-0.07690000,0.60447750,-0.08870000,0.55759917,0.30000000,0.62864667,0.19630000,0.18160000,0.29642000,0.11980000,-0.19420000,0.54227400,0.00150270,1
101024,0.11117700,0.03858000,0.12879000,0.15446167,0.39580000,0.08689350,-0.04615000,0.22240000,0.00190000,0.12771083,0.08080000,0.11780000,0.67800000,0.05357500,-0.22620000,0.29400000,0.08658250,-0.04960000,0.15880000,0.12312500,0.17750000,0.13332333,0.20000000,0.08603000,-0.37090000,-0.14910000,0.11393250,0.02490000,-0.09120000,0.09719000,0.00150270,1
101025,0.11562500,0.06537500,0.16123600,0.24850000,0.42020000,0.22362275,-0.19150000,0.14310000,0.00157667,0.30045083,0.07350000,0.12430000,0.24300000,0.11719250,0.07890000,-0.08260000,0.17232500,0.17350000,0.02480000,0.12402500,0.00240000,0.25550167,0.20000000,0.29883333,0.13370000,-0.28920000,0.16358750,-0.28640000,0.11760000,0.24473400,0.01863612,1
101030,0.08671800,0.15843000,0.12168800,0.11673000,0.17890000,0.09152050,-0.02850000,0.18110000,0.40928000,0.39024583,0.09710000,0.12970000,0.37900000,0.06391500,0.13520000,0.05550000,0.12415000,0.04010000,0.20960000,0.04149000,0.09270000,0.39102417,0.30000000,0.27798000,-0.13750000,0.31210000,0.24799500,0.04140000,0.03150000,0.39306900,0.30716952,0
101040,0.08733200,0.02203000,0.10496800,0.21732000,0.26630000,0.05021875,0.13305000,0.12060000,0.02250333,0.18798167,0.02290000,0.08680000,0.87300000,0.16300250,-0.23600000,0.15730000,0.07459500,-0.16160000,0.06240000,0.13528000,0.05140000,0.31077167,0.20000000,0.16640833,-0.07740000,-0.20850000,0.07673500,-0.34370000,-0.25680000,0.13053900,1.68161144,0
101045,0.16348600,0.03239500,0.20225800,0.07659667,0.22730000,0.08273000,-0.05535000,0.28050000,0.00113667,0.24138000,0.04300000,0.12210000,0.94300000,0.12419250,-0.11520000,-0.09840000,0.10686500,-0.01540000,0.16380000,0.08802500,0.14710000,0.32442250,0.20000000,0.20097500,0.07070000,-0.19900000,0.19161750,-0.15660000,0.12990000,0.19723200,0.00150270,1
101049,0.10989800,0.28430500,0.08196000,0.28077333,0.08950000,0.01935325,0.10015000,0.13820000,0.01201667,0.19370083,0.08970000,0.11250000,0.38400000,0.05506500,0.09280000,-0.08000000,0.09878000,0.19220000,0.01600000,0.29603500,-0.06970000,0.22185250,0.20000000,0.19074333,0.10370000,0.25390000,0.14114250,0.19320000,0.26980000,0.17090300,0.00265331,1
101051,0.13375400,0.32165500,0.21634200,0.08952500,0.41140000,0.08888350,-0.21155000,0.20980000,0.08278333,0.16595000,0.05790000,-0.14070000,0.96100000,0.12166250,0.09810000,-0.17430000,0.14090500,-0.04090000,-0.01710000,0.05176500,0.22840000,0.21879500,0.20000000,0.09750000,-0.20550000,0.18530000,0.08903250,0.20590000,0.30680000,0.09411300,1.08234791,0
101058,0.09884800,0.00748000,0.14422000,0.11327167,0.35770000,0.07591600,-0.15850000,0.17760000,0.00845333,0.16350500,0.03910000,0.10630000,0.91100000,0.13132750,0.06590000,-0.05430000,0.10265750,0.07130000,0.12330000,0.03267250,0.11680000,0.20706250,0.20000000,0.10166167,-0.16220000,-0.21340000,0.10403750,0.19540000,0.23500000,0.10261200,0.30716952,0
101061,0.13734000,0.11258500,0.15912400,0.09665000,0.68000000,0.23374925,-0.55870000,0.32330000,0.01220667,0.11029417,0.05350000,0.14110000,0.70000000,0.08442750,0.03660000,0.10440000,0.09035250,0.14090000,-0.21790000,0.13619750,-0.26920000,0.11840250,0.20000000,0.05224000,-0.40220000,0.08240000,0.07774250,0.27780000,-0.00800000,0.06244100,0.00150270,1
101065,0.12902600,0.02974000,0.17146800,0.03485667,0.30660000,0.08680100,-0.11745000,0.28890000,0.00919667,0.18672167,0.03810000,0.13280000,0.90300000,0.11351000,0.13250000,-0.17450000,0.08653000,0.04450000,0.10070000,0.02845250,0.07060000,0.23089583,0.20000000,0.13522333,0.14880000,0.28280000,0.15729000,-0.15790000,-0.02990000,0.14405000,0.00150270,1
101068,0.10804900,0.28686500,0.15762600,0.05549833,0.25310000,0.03901525,0.04790000,0.26660000,0.10840000,0.16599250,0.08415000,0.13300000,0.14900000,0.07590500,-0.06630000,-0.19990000,0.12776750,-0.01470000,0.06170000,0.04970250,-0.16230000,0.14305000,0.30000000,0.08310000,0.28660000,0.09210000,0.08553250,0.03340000,0.31370000,0.11772200,0.99291219,0
101070,0.08409400,0.41905500,0.13360400,0.00780500,0.35440000,0.05094025,0.05925000,0.23580000,0.00257667,0.11764750,0.09685000,-0.13070000,0.99600000,0.06373250,-0.23850000,0.06390000,0.12347000,-0.19650000,-0.16820000,0.09256500,0.18610000,0.11166333,0.20000000,0.05929667,-0.03080000,-0.28310000,0.07679750,-0.38520000,0.03300000,0.06629700,2.07125686,0
101078,0.13560400,0.01657000,0.19037600,0.02282333,0.11750000,0.02216550,-0.00165000,0.39050000,0.02417000,0.10737083,0.05580000,-0.14100000,0.00000000,0.06326000,-0.00830000,-0.19430000,0.07062250,-0.24410000,0.11700000,0.02717250,0.13590000,0.15401167,0.20000000,0.06923167,-0.11460000,-0.24960000,0.08438500,0.00290000,0.06000000,0.07529300,0.00150187,1
101085,0.11365300,0.33858500,0.13449400,0.09488500,0.26190000,0.08968750,-0.00655000,0.27910000,0.00643667,0.21297167,0.03350000,0.03600000,0.01100000,0.10403500,-0.13750000,-0.21420000,0.06968750,-0.15230000,0.13540000,0.10412500,-0.20120000,0.26923000,0.20000000,0.18932500,-0.00510000,0.03570000,0.18120750,0.25680000,0.30360000,0.18607800,0.30979516,0
101102,0.11011200,0.21675500,0.11877800,0.35295500,0.01650000,0.02388625,-0.00025000,0.11120000,0.14683000,0.29286417,0.02765000,0.07230000,0.00000000,0.17429000,-0.00350000,-0.11440000,0.09639250,-0.10190000,-0.06260000,0.27492500,-0.13040000,0.38210167,0.20000000,0.24605500,-0.01230000,0.18960000,0.23882750,0.00420000,0.26700000,0.24316400,0.01863612,1
101103,0.10451400,0.37706500,0.16009600,0.05131000,0.02740000,0.02363775,0.01945000,0.24240000,0.02585333,0.14654083,0.05145000,-0.11760000,0.00000000,0.09360000,-0.07520000,-0.16570000,0.09636000,-0.18460000,0.05070000,0.09300000,-0.28180000,0.22710750,0.20000000,0.10412333,-0.07760000,0.19630000,0.09348000,-0.05020000,-0.05680000,0.09986500,1.00758590,0
101104,0.07707500,0.02832500,0.09455000,0.27012667,0.05910000,0.03093200,0.00835000,0.09650000,0.15112000,0.25728833,0.06865000,0.11710000,0.98000000,0.10338750,0.02250000,-0.17140000,0.14196000,-0.05460000,-0.22950000,0.17099750,-0.22040000,0.42476333,0.20000000,0.20826833,-0.08000000,0.08420000,0.21411750,-0.02080000,0.18890000,0.21060800,0.07135714,0
101106,0.13087800,0.32957500,0.11862600,0.26733667,0.47100000,0.20757775,-0.25390000,0.15720000,0.01816000,0.19745667,0.05395000,0.11500000,0.93500000,0.09275750,-0.22760000,0.07690000,0.10006750,-0.12970000,-0.04600000,0.25530250,0.06230000,0.26973000,0.20000000,0.14786833,-0.30400000,-0.28260000,0.17774500,0.16710000,-0.24910000,0.15981800,0.00150270,1
101107,0.11072900,0.24391000,0.16880400,0.17085833,0.23460000,0.10269550,0.00680000,0.16590000,0.00311333,0.30272667,0.01990000,-0.01490000,0.28400000,0.21487250,0.08600000,0.20700000,0.08549000,0.00870000,-0.27460000,0.04965750,0.11160000,0.30336417,0.20000000,0.25791167,-0.00570000,-0.14750000,0.22095000,-0.24030000,0.09750000,0.24312600,0.30979516,0
101122,0.07541100,0.01549500,0.09067200,0.13983500,0.55840000,0.17085950,-0.37270000,0.16500000,0.00910667,0.12211417,0.07515000,0.10760000,0.59200000,0.06068750,0.20680000,0.20270000,0.09120250,0.14380000,-0.27300000,0.10448250,-0.28100000,0.14282000,0.20000000,0.08593667,0.22070000,-0.01100000,0.08554750,-0.33770000,0.04350000,0.08578000,0.07389913,0
101125,0.16393100,0.13550000,0.19275800,0.20422333,0.21590000,0.04035750,0.11295000,0.29070000,0.09268667,0.17860500,0.10385000,-0.11550000,0.12200000,0.08109750,0.08550000,0.21200000,0.16845750,0.02860000,-0.07300000,0.22444000,-0.10800000,0.26713333,0.20000000,0.11065500,0.07710000,0.16650000,0.12027500,0.29300000,0.27860000,0.11450400,2.22390797,0
101131,0.10127500,0.00515000,0.13092600,0.16380333,0.52140000,0.49352350,-0.30595000,0.17800000,0.08315000,0.34157083,0.03935000,0.12080000,0.70100000,0.09130500,0.06070000,-0.30010000,0.07183500,0.23780000,-0.28300000,0.08325500,-0.28630000,0.35285750,0.30000000,0.33639000,-0.17830000,-0.00830000,0.25992500,0.34310000,0.25660000,0.34462900,0.00150270,1
101133,0.12199700,0.02522500,0.10683200,0.46870167,0.48130000,0.32127575,-0.24045000,0.08910000,0.10372000,0.33769083,0.02990000,0.10780000,0.96500000,0.19811750,0.18200000,-0.23960000,0.11840000,0.14450000,0.30790000,0.42822500,0.31350000,0.34698000,0.20000000,0.35910667,-0.14150000,0.02050000,0.15789750,0.33980000,0.05740000,0.27862300,0.00150270,1
101140,0.11768900,0.01129000,0.10692400,0.29145833,0.41110000,0.21338275,-0.20890000,0.14480000,0.08514000,0.28653250,0.05260000,0.09520000,0.99600000,0.08697000,-0.08600000,0.18870000,0.09153250,0.03400000,0.26990000,0.28269250,0.27340000,0.39455833,0.20000000,0.36569167,-0.18390000,-0.05130000,0.13256000,0.22720000,-0.29520000,0.27243800,0.00150270,1
101145,0.13544500,0.04552500,0.21549800,0.59443000,0.10240000,0.06874500,-0.00885000,0.07940000,0.18309667,0.61336000,0.13065000,0.08920000,0.93800000,0.21382250,-0.07220000,-0.08470000,0.55872250,-0.04210000,-0.01120000,0.16508750,-0.00370000,0.62332750,0.30000000,0.50183667,-0.08040000,0.31030000,0.18281250,0.02200000,0.14260000,0.42701300,0.00150187,1
101146,0.12411300,0.12568500,0.14585000,0.29938333,0.11940000,0.02154125,0.04205000,0.13700000,0.21622000,0.22542083,0.05295000,0.13710000,0.55500000,0.13002750,0.02870000,0.07090000,0.13774250,-0.06360000,0.17200000,0.21565000,0.13530000,0.29446083,0.30000000,0.14172167,-0.16910000,-0.14640000,0.10385000,-0.04970000,-0.20450000,0.16339800,0.01863612,1
101147,0.12563600,0.46043500,0.16933600,0.15511167,0.31350000,0.07223525,-0.06025000,0.18770000,0.01731667,0.18909667,0.03850000,0.01480000,0.92500000,0.14771250,0.03220000,-0.30400000,0.11376000,0.06810000,0.14010000,0.13346750,-0.24700000,0.25637250,0.20000000,0.12172167,-0.04490000,0.04950000,0.12323500,0.26860000,-0.10590000,0.12232700,1.75621434,0
101148,0.10547400,0.21608500,0.15149800,0.03674333,0.51160000,0.22357200,-0.32335000,0.30080000,0.00068667,0.17470583,0.10390000,0.13070000,0.96900000,0.05698500,0.13150000,0.25490000,0.11842750,0.01780000,-0.02360000,0.02692000,0.23150000,0.13524833,0.20000000,0.13460500,0.22830000,-0.26840000,0.14679750,-0.28330000,0.04640000,0.13948200,0.00150270,1
101151,0.13090400,0.40935000,0.19376800,0.16894833,0.16420000,0.02257975,0.21435000,0.18670000,0.11226667,0.19035583,0.04015000,0.03760000,0.99900000,0.15644000,0.13700000,0.18090000,0.12565000,0.22570000,0.01660000,0.10825750,0.23070000,0.23435500,0.30000000,0.08110167,0.30480000,-0.11040000,0.08484500,0.14070000,-0.23430000,0.11559100,0.00150270,1
101153,0.11576600,0.32596000,0.18017400,0.14513000,0.40450000,0.09949700,-0.20350000,0.20490000,0.07123667,0.19195667,0.16145000,0.10490000,0.98200000,0.06976250,0.03060000,0.05010000,0.22523750,-0.04190000,-0.14150000,0.04562250,0.04530000,0.27892917,0.20000000,0.12409667,0.18780000,0.17620000,0.09472250,-0.21680000,0.27340000,0.11234800,0.00150270,1
101158,0.12911300,0.25240000,0.10086000,0.32959833,0.42820000,0.15024175,-0.22345000,0.14510000,0.10371333,0.21901583,0.02410000,0.13940000,0.99800000,0.13657500,0.01350000,-0.15870000,0.06589000,0.02420000,-0.01400000,0.33679000,-0.10150000,0.39190333,0.20000000,0.24572667,-0.18040000,0.20180000,0.08599250,0.24780000,0.28880000,0.18183300,0.00150270,1
101162,0.19729100,0.28067500,0.29346000,0.16470500,0.04680000,0.03462500,0.08350000,0.33850000,0.27976000,0.22798917,0.18315000,-0.09330000,0.55000000,0.05008750,0.11040000,0.08130000,0.18348250,-0.14940000,-0.13580000,0.13624750,-0.22770000,0.19519583,0.20000000,0.21412167,-0.10790000,0.18370000,0.12921250,-0.15470000,-0.25910000,0.18015800,3.28277672,0
101164,0.09130300,0.01124000,0.11857200,0.13930667,0.13360000,0.02048375,0.05765000,0.18230000,0.00601333,0.13938750,0.06835000,0.10550000,0.49000000,0.07610500,-0.00510000,-0.16230000,0.10405500,0.07010000,0.00370000,0.09547750,-0.00190000,0.14414917,0.20000000,0.08644167,0.19330000,0.23700000,0.10834000,0.05970000,-0.29760000,0.09520000,1.45484847,0
101168,0.09249500,0.11883500,0.10461800,0.09463500,0.09360000,0.03087575,-0.00535000,0.29310000,0.00408667,0.14800167,0.07080000,0.14050000,0.00000000,0.05514000,-0.20640000,-0.22160000,0.07806750,-0.21900000,0.11390000,0.11546750,0.17760000,0.13228000,0.20000000,0.15177167,0.08040000,-0.13800000,0.08314000,-0.01330000,0.18150000,0.12431900,0.30979516,0
101170,0.13291100,0.15577000,0.12373600,0.24843667,0.21440000,0.04636150,0.15435000,0.19410000,0.01464000,0.19238250,0.06575000,0.13400000,0.86300000,0.07614250,-0.07760000,-0.31110000,0.10009750,-0.16470000,-0.13760000,0.25912750,-0.18650000,0.24857917,0.20000000,0.21124667,-0.09860000,0.10080000,0.08403500,-0.31300000,0.21190000,0.16036300,0.00150270,1
101172,0.09964400,0.06369500,0.14575000,0.26746333,0.43300000,0.15199000,-0.17265000,0.10610000,0.24717333,0.28467250,0.03725000,0.06830000,0.43600000,0.20114750,0.02080000,-0.10460000,0.14981250,0.08610000,-0.18820000,0.10053250,-0.21430000,0.33144000,0.30000000,0.13368167,-0.32770000,0.25230000,0.15250750,0.10540000,0.13180000,0.20122300,0.06406078,0
101175,0.08574700,0.52930500,0.14537200,0.06405500,0.20060000,0.03856125,0.09035000,0.18820000,0.01656667,0.16770333,0.14965000,-0.10950000,0.00200000,0.06209500,0.15350000,-0.20740000,0.18582000,0.08340000,0.24630000,0.09447000,-0.05790000,0.13152583,0.20000000,0.09605500,-0.26800000,-0.09170000,0.11111500,-0.06740000,0.15900000,0.10207900,2.26988683,0
101182,0.08939300,0.08354000,0.06866800,0.33256667,0.02460000,0.01277025,0.00510000,0.12520000,0.08060333,0.20063000,0.08745000,0.12190000,0.00000000,0.05500750,-0.13790000,-0.01580000,0.09623000,-0.16410000,0.10660000,0.37475500,0.08460000,0.21713250,0.20000000,0.18206500,0.02190000,-0.21500000,0.17755750,0.04650000,-0.26260000,0.18026200,0.30979516,0
101189,0.12881100,0.05941000,0.19946200,0.15343333,0.27320000,0.04239775,-0.00240000,0.16980000,0.00570667,0.18704417,0.04330000,0.04410000,0.39900000,0.17691000,-0.03490000,0.02810000,0.15313750,-0.00390000,0.19500000,0.02935000,0.23970000,0.17353417,0.20000000,0.08343333,0.00180000,-0.21090000,0.10593500,-0.27140000,-0.18690000,0.09243400,0.00150270,1
101191,0.09909000,0.16823500,0.13995400,0.02565167,0.17810000,0.03650750,0.03200000,0.25650000,0.14755000,0.17172083,0.05695000,-0.14140000,0.96800000,0.07411000,0.22320000,-0.16300000,0.08437500,0.10370000,0.06400000,0.02962250,0.26390000,0.28595083,0.30000000,0.09371500,0.03070000,-0.09790000,0.12571500,0.20880000,0.30160000,0.14267100,0.06406078,0
101194,0.10826400,0.40477000,0.16865800,0.05411333,0.23790000,0.07126450,-0.01715000,0.31480000,0.00976333,0.21413833,0.16410000,0.14140000,0.75100000,0.05688750,-0.20970000,-0.04430000,0.18671250,-0.16720000,0.26770000,0.05727750,-0.00500000,0.24443250,0.20000000,0.14364333,0.01540000,0.02310000,0.18334750,-0.22250000,-0.24930000,0.15952500,0.01863612,1
101197,0.10455200,0.00315000,0.09780400,0.29243500,0.03240000,0.01077225,0.10675000,0.12330000,0.26990000,0.21791917,0.04490000,0.10120000,0.97800000,0.10522000,-0.06770000,0.11300000,0.09453000,-0.14940000,0.20530000,0.27204750,0.20430000,0.34850500,0.30000000,0.18442000,-0.16320000,-0.18710000,0.09306500,-0.13080000,-0.14330000,0.18160300,0.30716952,0
101198,0.13512300,0.14000500,0.20100200,0.07232667,0.12080000,0.03456175,0.32550000,0.27610000,0.05988000,0.17957583,0.10225000,-0.13750000,0.00000000,0.08065500,-0.13430000,-0.01300000,0.16494000,-0.03570000,0.24490000,0.02471250,-0.26730000,0.26310417,0.20000000,0.11640833,-0.32260000,-0.12600000,0.11852250,-0.20180000,0.16730000,0.11725400,0.01863612,1
101217,0.09059500,0.02931000,0.09824400,0.35848000,0.33040000,0.14034275,-0.13200000,0.08760000,0.05966333,0.30513833,0.05445000,0.13520000,0.19200000,0.13025000,0.09540000,0.14160000,0.14177750,0.18220000,0.15310000,0.26617250,0.14560000,0.28774667,0.30000000,0.20609667,0.13540000,-0.14190000,0.24985500,-0.19500000,-0.18140000,0.25735400,0.35853999,0
101221,0.27146000,0.55269500,0.40477000,0.13444667,0.27080000,0.06034825,-0.04170000,0.26980000,0.22969667,0.29519250,0.09865000,0.12340000,0.28900000,0.17217750,0.02990000,-0.24600000,0.33972750,-0.05100000,0.12480000,0.06526250,-0.26570000,0.27891750,0.30000000,0.10852833,-0.03540000,0.07280000,0.13144250,0.23540000,-0.19890000,0.14946900,0.74405625,0
101222,0.12423600,0.24723500,0.12893600,0.24415500,0.29860000,0.09339225,-0.07935000,0.16780000,0.00879000,0.23632917,0.02380000,0.13090000,0.58200000,0.14864000,0.04810000,0.13600000,0.07079500,-0.02970000,0.28470000,0.19641000,0.17440000,0.26047500,0.20000000,0.25100167,-0.06920000,-0.16980000,0.11305000,0.22940000,0.01430000,0.19582100,0.00150270,1
101228,0.34223700,0.16471500,0.57144800,0.55748167,0.25670000,0.15120825,-0.05280000,0.30620000,0.09499333,0.62288333,0.47045000,-0.00120000,0.99500000,0.08665000,-0.09990000,0.28510000,0.81529500,0.06810000,-0.08720000,0.09725000,-0.05790000,0.73257750,0.20000000,0.45968667,-0.05140000,0.19290000,0.27717500,0.20530000,0.28610000,0.38668200,1.37525940,0
101229,0.12535600,0.34680000,0.21492800,0.30730333,0.08200000,0.02099300,-0.00800000,0.12860000,0.00985333,0.36833083,0.00790000,-0.09260000,0.00000000,0.55294500,-0.20560000,-0.25610000,0.08758250,-0.16050000,0.25170000,0.13270500,0.06480000,0.37718667,0.20000000,0.22393333,-0.04980000,0.02600000,0.12856500,0.03220000,0.06510000,0.18578600,1.49316649,0
101230,0.11454100,0.37197000,0.12642400,0.36899333,0.41810000,0.21726525,-0.21225000,0.10110000,0.11849000,0.30763083,0.05210000,0.08160000,0.96800000,0.15413500,0.00760000,0.30020000,0.16060500,0.07320000,0.22330000,0.28164750,0.31380000,0.38148083,0.20000000,0.29259667,-0.17370000,-0.04480000,0.16925750,0.24440000,-0.02630000,0.24326100,0.00150270,1
101232,0.08053800,0.16649000,0.08955200,0.23191167,0.14600000,0.04577525,-0.00350000,0.13130000,0.02711333,0.22678083,0.10600000,0.14120000,0.07000000,0.05955250,0.10730000,-0.11740000,0.12627250,0.18710000,-0.22170000,0.18570500,-0.16670000,0.24571333,0.20000000,0.27767000,0.14100000,0.12080000,0.07801500,-0.00500000,-0.23910000,0.19780700,1.45484847,0
101235,0.09089900,0.09514000,0.09900800,0.44986833,0.04470000,0.08350825,0.05610000,0.09040000,0.00859333,0.45844667,0.15205000,0.12000000,0.00200000,0.08119000,0.15660000,-0.00900000,0.24688000,0.16430000,0.08100000,0.37098250,0.06530000,0.53573667,0.20000000,0.39513333,0.08590000,-0.18000000,0.45457000,0.13070000,0.27360000,0.41890800,0.30716952,0
101239,0.10963000,0.26690000,0.14703800,0.08708500,0.25060000,0.03811425,0.11035000,0.26950000,0.14381333,0.13889000,0.07405000,0.14110000,0.13400000,0.07332750,-0.05460000,-0.05280000,0.10858250,0.01660000,0.20720000,0.08381750,0.05220000,0.29497583,0.20000000,0.09914333,0.06910000,-0.16080000,0.08604750,0.31960000,-0.23970000,0.09390400,0.30716952,0
101243,0.14382300,0.10701000,0.20386600,0.16146000,0.29690000,0.05689500,-0.07620000,0.20130000,0.00881333,0.18328917,0.03270000,0.13870000,0.99400000,0.17135000,-0.02410000,-0.24760000,0.11207500,0.07110000,0.20330000,0.06292000,0.26810000,0.22786167,0.20000000,0.09491500,-0.06600000,-0.05260000,0.12407000,0.23090000,0.03500000,0.10657700,0.00150270,1
101245,0.12840900,0.21929000,0.20115800,0.12497667,0.29750000,0.04409475,-0.02430000,0.18260000,0.10092667,0.17286167,0.02135000,-0.10260000,1.00000000,0.22683000,-0.04640000,-0.02190000,0.09675750,-0.13410000,0.13820000,0.06237500,0.29480000,0.21696167,0.20000000,0.07380333,0.01730000,-0.20860000,0.08429500,-0.28020000,0.22510000,0.07800000,0.00150270,1
101250,0.24370000,0.17281500,0.32783400,0.14243667,0.23960000,0.03287750,-0.02365000,0.28310000,0.07315000,0.19920333,0.06455000,0.13780000,0.75900000,0.17074000,-0.08330000,0.03670000,0.22038000,-0.16110000,-0.23550000,0.12103750,-0.18200000,0.24550333,0.20000000,0.07738333,0.02170000,0.12460000,0.09041500,-0.21800000,0.22400000,0.08259500,0.99970130,0
101252,0.10290100,0.04163000,0.08881000,0.20790333,0.21350000,0.11020650,0.00645000,0.21170000,0.17249333,0.31913583,0.06905000,0.11470000,0.16400000,0.05401500,-0.01430000,-0.15230000,0.07459500,-0.03090000,0.26490000,0.25619250,0.28000000,0.35015583,0.30000000,0.26221500,0.00590000,0.02620000,0.31389000,0.21940000,-0.19450000,0.33151900,0.30716952,0
101255,0.13029400,0.09685000,0.18985800,0.24848667,0.05630000,0.02972575,0.00520000,0.14830000,0.38485000,0.25373667,0.06190000,0.06060000,0.00000000,0.14066750,0.00080000,-0.28480000,0.17414500,0.11700000,-0.19260000,0.11292000,-0.15790000,0.47483083,0.30000000,0.14872500,-0.07090000,-0.04220000,0.11967500,-0.01460000,0.16030000,0.17855900,0.74405625,0
101262,0.11970800,0.05378000,0.16477200,0.11692333,0.51550000,0.11701875,-0.33200000,0.22780000,0.02520667,0.11626917,0.04825000,0.13450000,0.97100000,0.08674250,0.21810000,-0.03390000,0.08370250,0.03880000,0.10660000,0.04667250,0.06330000,0.14669167,0.20000000,0.05973333,0.25260000,-0.23070000,0.08876250,-0.26280000,0.30360000,0.07134500,0.00150270,1
101264,0.09867500,0.02504500,0.14085200,0.26879833,0.05700000,0.01753200,0.05135000,0.13790000,0.16638333,0.31877083,0.17165000,0.09160000,0.00100000,0.06940750,0.06280000,-0.02290000,0.23827750,-0.02900000,0.08000000,0.12632250,0.08720000,0.40005583,0.30000000,0.23002167,-0.13380000,-0.25050000,0.16961500,-0.07680000,-0.28440000,0.25945100,0.01863612,1
101265,0.10548900,0.05054500,0.13795000,0.18165500,0.23870000,0.11473825,-0.04450000,0.15560000,0.15813667,0.35582917,0.01890000,0.12710000,0.00200000,0.19957250,-0.23590000,-0.14490000,0.07546250,-0.22530000,0.01040000,0.07871500,-0.02260000,0.39400000,0.30000000,0.23316833,0.19240000,0.30350000,0.32102000,-0.04630000,0.11010000,0.31698100,0.30716952,0
101268,0.09447800,0.01222000,0.07403800,0.39804833,0.04950000,0.01698075,0.09635000,0.08170000,0.13142667,0.28602250,0.02190000,0.10120000,0.00000000,0.16660000,-0.13970000,-0.28430000,0.07291250,-0.05810000,-0.28040000,0.35760500,-0.28420000,0.30804833,0.30000000,0.27873500,-0.16570000,0.02930000,0.11053000,-0.11630000,-0.01790000,0.24742200,0.07135714,0
101271,0.08400300,0.04311500,0.12142800,0.08495333,0.21410000,0.03305350,-0.05715000,0.18860000,0.00972000,0.13641000,0.06495000,0.04490000,0.83300000,0.08210500,-0.03850000,0.27530000,0.10662500,-0.05170000,-0.16480000,0.02898500,-0.12580000,0.26470333,0.20000000,0.08987167,-0.11300000,0.02380000,0.08569250,0.10110000,0.21710000,0.08820000,0.74405625,0
101281,0.09362100,0.16173500,0.11689600,0.23076667,0.61070000,0.33040900,-0.38870000,0.14310000,0.10234667,0.22066833,0.11465000,0.13750000,0.98900000,0.07345250,-0.14670000,0.18840000,0.16839500,-0.15710000,-0.29710000,0.15369000,0.28040000,0.20857917,0.30000000,0.12594167,0.18080000,0.02290000,0.12896000,-0.42990000,-0.05800000,0.16806300,0.00150270,1
101282,0.09612900,0.09815000,0.06575600,0.31523833,0.40110000,0.16116200,-0.09090000,0.10610000,0.01149667,0.22407750,0.03620000,0.13440000,0.70700000,0.09451500,-0.00180000,0.17840000,0.06847250,0.03050000,0.07730000,0.33326500,0.10990000,0.29019833,0.20000000,0.25641167,-0.05210000,-0.21850000,0.12462750,0.34910000,-0.13020000,0.20369800,0.07135714,0
101286,0.15057600,0.10575000,0.18939200,0.20739333,0.21370000,0.07615900,-0.00760000,0.31490000,0.28614667,0.27700333,0.18435000,0.13520000,0.68700000,0.05049250,0.16690000,0.30860000,0.18618250,0.03400000,-0.03420000,0.17402000,-0.06370000,0.37296667,0.30000000,0.18351167,-0.00740000,0.28720000,0.19922000,0.20630000,0.00430000,0.23773500,0.00150270,1
101288,0.18797100,0.03819500,0.24444000,0.07917000,0.37530000,0.08184325,-0.14730000,0.30140000,0.02170000,0.16193333,0.03490000,0.12370000,0.64000000,0.13447750,0.12400000,0.29380000,0.09383000,-0.04940000,-0.08800000,0.07520000,-0.11080000,0.20211000,0.20000000,0.11158667,-0.11180000,0.07870000,0.09011250,0.26350000,-0.29140000,0.10299700,0.30979516,0
101292,0.08603500,0.38016000,0.16642600,0.07564500,0.24940000,0.04247700,-0.01240000,0.19680000,0.10737333,0.19193583,0.01925000,-0.14060000,0.00300000,0.19007500,-0.10570000,-0.31160000,0.07324250,-0.18380000,-0.13090000,0.14329500,0.10670000,0.22501417,0.30000000,0.08654667,0.23900000,0.01380000,0.09594500,-0.01040000,-0.29050000,0.12499600,0.82991791,0
101293,0.09209000,0.23428500,0.13659200,0.12678333,0.23460000,0.03998700,-0.03915000,0.17870000,0.02589667,0.15351667,0.02350000,-0.01060000,0.24700000,0.14130250,-0.05650000,0.28100000,0.06635500,0.06160000,0.14690000,0.06109500,-0.24780000,0.24819500,0.20000000,0.09688333,-0.19430000,-0.10150000,0.10756750,0.04030000,0.02850000,0.10115700,1.82266305,0
101296,0.72022100,0.23813500,0.41815000,0.21720000,0.05840000,0.01056625,0.04225000,0.43960000,0.13108333,0.14348667,0.06640000,0.13990000,0.00200000,0.06701500,-0.20940000,-0.10260000,0.08897500,0.17040000,0.30420000,0.25339500,-0.24260000,0.23632167,0.20000000,0.09898500,0.12560000,0.08180000,0.12599500,0.06730000,0.12000000,0.10978900,2.84847498,0
101307,0.12725300,0.19600000,0.16521200,0.23531667,0.31480000,0.21846700,-0.09780000,0.15180000,0.00323333,0.39274667,0.03610000,0.14040000,0.47700000,0.17154750,-0.00640000,0.06980000,0.12386750,-0.06320000,0.21050000,0.12570750,0.12980000,0.46056000,0.20000000,0.32576167,0.22960000,-0.09480000,0.39418250,-0.08520000,0.29920000,0.35313100,0.00150270,1
101310,0.39445600,0.49676000,0.40811600,0.18767667,0.13040000,0.03436150,0.09315000,0.32110000,0.15062667,0.24964667,0.06285000,0.14080000,0.00000000,0.14817000,0.08450000,-0.25240000,0.18622500,-0.12000000,0.12830000,0.17820500,0.27830000,0.32600917,0.30000000,0.15190500,0.08610000,-0.14270000,0.10630000,0.21650000,0.05620000,0.16581700,0.00150270,1
101311,0.07880400,0.07930000,0.10256000,0.16280333,0.00680000,0.01010525,0.25285000,0.16060000,0.01322333,0.13781000,0.10485000,0.14120000,0.00000000,0.05235000,-0.10290000,0.19630000,0.10977250,-0.24020000,0.27960000,0.09462250,0.24040000,0.17124333,0.20000000,0.10027667,-0.22150000,-0.03500000,0.10089250,-0.22830000,-0.11010000,0.10052300,1.45484847,0
101312,0.14040400,0.01970000,0.18149200,0.16903333,0.00650000,0.03032575,0.00205000,0.21270000,0.01056667,0.19611583,0.04375000,0.08850000,0.00000000,0.10392250,0.18070000,0.14100000,0.09092500,-0.00190000,0.03180000,0.10176250,0.02150000,0.26391167,0.20000000,0.19017500,0.02370000,-0.29130000,0.10824000,0.01720000,-0.08770000,0.15740000,0.00150270,1
101325,0.13271600,0.16341000,0.19147200,0.22191000,0.07060000,0.04649650,0.02485000,0.16410000,0.01246667,0.29303667,0.08350000,0.13810000,0.18700000,0.12643000,0.11470000,-0.00810000,0.21117000,0.12450000,0.15570000,0.09420750,0.09700000,0.26659333,0.20000000,0.28841000,0.04350000,-0.21590000,0.10889750,0.11420000,0.09750000,0.21660500,0.00150187,1
101329,0.11264500,0.12110000,0.16735200,0.05642333,0.39220000,0.08231900,-0.04195000,0.27600000,0.00173667,0.12061500,0.05885000,-0.09940000,0.39100000,0.05927500,0.22170000,-0.01540000,0.06975250,-0.01670000,-0.15450000,0.02241250,0.29940000,0.12464250,0.20000000,0.09468333,-0.02270000,0.13920000,0.09079250,0.36950000,-0.23370000,0.09312700,0.01863612,1
101330,0.10501300,0.13046500,0.09573400,0.24184667,0.34110000,0.11986425,-0.14540000,0.16410000,0.00581333,0.20598167,0.08595000,0.13160000,0.89100000,0.06120750,0.01550000,-0.13620000,0.10519750,0.06110000,0.02140000,0.24190000,-0.01980000,0.25065750,0.20000000,0.18610833,0.17360000,-0.29000000,0.17237750,-0.16750000,0.20890000,0.18061600,0.00150270,1
101332,0.15954400,0.17210500,0.19197000,0.16899500,0.42580000,0.13182875,-0.05585000,0.29780000,0.10165000,0.18130583,0.06485000,0.09110000,1.00000000,0.05225750,0.09880000,0.01300000,0.06778500,-0.18780000,-0.06800000,0.15179750,0.01960000,0.22128667,0.30000000,0.15178333,0.02810000,0.23810000,0.10784000,-0.39770000,-0.23700000,0.16955000,0.00150270,1
101340,0.02395600,0.16539500,0.03354200,0.06715500,0.09570000,0.01838375,0.08440000,0.06460000,0.00816667,0.10363333,0.05405000,-0.09920000,0.00000000,0.06178500,-0.17620000,-0.00340000,0.06682000,-0.23010000,-0.03900000,0.02643000,0.31110000,0.12758333,0.20000000,0.06462333,0.09060000,0.20270000,0.08536250,0.18630000,-0.22500000,0.07291900,1.97934435,0
101341,0.10460800,0.13035000,0.09279400,0.43822333,0.19210000,0.07081975,-0.04095000,0.08120000,0.06584667,0.42309583,0.02795000,0.14030000,0.69200000,0.19484750,-0.05930000,-0.17420000,0.10885500,-0.09050000,-0.09920000,0.37505250,-0.13160000,0.49329667,0.30000000,0.35001167,0.06390000,0.15350000,0.17589000,-0.12830000,0.21560000,0.38623300,0.30097511,0
101342,0.12557300,0.46663000,0.16405600,0.16411500,0.08200000,0.02902975,0.14065000,0.26220000,0.15764667,0.15577250,0.03820000,0.04930000,0.00000000,0.09956500,-0.05830000,0.00690000,0.07603500,0.08340000,-0.21380000,0.19954500,0.03500000,0.25800833,0.20000000,0.12775500,-0.21370000,-0.27310000,0.10008500,-0.13160000,0.10980000,0.11668700,0.00150187,1
101346,0.07614800,0.08350500,0.10041200,0.06570000,0.18310000,0.02126025,-0.03015000,0.24140000,0.09218667,0.09482750,0.05525000,0.13890000,0.80200000,0.06156250,-0.05450000,-0.10740000,0.06804250,0.00550000,0.12640000,0.04869500,0.05220000,0.11960000,0.20000000,0.05278000,0.14000000,-0.10090000,0.07570500,-0.04310000,-0.30820000,0.06195100,0.00265331,1
101351,0.12762200,0.07393500,0.19084600,0.18645333,0.00520000,0.01874200,0.36555000,0.19900000,0.07683333,0.20193917,0.11765000,0.06440000,0.00000000,0.09217250,0.23830000,0.09990000,0.21690750,0.21440000,-0.09770000,0.09563750,-0.12340000,0.22221667,0.20000000,0.11289500,0.27300000,0.16880000,0.12739750,0.26780000,0.30500000,0.11869500,0.00150187,1
101355,0.12094600,0.42095000,0.15350000,0.27489833,0.02210000,0.00954150,0.02580000,0.13120000,0.11793000,0.22179750,0.04060000,0.08730000,0.00000000,0.17386500,0.05940000,-0.14650000,0.14111250,0.03880000,-0.27610000,0.18557500,-0.13450000,0.31658833,0.20000000,0.18217167,-0.08370000,0.16460000,0.07715750,-0.06160000,0.11960000,0.14016700,0.01863612,1
101357,0.09201300,0.10468500,0.12294400,0.15207833,0.25790000,0.13092825,-0.07930000,0.20750000,0.57180667,0.51239333,0.13735000,0.03850000,0.18400000,0.05078000,-0.11760000,0.17490000,0.13948500,-0.19570000,-0.01730000,0.11594250,-0.05880000,0.57754583,0.30000000,0.32418167,0.10120000,-0.21980000,0.23913000,-0.15680000,0.01710000,0.53876500,0.08341403,0
101363,0.22270800,0.22878000,0.31415600,0.06915167,0.18920000,0.03890175,-0.04330000,0.29350000,0.25811667,0.24442250,0.04115000,0.14130000,0.99000000,0.21569250,-0.05390000,0.31390000,0.17747500,-0.02640000,0.02160000,0.06176500,0.13720000,0.35667333,0.20000000,0.15381000,0.07760000,-0.11120000,0.10938500,-0.11160000,-0.22380000,0.13604000,0.74405625,0
101364,0.11117800,0.23386500,0.14110400,0.54553500,0.24140000,0.14286250,-0.03375000,0.06700000,0.01069667,0.49532917,0.05745000,0.13000000,0.67200000,0.24705500,0.12650000,-0.02480000,0.28384500,0.16440000,0.03050000,0.30934250,-0.00920000,0.47866167,0.20000000,0.44477667,-0.03230000,0.28130000,0.28792250,0.20910000,-0.22730000,0.38203500,0.00150270,1
101367,0.12828600,0.00959000,0.12447600,0.17290667,0.77100000,0.77267550,-0.74265000,0.24260000,0.08006000,0.16087750,0.06535000,0.10420000,0.98000000,0.06479250,0.06110000,-0.01660000,0.08467500,-0.04650000,0.20080000,0.20438500,0.19720000,0.16467917,0.20000000,0.13201833,-0.37670000,-0.07480000,0.13513750,0.39430000,-0.26400000,0.13326500,0.00150270,1
101368,0.25930400,0.25426500,0.33790800,0.30962167,0.04680000,0.02801925,0.17760000,0.27360000,0.01459333,0.33366583,0.14785000,0.13550000,0.00000000,0.11706500,-0.14260000,-0.22190000,0.34620000,-0.06280000,0.03980000,0.21582250,-0.00720000,0.24959667,0.20000000,0.29570667,-0.21330000,-0.28990000,0.09417250,-0.16650000,0.20560000,0.21509300,0.74405625,0
101371,0.15630400,0.18860000,0.22875200,0.15638667,0.04740000,0.00582250,0.21845000,0.25920000,0.24330333,0.19731333,0.11230000,-0.10570000,0.82400000,0.09831500,0.22710000,-0.15610000,0.22083750,0.19990000,0.21450000,0.11663000,0.15480000,0.18734750,0.30000000,0.06903667,0.23400000,-0.03000000,0.08653750,0.18670000,-0.00500000,0.10911600,0.74405625,0
101378,0.25301900,0.36646000,0.37936600,0.12302333,0.32960000,0.08927450,-0.12290000,0.35510000,0.02037000,0.23504333,0.02440000,-0.14140000,0.90800000,0.24604000,-0.06740000,0.07320000,0.11998750,0.10180000,-0.24300000,0.12576500,-0.07460000,0.29658833,0.20000000,0.12382333,-0.11410000,0.22090000,0.15336750,0.21550000,-0.20730000,0.13564100,0.74405625,0
101380,0.09071700,0.00592000,0.10531600,0.44794000,0.20390000,0.07223750,-0.04810000,0.06840000,0.04420667,0.40142583,0.02195000,0.09220000,0.00100000,0.28578750,-0.17180000,-0.29240000,0.12538500,-0.23720000,-0.27250000,0.26440750,-0.27080000,0.56607667,0.20000000,0.47297167,-0.07400000,0.04990000,0.08365000,0.12990000,-0.15120000,0.31724300,0.30979516,0
101384,0.12518300,0.02870500,0.15289600,0.21136833,0.02770000,0.01596800,0.35745000,0.17750000,0.08841333,0.18281583,0.02760000,0.14040000,0.00000000,0.12877500,-0.07770000,-0.03290000,0.07102500,0.09630000,0.00250000,0.12031500,-0.01300000,0.26791667,0.20000000,0.15032167,-0.28160000,0.24530000,0.12316750,-0.25390000,-0.29470000,0.13946000,0.00150270,1
101385,0.16326800,0.18916500,0.20752800,0.24832333,0.67930000,0.42872475,-0.57590000,0.17360000,0.12069667,0.21964250,0.02930000,0.14020000,1.00000000,0.22161250,-0.00720000,-0.12230000,0.12985250,0.00740000,0.05070000,0.14318000,-0.02010000,0.27883000,0.20000000,0.13893167,-0.32640000,0.29360000,0.09906500,0.35290000,0.20540000,0.12298500,0.00150270,1
101390,0.13943100,0.43142000,0.15486400,0.20465833,0.35930000,0.15501475,-0.03760000,0.21800000,0.00273333,0.24657417,0.02635000,0.10590000,0.79300000,0.15011000,-0.23010000,-0.01050000,0.07906500,-0.24380000,0.20710000,0.19283750,-0.00540000,0.28234167,0.20000000,0.18258833,0.02230000,0.24450000,0.23666500,-0.33690000,-0.19820000,0.20421900,0.00150270,1
101392,0.06323600,0.00368500,0.07440800,0.12319833,0.12420000,0.06588600,0.16605000,0.15890000,0.09978000,0.22891833,0.06185000,0.10220000,0.33100000,0.05671750,0.18710000,0.02920000,0.07015000,0.12720000,0.17640000,0.09952250,0.17420000,0.29763583,0.20000000,0.20846000,0.25460000,-0.03850000,0.24719750,0.13040000,-0.29850000,0.22395500,0.06406078,0
101393,0.11694500,0.17827000,0.16352800,0.00552667,0.18130000,0.03708325,0.06385000,0.27110000,0.18763333,0.23995917,0.03755000,-0.14070000,0.00000000,0.12006500,0.15860000,0.20900000,0.09019250,0.13680000,-0.14910000,0.05462750,-0.01150000,0.30522500,0.30000000,0.09827667,-0.23550000,0.19080000,0.12509750,-0.05420000,-0.22980000,0.20384800,0.07389913,0
101394,0.19529500,0.03777500,0.23426000,0.09810500,0.40910000,0.09546600,-0.19795000,0.27930000,0.00606000,0.16723000,0.02560000,0.12170000,0.22800000,0.16511750,0.05080000,-0.06670000,0.08455250,0.20140000,-0.30190000,0.08877750,-0.28000000,0.18232750,0.20000000,0.10364833,0.15710000,0.19800000,0.09654750,-0.25190000,0.00290000,0.10080800,0.30979516,0
101395,0.10662200,0.21144000,0.15933600,0.05220667,0.09240000,0.01901600,-0.00955000,0.26890000,0.08979333,0.12695250,0.11105000,-0.07030000,0.00000000,0.06310750,-0.09230000,0.18670000,0.14019000,-0.18070000,-0.18770000,0.02001000,0.13900000,0.21888583,0.20000000,0.05989333,-0.03140000,-0.14590000,0.08772000,0.06100000,0.10400000,0.07102400,1.08406242,0
101397,0.13229200,0.22351500,0.15658200,0.13815333,0.06170000,0.01701850,0.13370000,0.28100000,0.05755000,0.15012250,0.08180000,0.14100000,0.35000000,0.06130000,-0.01760000,-0.15430000,0.10028000,0.13480000,0.23790000,0.13863000,-0.29170000,0.23280417,0.20000000,0.14242833,0.13560000,-0.01530000,0.07514500,0.19730000,0.10590000,0.11551500,0.00265331,1
101402,0.07819000,0.00187500,0.10995800,0.13715833,0.00550000,0.01007650,0.20985000,0.16180000,0.05615000,0.14455167,0.08950000,0.09880000,0.00000000,0.06417750,0.02520000,0.21410000,0.11490000,-0.08200000,0.09290000,0.05950000,0.09180000,0.23400667,0.20000000,0.09315167,-0.20210000,-0.23860000,0.11485000,-0.20770000,-0.16320000,0.10183000,1.37339095,0
101405,0.06293400,0.34741500,0.10244600,0.11411333,0.06880000,0.02498350,0.46085000,0.13060000,0.11676000,0.20406250,0.16160000,-0.10030000,0.00000000,0.05383500,0.10830000,0.18220000,0.17398500,0.00860000,0.09780000,0.04335750,-0.21620000,0.16858333,0.30000000,0.11167667,0.34000000,-0.07370000,0.12593250,0.27110000,-0.24980000,0.15374700,0.74405625,0
101407,0.13005600,0.18608500,0.17099600,0.60162333,0.53190000,0.52522950,-0.34875000,0.07210000,0.00508667,0.50795417,0.03100000,0.14090000,0.94800000,0.38092000,-0.00520000,0.28080000,0.23623250,0.03000000,-0.28460000,0.31404000,0.30940000,0.51888833,0.20000000,0.47762000,0.23450000,-0.00530000,0.19028000,-0.29750000,-0.01660000,0.36268400,0.00150270,1
101413,0.09262000,0.05562500,0.09279800,0.29392500,0.05540000,0.06559200,0.12240000,0.10560000,0.12128667,0.34764083,0.03805000,0.06890000,0.00400000,0.12281750,-0.18520000,0.23630000,0.09349000,-0.09300000,0.18470000,0.24446250,0.16630000,0.40556750,0.30000000,0.29059333,-0.13120000,-0.03110000,0.31094500,-0.18660000,-0.22930000,0.33064600,0.78946139,0
101415,0.11618900,0.09616000,0.15893800,0.13427833,0.20910000,0.03134850,0.03400000,0.20920000,0.00469000,0.16616333,0.01825000,0.14070000,0.63600000,0.18947500,-0.18570000,0.06540000,0.06909750,-0.20350000,-0.14300000,0.04765000,-0.05660000,0.18806000,0.20000000,0.10661833,-0.23770000,0.28430000,0.07999000,-0.02860000,-0.21950000,0.09596700,0.00150270,1
101417,0.12733800,0.01745500,0.13814000,0.09368167,0.41010000,0.11718125,-0.00050000,0.32760000,0.09372000,0.15015917,0.06110000,0.13920000,0.86300000,0.06851750,-0.02160000,0.04330000,0.08369500,-0.12620000,-0.26710000,0.12512750,-0.25850000,0.21513750,0.20000000,0.11421667,-0.40990000,0.16910000,0.12694250,0.00020000,-0.09890000,0.11930700,0.00150270,1
101421,0.11660600,0.12831000,0.15791200,0.02596500,0.53400000,0.21483125,-0.34830000,0.32150000,0.10198000,0.18258917,0.04170000,0.14010000,0.61000000,0.08803500,-0.09440000,0.03010000,0.07344000,-0.22810000,-0.26220000,0.01637500,-0.02600000,0.21040417,0.30000000,0.12753500,-0.30750000,-0.20630000,0.11452250,0.22660000,0.12830000,0.15451700,0.06406078,0
101422,0.11213800,0.13129500,0.14045000,0.27471333,0.07240000,0.02293025,0.15085000,0.13550000,0.01703000,0.23426083,0.01990000,0.10500000,0.00000000,0.19706500,-0.15150000,-0.30860000,0.07833750,-0.03240000,-0.24390000,0.14929750,-0.30560000,0.35252500,0.20000000,0.14972333,-0.21360000,0.05180000,0.20279750,-0.14120000,-0.01400000,0.17095300,0.00265331,1
101424,0.05224800,0.27500500,0.08825600,0.12801500,0.50600000,0.31836225,-0.27135000,0.09310000,0.44991333,0.26282083,0.02540000,-0.03510000,0.91900000,0.17094500,0.05680000,0.09810000,0.08681250,0.02530000,0.18570000,0.10244750,-0.27920000,0.13646333,0.20000000,0.22608667,-0.15430000,-0.20320000,0.19157750,0.35170000,-0.14240000,0.21228300,0.00150270,1
101425,0.12742700,0.22410000,0.18513000,0.03370333,0.40690000,0.10355725,-0.17745000,0.30840000,0.00314667,0.16701500,0.04195000,0.04890000,0.74700000,0.12612750,0.04560000,0.18200000,0.10578250,0.03290000,-0.12610000,0.02968500,0.18390000,0.20251250,0.20000000,0.10376500,0.12660000,-0.10270000,0.11349000,-0.28040000,0.22960000,0.10765400,0.00150270,1
101426,0.15822700,0.43388000,0.15294800,0.10342833,0.23390000,0.10431100,0.00720000,0.32150000,0.06336000,0.24641750,0.05545000,0.06450000,0.00100000,0.06838250,0.02960000,0.20830000,0.07584750,0.18980000,-0.07040000,0.15795250,0.21690000,0.28390833,0.20000000,0.22167333,-0.23990000,-0.23220000,0.26251000,-0.00600000,0.03000000,0.23800900,1.11489308,0
101429,0.09925300,0.05846500,0.12432600,0.14985167,0.23830000,0.02976700,0.13255000,0.21200000,0.05842000,0.15330750,0.10370000,0.12120000,0.99200000,0.06179500,-0.22070000,-0.05130000,0.12815250,-0.21240000,-0.26320000,0.11721500,-0.23930000,0.20211083,0.30000000,0.06387500,-0.32090000,0.11290000,0.09386250,-0.08260000,0.05430000,0.10798900,0.74405625,0
101435,0.13393100,0.07843500,0.18782400,0.29022500,0.32550000,0.09868250,0.08185000,0.15120000,0.07063333,0.28290333,0.10370000,0.11850000,0.75100000,0.11680500,-0.07640000,0.23020000,0.24222000,-0.12000000,-0.25340000,0.15627000,-0.27360000,0.35637167,0.20000000,0.25768667,-0.04430000,0.04140000,0.10315500,-0.36980000,-0.00390000,0.19587500,0.00150270,1
101443,0.10036800,0.11498500,0.15475600,0.10329333,0.11770000,0.03361750,-0.01330000,0.19460000,0.01460667,0.17940417,0.09775000,-0.13110000,0.38800000,0.07625000,0.07190000,0.15060000,0.14907000,-0.02880000,-0.31120000,0.00843250,-0.12210000,0.19623083,0.20000000,0.13398333,-0.03040000,0.02120000,0.11191750,0.08730000,-0.21190000,0.12515700,2.23756772,0
101453,0.10092100,0.30650500,0.11794000,0.17470500,0.09150000,0.04153125,0.20090000,0.17360000,0.19707333,0.19584333,0.09035000,0.13220000,0.00000000,0.07020500,0.00290000,0.16720000,0.12688500,0.05280000,0.00090000,0.13974000,0.12350000,0.33131667,0.20000000,0.15176167,0.15990000,-0.18260000,0.16279500,0.25130000,0.18980000,0.15617500,0.01863612,1
101454,0.13187600,0.07443000,0.20841600,0.13477667,0.11270000,0.01621000,0.15400000,0.22580000,0.08930000,0.15320167,0.11100000,-0.00210000,0.00400000,0.06401500,-0.17050000,0.18950000,0.14209000,0.05100000,0.23290000,0.00573500,-0.25340000,0.22094250,0.20000000,0.11469667,0.24070000,-0.08590000,0.08145750,0.12800000,-0.03200000,0.10140000,1.38968494,0
101456,0.11599600,0.28924000,0.17023400,0.12255000,0.04440000,0.01811075,0.02185000,0.22300000,0.07113333,0.16541000,0.01990000,-0.09390000,0.00000000,0.18035500,-0.05240000,-0.31160000,0.07182000,0.01160000,-0.09800000,0.07284500,0.22100000,0.22225417,0.20000000,0.08907500,-0.04760000,0.04120000,0.11044250,-0.09190000,-0.11190000,0.09762200,0.00265331,1
101458,0.05379600,0.48183000,0.09491400,0.02068500,0.37750000,0.06241350,0.14105000,0.13520000,0.16212667,0.11787083,0.08160000,-0.05140000,0.53500000,0.06372750,-0.23840000,-0.28690000,0.10402500,-0.10340000,-0.27940000,0.13960500,0.04060000,0.38419333,0.20000000,0.07150000,-0.06390000,0.19840000,0.07861000,-0.44140000,-0.21430000,0.07434400,2.30262632,0
101459,0.14004400,0.15652500,0.19136600,0.22883000,0.16680000,0.03924300,-0.00100000,0.17280000,0.18999000,0.30475667,0.01810000,0.14130000,0.91500000,0.26040250,-0.03750000,-0.30130000,0.09432750,-0.05730000,0.15540000,0.08614500,0.24520000,0.35593500,0.30000000,0.21418667,0.00120000,-0.05470000,0.13508750,-0.16560000,-0.06040000,0.22381600,0.00265331,1
101464,0.08387500,0.23838000,0.06309800,0.24769833,0.40610000,0.11506125,-0.12490000,0.11520000,0.11939000,0.18535083,0.08595000,0.13010000,0.93400000,0.05454750,0.21730000,0.21730000,0.09379500,0.18040000,0.10820000,0.25030500,0.18810000,0.21294000,0.30000000,0.14027833,0.33060000,-0.10540000,0.10953500,-0.07560000,-0.20950000,0.16308400,0.07389913,0
101466,0.08893400,0.32575500,0.13800200,0.09763167,0.13380000,0.04387825,0.09280000,0.17320000,0.02966667,0.18555250,0.07785000,-0.00260000,0.01600000,0.07063000,-0.18870000,0.28460000,0.11000250,-0.01560000,0.28000000,0.07362750,-0.12210000,0.31566833,0.20000000,0.13839167,-0.21870000,0.10650000,0.16843750,-0.08480000,-0.11880000,0.15041000,2.44143287,0
101470,0.07991900,0.07006000,0.11164000,0.13161333,0.06610000,0.01587925,-0.00510000,0.16650000,0.09076667,0.12568833,0.08275000,0.13340000,0.23900000,0.06982000,-0.10450000,-0.20880000,0.11554000,-0.03080000,0.27030000,0.05801000,0.31340000,0.14048917,0.20000000,0.07524167,0.04190000,-0.06710000,0.07884250,-0.02430000,0.10050000,0.07668300,0.78946139,0
101473,0.11618700,0.32651000,0.13283800,0.09313667,0.08560000,0.02230625,0.41015000,0.23460000,0.00297667,0.13476833,0.07350000,0.10810000,0.07200000,0.06757750,-0.12200000,-0.28610000,0.09933750,-0.22010000,0.12910000,0.09147750,-0.29360000,0.13355250,0.20000000,0.08066667,-0.33240000,0.05060000,0.11639000,-0.24680000,-0.13930000,0.09495600,0.00150187,1
101478,0.08086900,0.13013500,0.09769000,0.13493333,0.05430000,0.02528950,0.37125000,0.18050000,0.06712333,0.14967583,0.07205000,0.13920000,0.07600000,0.06472750,-0.23980000,0.04430000,0.09325750,-0.23020000,-0.13590000,0.10184000,-0.06790000,0.26912667,0.20000000,0.13782167,-0.24670000,0.30490000,0.08431000,-0.30100000,0.07790000,0.11641700,0.07389913,0
101485,0.09831600,0.26647500,0.15461400,0.02719000,0.63900000,0.20039100,-0.50690000,0.22120000,0.05634333,0.12654167,0.05225000,-0.14140000,0.78600000,0.10517250,-0.10790000,0.19640000,0.10993750,-0.13050000,-0.02360000,0.05752750,-0.22230000,0.11857583,0.20000000,0.05896167,-0.29320000,-0.19220000,0.07607500,0.34580000,0.21740000,0.06580700,0.00150270,1
101486,0.13236200,0.04504500,0.15788200,0.10139167,0.08520000,0.01279225,-0.00595000,0.28690000,0.00428667,0.11669333,0.06585000,0.12520000,0.23700000,0.07323250,-0.15270000,0.23250000,0.09642000,-0.02610000,-0.13840000,0.10645250,-0.16070000,0.10847500,0.20000000,0.06242000,-0.01760000,0.18880000,0.08679750,0.06760000,0.07670000,0.07217100,1.37339095,0
101487,0.06975400,0.04556000,0.07996600,0.43660500,0.19370000,0.09290650,-0.04090000,0.06520000,0.17041333,0.40889750,0.10375000,0.11590000,0.96500000,0.10735250,0.01520000,-0.18200000,0.22274000,-0.01630000,-0.23900000,0.33731250,-0.23070000,0.51876000,0.30000000,0.27457833,-0.13150000,0.01590000,0.32065500,0.06220000,0.14340000,0.35864000,0.08341403,0
101489,0.07295600,0.40667500,0.12076600,0.08672667,0.46390000,0.13346525,-0.24315000,0.15330000,0.02785667,0.18718000,0.05660000,-0.06520000,0.78400000,0.09580000,0.04340000,-0.27810000,0.10846250,-0.04250000,-0.15110000,0.09780750,0.19520000,0.20489250,0.30000000,0.11137667,0.30380000,-0.02810000,0.10213000,-0.16010000,0.17700000,0.14291100,1.98967552,0
101493,0.08175000,0.05100000,0.09135600,0.22108333,0.50980000,0.51280800,-0.30220000,0.12410000,0.20550667,0.42070000,0.03235000,0.14130000,0.27500000,0.10913250,-0.10720000,0.30040000,0.07056000,-0.22230000,0.25400000,0.15657250,0.27840000,0.42759667,0.30000000,0.46803500,-0.18750000,-0.04290000,0.22606750,0.32230000,0.24710000,0.43296300,0.07135714,0
101494,0.10927300,0.06363500,0.16284400,0.25340833,0.26790000,0.10002125,-0.08210000,0.12260000,0.18097333,0.33165917,0.02640000,0.14110000,0.92300000,0.22408000,0.17580000,-0.17790000,0.11834750,0.07690000,-0.25030000,0.05787250,-0.21160000,0.32039250,0.30000000,0.22596667,0.17300000,0.05980000,0.18262000,-0.09490000,0.29610000,0.26102000,0.00150187,1
101496,0.13248700,0.14866500,0.13992800,0.12799833,0.10570000,0.01462175,0.01625000,0.25400000,0.00532667,0.12130500,0.04040000,0.13990000,0.01100000,0.08709750,0.16000000,-0.28510000,0.07039000,0.03430000,-0.06440000,0.12506500,-0.14590000,0.12842167,0.20000000,0.08029833,-0.13060000,0.11410000,0.08598000,-0.02490000,0.19940000,0.08257100,1.45484847,0
101505,0.08130300,0.25044500,0.11873400,0.13433333,0.21300000,0.02517150,-0.05490000,0.17890000,0.02133333,0.13066167,0.08835000,-0.04020000,0.91800000,0.06949000,0.06870000,0.03340000,0.12278500,0.01220000,-0.13640000,0.14476250,-0.23420000,0.20161667,0.20000000,0.08243500,-0.12550000,0.13330000,0.07606000,0.08750000,0.16240000,0.07988400,0.30979516,0
101509,0.08163300,0.21120500,0.11296600,0.16851667,0.14780000,0.03817725,0.14080000,0.14520000,0.04225667,0.19433583,0.08865000,0.13160000,0.07700000,0.07810000,0.01530000,0.13430000,0.13847000,0.06490000,-0.00220000,0.08873250,0.09710000,0.16569500,0.20000000,0.19426833,0.10940000,-0.26200000,0.07503500,0.25730000,0.02110000,0.14657500,0.30979516,0
101515,0.11031100,0.04451500,0.08015400,0.77938167,0.08180000,0.06609450,0.00120000,0.05140000,0.22480333,0.55811417,0.01800000,0.01310000,0.00700000,0.32128750,0.00450000,-0.14570000,0.11579250,-0.04690000,-0.14730000,0.73306000,-0.15500000,0.71320583,0.30000000,0.53652167,0.00280000,0.19650000,0.32375250,0.08460000,0.09850000,0.49490500,0.06406078,0
101518,0.09217900,0.04645000,0.11340400,0.09703167,0.11940000,0.04785325,0.04325000,0.20540000,0.22046000,0.26493667,0.04365000,0.06200000,0.00200000,0.08600250,0.09330000,-0.25610000,0.07504500,0.03690000,0.17480000,0.09798000,0.14760000,0.32509083,0.30000000,0.20572167,-0.17020000,-0.04190000,0.17570750,-0.05080000,-0.22650000,0.25350500,0.30716952,0
101521,0.09715200,0.18152000,0.14384600,0.07500333,0.20460000,0.04693300,0.25260000,0.24940000,0.00503000,0.16561917,0.11505000,0.13200000,0.63300000,0.05502500,0.06460000,-0.08070000,0.12658750,0.17780000,0.14150000,0.02712000,-0.03570000,0.15237917,0.20000000,0.13977333,0.14460000,-0.20870000,0.10558250,0.34930000,0.14050000,0.12609800,0.01863612,1
101522,0.08268600,0.28348000,0.12320800,0.06597667,0.55640000,0.18690875,-0.36415000,0.24340000,0.04074667,0.13363833,0.10010000,-0.13550000,0.51400000,0.05186750,-0.05340000,0.28790000,0.10385250,-0.15960000,0.06880000,0.10198750,-0.08310000,0.24754667,0.20000000,0.10939000,-0.21070000,0.29810000,0.08111250,0.34570000,-0.08290000,0.09807800,0.07135714,0
101528,0.09424600,0.01577500,0.13652800,0.06336333,0.34250000,0.10541550,0.01475000,0.25670000,0.01362000,0.21084500,0.09575000,0.06230000,0.99300000,0.06132750,-0.09890000,-0.31030000,0.11746750,-0.16580000,-0.06250000,0.01969750,-0.04600000,0.27661833,0.30000000,0.13614833,-0.00840000,0.12980000,0.16609500,-0.35090000,-0.22700000,0.18149600,0.00150270,1
101529,0.12290200,0.01464000,0.12319000,0.19850667,0.53800000,0.21701700,-0.35260000,0.21610000,0.05387667,0.15236667,0.07420000,0.10520000,0.97900000,0.06356750,-0.10940000,-0.30320000,0.09434500,0.00340000,-0.11890000,0.21189500,-0.12410000,0.22539000,0.20000000,0.11605000,0.31210000,0.21610000,0.12511250,-0.22600000,0.10760000,0.11967500,0.00150270,1
101530,0.12424600,0.16962500,0.17757600,0.29133333,0.47950000,0.19918975,-0.20615000,0.12810000,0.10357667,0.28854750,0.03335000,0.14010000,0.99000000,0.21946500,0.21550000,-0.01090000,0.14637750,0.15160000,0.10010000,0.12380000,0.03600000,0.24942917,0.30000000,0.20919500,-0.11230000,-0.25920000,0.10615000,0.36730000,-0.27490000,0.19991900,0.00150270,1
101535,0.07964700,0.02142500,0.10882200,0.17071333,0.46190000,0.09605700,-0.25695000,0.15020000,0.15351667,0.16101833,0.11445000,0.09070000,0.56500000,0.06566750,0.20150000,-0.10870000,0.15032750,0.21860000,-0.25790000,0.09456500,-0.26690000,0.21896500,0.30000000,0.06787667,0.27500000,0.12120000,0.08967500,-0.18690000,-0.01600000,0.10682400,0.35853999,0
101536,0.09749900,0.08060500,0.09535800,0.18259000,0.11800000,0.04864500,0.03755000,0.19110000,0.07039333,0.33491250,0.06930000,0.12940000,0.00000000,0.05386000,-0.07640000,-0.19540000,0.07463000,-0.20150000,0.28850000,0.17815250,-0.30470000,0.39093250,0.30000000,0.19284333,0.04580000,0.06470000,0.17371000,0.16380000,-0.14900000,0.35050000,0.08341403,0
101537,0.12659400,0.13305500,0.13673800,0.27167167,0.20440000,0.15063300,-0.04365000,0.15650000,0.00393000,0.41338667,0.05405000,0.05260000,0.37600000,0.09974250,0.19510000,0.26870000,0.10785000,0.05970000,-0.28130000,0.24851750,-0.24040000,0.45758417,0.20000000,0.46921500,0.06080000,0.06610000,0.32874500,-0.14360000,-0.21600000,0.41302700,0.00150270,1
101545,0.13344000,0.40333500,0.20836600,0.05858333,0.17160000,0.09451750,-0.01020000,0.27820000,0.01489333,0.29473083,0.09645000,-0.13990000,0.34200000,0.06909500,-0.16650000,-0.00700000,0.13327750,0.01580000,-0.21710000,0.12098250,0.22770000,0.31222417,0.20000000,0.25454000,0.01280000,0.07590000,0.30001000,-0.15880000,-0.22190000,0.27272800,2.56852838,0
101548,0.08914500,0.08298500,0.13198800,0.08790833,0.07760000,0.00983425,0.13650000,0.20330000,0.07969667,0.12525583,0.08645000,0.13870000,0.00000000,0.06800500,-0.10980000,-0.17040000,0.11757000,-0.01650000,0.27730000,0.01237500,-0.23600000,0.14224000,0.20000000,0.07193333,0.20850000,0.02190000,0.08229250,0.13090000,0.07670000,0.07607600,1.45484847,0
101551,0.08213000,0.03364000,0.12683400,0.30355333,0.08760000,0.10476800,-0.00760000,0.10700000,0.01146333,0.47662000,0.23465000,0.08610000,0.93500000,0.06862250,-0.06360000,0.23470000,0.32201250,0.00860000,0.15580000,0.08367000,0.14550000,0.51085417,0.20000000,0.42360000,0.06380000,-0.08260000,0.40382250,-0.02380000,0.30960000,0.41569000,0.30716952,0
101552,0.11453200,0.08235500,0.12634600,0.16478833,0.39290000,0.10930325,-0.02920000,0.24000000,0.12024000,0.19324500,0.09695000,0.04970000,0.77400000,0.05387250,-0.19310000,-0.12510000,0.10447500,-0.08160000,0.29070000,0.17908000,0.26050000,0.23473083,0.30000000,0.16961333,0.01550000,-0.03500000,0.08862500,-0.37740000,0.31070000,0.16855600,0.00150270,1
101553,0.10753900,0.01961500,0.11271600,0.14634667,0.56320000,0.15197600,-0.39230000,0.23260000,0.08288000,0.11005917,0.06795000,0.08880000,0.88700000,0.06152000,0.04420000,0.17840000,0.08362500,0.12670000,-0.03910000,0.16829750,-0.04730000,0.17319667,0.20000000,0.07215667,-0.25250000,0.28300000,0.07679500,0.31080000,-0.27200000,0.07401200,0.00150270,1
101555,0.16135500,0.19188500,0.25445000,0.13184833,0.06530000,0.01944150,0.02375000,0.21410000,0.08655667,0.20072000,0.02620000,-0.09160000,0.89900000,0.20474750,0.08360000,0.10320000,0.10735500,-0.06560000,-0.05030000,0.04493250,-0.20280000,0.19230333,0.20000000,0.10100000,-0.04360000,-0.18930000,0.13855750,-0.10890000,-0.31090000,0.11602400,0.00265331,1
101556,0.10443100,0.25889500,0.14832200,0.07624167,0.52720000,0.14976475,-0.31155000,0.25660000,0.04974667,0.12341167,0.06110000,0.04660000,0.85000000,0.06542500,-0.15450000,-0.21840000,0.07995750,0.02150000,-0.03170000,0.06430500,-0.25680000,0.20991917,0.20000000,0.09850667,-0.34830000,0.06980000,0.07709250,0.17890000,-0.29820000,0.08994100,0.01863612,1
101559,0.09666400,0.05182500,0.13243000,0.10453167,0.05480000,0.04035425,-0.00285000,0.19350000,0.00227000,0.20534667,0.04305000,0.12880000,0.00000000,0.10782750,-0.23050000,0.21720000,0.09284750,-0.20920000,-0.21880000,0.04926750,-0.25730000,0.18613417,0.20000000,0.17091167,-0.04090000,0.07110000,0.15899750,0.01390000,-0.18230000,0.16614600,1.45484847,0
101562,0.11311600,0.11130000,0.12830200,0.18112667,0.10000000,0.01617650,-0.01090000,0.17020000,0.00960000,0.16389083,0.02920000,0.13700000,0.97100000,0.13739250,-0.01500000,-0.00270000,0.08018750,0.02650000,0.16230000,0.12862500,0.10680000,0.18401000,0.20000000,0.10224333,0.06780000,-0.21730000,0.12073000,-0.03220000,-0.26630000,0.10963800,0.00150187,1
101563,0.13680100,0.07180500,0.16858800,0.05531833,0.47840000,0.14861025,-0.27550000,0.24310000,0.07229000,0.16837667,0.02585000,-0.01870000,0.99400000,0.15383000,0.02600000,-0.26700000,0.07956250,0.06490000,-0.02700000,0.09190500,0.01530000,0.25021583,0.20000000,0.10237500,0.28510000,0.10690000,0.11817750,-0.19330000,-0.21770000,0.10869500,0.00150270,1
101564,0.11544700,0.00151000,0.12296000,0.11806500,0.48730000,0.12631100,-0.28870000,0.22600000,0.03578333,0.13001167,0.04155000,0.09910000,0.36700000,0.09099500,0.15440000,0.04570000,0.07557500,0.20360000,0.26630000,0.14013000,0.26710000,0.22865000,0.20000000,0.08383833,0.20320000,-0.03800000,0.09770750,-0.28420000,-0.13630000,0.08938700,0.07389913,0
101567,0.11443800,0.15911000,0.14813600,0.09730167,0.17330000,0.12369100,-0.03730000,0.24690000,0.26438667,0.42218667,0.04760000,0.13690000,0.63000000,0.07955750,-0.20970000,0.15440000,0.07574250,-0.05210000,-0.28390000,0.05728250,0.21470000,0.45079667,0.30000000,0.35687833,-0.07990000,-0.00380000,0.38616250,0.09340000,-0.24840000,0.44450400,0.08341403,0
101568,0.09859600,0.13573000,0.13399000,0.06381667,0.34780000,0.09186450,-0.14170000,0.25510000,0.08386333,0.15631833,0.04610000,0.12640000,0.95100000,0.07411750,-0.06350000,0.29340000,0.06833750,0.08250000,0.08420000,0.02834000,0.26030000,0.28903250,0.20000000,0.13602500,-0.13030000,-0.17130000,0.12246000,0.21750000,0.05430000,0.13060000,0.00150270,1
101569,0.06268200,0.07672000,0.05963000,0.39646500,0.11750000,0.15220575,0.07525000,0.07070000,0.09437333,0.54180667,0.11180000,0.12440000,0.17800000,0.07186250,0.05540000,0.18810000,0.16070750,0.05880000,0.25880000,0.37455750,0.24310000,0.53496417,0.20000000,0.61605000,0.07730000,-0.12200000,0.46877500,0.19480000,0.14540000,0.55714000,1.45484847,0
101577,0.09265300,0.26966000,0.14051000,0.02830333,0.13380000,0.03333150,-0.01820000,0.25440000,0.00626667,0.15306333,0.09540000,-0.13560000,0.27100000,0.06458000,-0.05250000,0.24880000,0.12324500,-0.10530000,0.00000000,0.03954500,-0.26160000,0.19953333,0.20000000,0.09919000,-0.09580000,-0.17570000,0.12258000,0.03800000,0.16580000,0.10854600,1.45484847,0
101581,0.13937200,0.16239500,0.18751600,0.21471000,0.44970000,0.13003700,-0.00475000,0.17930000,0.06659333,0.18798583,0.05220000,0.13660000,0.50500000,0.12306250,0.17960000,-0.20800000,0.12853500,0.03690000,-0.09930000,0.10775750,-0.16980000,0.26421667,0.20000000,0.15376667,-0.00210000,0.12410000,0.08171000,0.44760000,0.24020000,0.12494400,0.00150270,1
101582,0.10010600,0.08692000,0.14306800,0.16825500,0.09370000,0.04834825,0.12345000,0.14930000,0.28406333,0.26208167,0.03640000,0.13910000,0.00000000,0.15264000,0.04560000,-0.08790000,0.11116000,0.01060000,-0.23300000,0.05505500,-0.17670000,0.39404250,0.30000000,0.14960500,-0.11710000,0.23170000,0.21078750,-0.21080000,-0.06270000,0.20897800,0.30097511,0
101585,0.11252600,0.03848500,0.13640600,0.14362500,0.32260000,0.05271950,-0.10475000,0.23060000,0.08340667,0.13050583,0.07840000,0.11570000,0.15700000,0.06629250,0.03820000,0.01650000,0.10391500,0.14830000,0.21910000,0.12674500,0.20230000,0.16498333,0.20000000,0.09579167,0.09010000,-0.11440000,0.07762250,-0.23260000,-0.25060000,0.08852400,1.45484847,0
101602,0.11857500,0.03296000,0.12943400,0.11928333,0.00350000,0.02288375,0.01530000,0.28750000,0.03228333,0.14299750,0.07495000,0.12290000,0.00000000,0.06079750,0.18070000,0.00950000,0.09112500,0.08930000,0.28200000,0.13919000,0.26740000,0.20875583,0.20000000,0.11837333,0.05710000,0.01100000,0.09951000,0.05360000,-0.19160000,0.11082800,0.00150187,1
101603,0.09065300,0.01355500,0.11672800,0.11033333,0.24150000,0.20507200,-0.02950000,0.24080000,0.01539667,0.42938333,0.10120000,0.10850000,0.99900000,0.05239500,0.16510000,-0.23120000,0.10606750,0.09710000,0.16610000,0.08874250,0.17310000,0.45116083,0.20000000,0.43377500,0.21390000,-0.13620000,0.47902750,-0.02760000,0.17420000,0.45187600,0.00150270,1
101605,0.15096600,0.05539500,0.13444600,0.39078333,0.59020000,0.34509575,-0.43535000,0.12830000,0.28941667,0.28188167,0.03765000,0.11430000,0.99000000,0.15656500,0.09170000,0.23130000,0.11788500,0.03040000,0.11850000,0.37252250,0.13180000,0.31348333,0.30000000,0.16435167,0.29570000,-0.15800000,0.13279250,-0.29450000,-0.13540000,0.22847700,0.00150270,1
101609,0.09273300,0.24675500,0.13193600,0.20746833,0.55350000,0.24628150,-0.33640000,0.18100000,0.01783333,0.19176333,0.20625000,0.14100000,0.80100000,0.05141000,0.01400000,0.29340000,0.21208500,0.03390000,-0.15500000,0.11627250,-0.23580000,0.27331833,0.20000000,0.11345167,0.18030000,0.12420000,0.14161750,-0.37320000,0.09380000,0.12471800,0.00150270,1
101611,0.07876700,0.10775000,0.09903200,0.13934833,0.31540000,0.05532050,-0.11645000,0.17590000,0.00322000,0.13138500,0.08520000,0.13720000,0.93400000,0.05916500,0.01550000,0.01840000,0.10079500,0.08100000,0.18160000,0.09533000,0.12600000,0.12005833,0.20000000,0.07884667,-0.11800000,-0.14380000,0.11592750,0.19740000,-0.23390000,0.09367800,0.30979516,0
101613,0.12798700,0.32435000,0.15222400,0.05757667,0.47250000,0.14221325,-0.26665000,0.32620000,0.00694000,0.14539750,0.04990000,0.14130000,0.99600000,0.08404750,-0.03770000,0.28780000,0.08390500,0.06430000,-0.02200000,0.08437750,0.23810000,0.16247750,0.20000000,0.10151667,0.28620000,0.00570000,0.11596250,-0.18640000,-0.24410000,0.10729500,0.00150270,1
101617,0.08890800,0.08653000,0.08887800,0.29209333,0.02690000,0.06667875,0.00010000,0.10180000,0.19659667,0.41366250,0.01990000,0.00880000,0.00000000,0.16563000,0.00340000,-0.01400000,0.06597250,-0.09830000,-0.01910000,0.21557500,-0.05560000,0.43670333,0.30000000,0.46191000,-0.02760000,0.24750000,0.16170250,-0.00070000,-0.10980000,0.40375400,1.37339095,0
101619,0.11998600,0.11422500,0.15459400,0.06940500,0.14900000,0.03975975,0.07520000,0.27370000,0.00624333,0.17612667,0.02445000,0.14110000,0.96100000,0.13966750,0.15810000,0.16950000,0.06831750,0.12870000,-0.18670000,0.04580000,-0.29390000,0.20296750,0.20000000,0.12793000,0.21800000,-0.13470000,0.12850000,0.06900000,0.12240000,0.12815800,0.00150270,1
101629,0.08278800,0.10410500,0.09738800,0.13269833,0.12330000,0.01399825,0.04175000,0.19340000,0.02023667,0.11220667,0.07460000,0.13560000,0.87900000,0.05809250,0.19860000,-0.01640000,0.08667500,0.13240000,0.16530000,0.10752500,0.11070000,0.16331333,0.20000000,0.07507333,0.17190000,-0.18410000,0.07924250,0.04860000,-0.24280000,0.07674100,1.37339095,0
101632,0.17586000,0.43286500,0.20464800,0.10935167,0.02540000,0.01455300,0.00455000,0.26270000,0.08148667,0.16621583,0.05510000,0.11280000,0.60000000,0.11222750,0.08240000,0.14340000,0.12370750,-0.02360000,-0.09690000,0.11362000,0.13310000,0.26289583,0.20000000,0.10513833,-0.02000000,-0.26810000,0.10500500,-0.04540000,-0.15380000,0.10508500,0.74405625,0
101633,0.10841900,0.05241000,0.16858800,0.16968667,0.28600000,0.03796300,-0.06950000,0.15330000,0.22483333,0.16567667,0.02160000,-0.04320000,0.99700000,0.22335000,0.02690000,0.22350000,0.09642750,0.08920000,0.08350000,0.00531500,-0.04000000,0.24885500,0.20000000,0.06797667,0.22400000,-0.23310000,0.07528750,-0.06200000,-0.02100000,0.07090200,0.06406078,0
101636,0.12144800,0.06147000,0.15876200,0.21264167,0.56560000,0.32045825,-0.39560000,0.19490000,0.15430333,0.26403333,0.11440000,0.11680000,0.99600000,0.07692250,0.00980000,0.29500000,0.17597500,-0.04660000,0.10840000,0.15130750,0.12720000,0.32286000,0.30000000,0.20947667,0.25370000,-0.17150000,0.11353750,-0.31180000,0.18450000,0.21568100,0.00150270,1
101647,0.13810700,0.32650500,0.14458000,0.13013833,0.11420000,0.02109750,0.05260000,0.25570000,0.17580333,0.14986667,0.03640000,0.13330000,0.00100000,0.10278500,-0.04980000,-0.24680000,0.07478000,0.03460000,-0.00550000,0.12962500,-0.20090000,0.25887917,0.30000000,0.06574667,-0.17450000,0.28600000,0.09143000,-0.06030000,0.06530000,0.10881400,1.45484847,0
101650,0.10627900,0.31489000,0.13400600,0.04041833,0.09230000,0.02038900,0.01140000,0.30730000,0.06873000,0.11611000,0.05660000,-0.10900000,0.00500000,0.07726500,-0.13240000,0.18950000,0.08748750,-0.17190000,-0.11530000,0.07083750,0.19990000,0.16950583,0.20000000,0.06261333,-0.02020000,-0.15130000,0.08965750,-0.11250000,0.11500000,0.07343100,1.96744774,0
101656,0.13719900,0.16959000,0.08646200,0.36911333,0.43730000,0.21591150,-0.21245000,0.11820000,0.11507333,0.27191417,0.04920000,0.14090000,0.95800000,0.09433500,0.05390000,0.28910000,0.09278750,0.11830000,-0.24020000,0.38917500,-0.28520000,0.27439583,0.30000000,0.25816167,-0.14570000,0.06400000,0.15339750,0.29170000,-0.04680000,0.25144800,0.00150270,1
101659,0.07140500,0.01421500,0.10240800,0.13003333,0.25650000,0.08873825,0.01625000,0.13670000,0.17324000,0.27853333,0.04805000,0.05720000,0.66700000,0.08894000,-0.19290000,0.00680000,0.08544750,-0.05870000,-0.01970000,0.02308000,-0.03580000,0.36577167,0.30000000,0.25185167,-0.01210000,0.24470000,0.14511000,-0.26860000,-0.16240000,0.26448500,0.07135714,0
101660,0.10667500,0.08921000,0.14853600,0.03410833,0.38080000,0.06619625,-0.17850000,0.29760000,0.00227667,0.10803333,0.05960000,-0.13180000,0.94200000,0.05770250,-0.22270000,0.07510000,0.06878500,-0.02310000,-0.14570000,0.00760750,0.21320000,0.13206000,0.20000000,0.08004667,0.21400000,0.30940000,0.07754250,-0.16680000,0.02290000,0.07904500,0.30979516,0
101664,0.13514600,0.12664000,0.18466600,0.16760167,0.55110000,0.54925700,-0.31505000,0.19520000,0.00716000,0.33251500,0.02500000,0.14140000,0.76100000,0.18122250,-0.06550000,-0.19490000,0.09053500,0.03020000,-0.02480000,0.06243750,-0.11180000,0.37758417,0.20000000,0.31153667,0.16190000,0.21620000,0.25848250,-0.38920000,-0.06030000,0.29031500,0.00150270,1
101669,0.09277700,0.38024000,0.14805800,0.18902667,0.09420000,0.03598400,-0.00455000,0.15980000,0.28829667,0.26085333,0.14650000,0.00090000,0.01100000,0.06146250,0.02010000,-0.27170000,0.18008750,-0.13600000,-0.23770000,0.12642250,-0.10140000,0.22326833,0.30000000,0.13262167,0.01090000,0.11480000,0.17275500,-0.08330000,-0.07980000,0.21640400,0.74405625,0
101672,0.08548500,0.18979000,0.11519400,0.14973167,0.29490000,0.05344000,-0.09785000,0.16410000,0.05376000,0.15648833,0.04910000,0.13490000,0.43400000,0.09679500,0.12870000,0.26690000,0.09504250,0.18130000,-0.20600000,0.09011750,-0.31360000,0.20391167,0.20000000,0.12977333,-0.10080000,0.00150000,0.08296750,0.19410000,0.07050000,0.11105100,0.01863612,1
101676,0.17676800,0.13202500,0.23417600,0.05515500,0.10070000,0.04730850,0.09630000,0.30310000,0.10823667,0.26473833,0.04180000,0.14100000,0.98500000,0.15763250,-0.10400000,-0.30040000,0.13180250,-0.14140000,0.02720000,0.08354750,0.09120000,0.26344083,0.30000000,0.14126833,-0.09730000,-0.18920000,0.20180500,-0.19800000,0.14440000,0.20191200,0.88485087,0
101677,0.12270100,0.16326000,0.14262800,0.18300667,0.13100000,0.02228175,0.08240000,0.21440000,0.00317333,0.14636500,0.07875000,0.02420000,0.00100000,0.05533000,0.23640000,0.09980000,0.08716000,0.02350000,0.07540000,0.14776000,0.14900000,0.19941917,0.20000000,0.14661500,-0.20960000,-0.17580000,0.07668250,-0.07860000,-0.26020000,0.11864200,2.61220432,0
101683,0.11454200,0.46543500,0.21351600,0.06857333,0.57960000,0.23228725,-0.41885000,0.21640000,0.21086000,0.18856333,0.08945000,-0.14100000,0.95600000,0.10847500,-0.01850000,0.06860000,0.19402000,0.04630000,0.27500000,0.09974000,-0.15510000,0.10085833,0.20000000,0.10710500,0.27470000,-0.09960000,0.10253750,-0.30490000,-0.03910000,0.10527800,0.00150270,1
101684,0.13435800,0.24879500,0.20400200,0.16164500,0.13710000,0.04575075,-0.00315000,0.19390000,0.18214667,0.22780167,0.02295000,-0.01030000,0.31900000,0.19683250,-0.11880000,-0.01490000,0.09042750,0.00950000,0.13040000,0.04964750,-0.10750000,0.28323917,0.20000000,0.13283667,0.00480000,-0.14340000,0.19689000,-0.13230000,0.27250000,0.15845800,0.74405625,0
101686,0.10491400,0.01978500,0.13753800,0.14332500,0.01250000,0.03237950,0.00525000,0.19040000,0.03929333,0.18912000,0.04105000,0.08480000,0.00000000,0.09275750,-0.19680000,-0.29430000,0.07611750,-0.03410000,-0.19540000,0.07762000,-0.18260000,0.29316917,0.20000000,0.20966833,0.03930000,0.08060000,0.08398250,0.02680000,-0.27300000,0.15939500,0.30716952,0
101692,0.07616700,0.21407500,0.07679200,0.13971500,0.12600000,0.01911875,-0.01145000,0.17550000,0.13039000,0.11119250,0.06405000,0.13000000,0.44700000,0.05239000,0.09010000,-0.30500000,0.06710750,0.01550000,-0.14610000,0.13258000,-0.26670000,0.23243333,0.20000000,0.08188833,0.02200000,-0.03150000,0.09124750,-0.10400000,0.09230000,0.08563200,0.74405625,0
101693,0.07704800,0.16697500,0.09389800,0.16267667,0.25110000,0.06092175,-0.07210000,0.15450000,0.08816000,0.21401333,0.07280000,0.12720000,0.46900000,0.06279750,-0.03660000,0.01590000,0.09143250,-0.14580000,-0.09340000,0.11632500,-0.01010000,0.23525417,0.30000000,0.15275500,-0.16220000,-0.26860000,0.13000500,0.08890000,0.20190000,0.19512400,0.35853999,0
101694,0.09791700,0.29473500,0.08213600,0.53519500,0.26280000,0.11218725,-0.08410000,0.07850000,0.00128333,0.40199667,0.32735000,0.13940000,0.96200000,0.05160750,0.08950000,-0.21060000,0.33786250,0.04700000,-0.14460000,0.43220500,-0.18340000,0.45200333,0.20000000,0.44056667,-0.11030000,0.13590000,0.15567000,0.15250000,0.18410000,0.32660800,0.00150270,1
101698,0.12059800,0.29061000,0.18125800,0.09612833,0.23540000,0.04669875,0.23530000,0.31090000,0.00823333,0.16970250,0.04905000,-0.14140000,0.05100000,0.10729250,0.02970000,-0.12280000,0.10522250,-0.04350000,0.20340000,0.15660500,0.08300000,0.24415667,0.20000000,0.14630333,-0.36450000,-0.21190000,0.07713500,-0.12910000,0.13870000,0.11863700,0.00150270,1
101699,0.12912700,0.33008500,0.20964000,0.05052333,0.15970000,0.02576925,-0.02850000,0.28620000,0.01801000,0.12601917,0.10445000,-0.13790000,0.01900000,0.05623750,0.04640000,0.21980000,0.11747250,-0.18440000,0.05040000,0.07962750,-0.15400000,0.15161167,0.20000000,0.08209500,-0.10570000,0.26870000,0.08120750,0.05390000,-0.12600000,0.08174000,2.93687997,0
101703,0.01709000,0.14360500,0.02673600,0.11009000,0.04150000,0.00992325,0.19360000,0.05500000,0.00607667,0.10273917,0.06900000,0.02960000,0.85000000,0.05193000,0.18490000,-0.14030000,0.07166500,0.20630000,-0.08960000,0.06239250,-0.20290000,0.12357167,0.20000000,0.06430500,0.21860000,0.12510000,0.08816750,0.17710000,0.21960000,0.07384900,0.00150187,1
101706,0.10867300,0.02713500,0.14892800,0.24185167,0.13550000,0.02824625,0.13260000,0.12460000,0.02559333,0.22880500,0.02910000,0.11240000,0.35800000,0.20781250,-0.13360000,-0.22090000,0.12101250,-0.10780000,0.28550000,0.10554250,0.29750000,0.38208583,0.20000000,0.14507167,-0.24410000,0.05290000,0.13998500,-0.10860000,-0.00350000,0.14303700,0.30979516,0
101711,0.08168000,0.05336000,0.11294800,0.11308167,0.37130000,0.13046650,-0.09135000,0.17750000,0.30112000,0.27491000,0.06915000,0.12810000,0.99300000,0.07633750,0.07390000,0.21190000,0.10558000,0.11140000,0.03840000,0.05170250,0.07470000,0.31216417,0.30000000,0.16495167,0.31290000,-0.18140000,0.16541750,-0.05840000,-0.00060000,0.25712500,0.08341403,0
101712,0.16577000,0.31244500,0.25597000,0.36696500,0.11640000,0.03240425,0.09615000,0.18640000,0.11185667,0.40482250,0.00780000,0.01520000,0.14400000,0.48791750,0.12820000,0.04230000,0.07628500,0.06940000,0.21920000,0.09329250,-0.01750000,0.39502250,0.30000000,0.26868500,0.09220000,-0.28990000,0.15919250,0.20860000,-0.26510000,0.26010700,0.74405625,0
101713,0.13053900,0.30017500,0.19513800,0.22882833,0.00020000,0.04787650,0.18580000,0.19840000,0.44513333,0.36062917,0.20240000,0.01010000,0.00000000,0.05762000,-0.15380000,0.23210000,0.23325250,0.00830000,0.11770000,0.13091000,0.02890000,0.37774417,0.30000000,0.16641333,0.19270000,-0.23190000,0.22805000,0.19290000,0.11090000,0.31640700,1.33155659,0
101720,0.10775000,0.10175500,0.12919400,0.30821000,0.41880000,0.17546975,-0.21885000,0.11670000,0.03186000,0.23752750,0.05410000,0.13680000,0.98900000,0.12812250,0.13730000,-0.20290000,0.13866250,0.03100000,-0.25100000,0.20347750,-0.22060000,0.33799417,0.20000000,0.17581667,0.21820000,0.07550000,0.18207250,-0.20060000,0.11180000,0.17831900,0.00150270,1
101728,0.13527900,0.10561500,0.12002600,0.23671000,0.02660000,0.02066825,0.15210000,0.17860000,0.08619000,0.18569250,0.04645000,0.13660000,0.00000000,0.08502000,-0.14470000,0.16240000,0.07896000,-0.00850000,0.04690000,0.21928500,0.08730000,0.24348000,0.20000000,0.14058000,-0.18820000,-0.28510000,0.18222750,-0.16160000,-0.18160000,0.15723800,0.00265331,1
101729,0.11134000,0.31230500,0.15706600,0.08345833,0.25980000,0.06926550,-0.07630000,0.31430000,0.16813667,0.21301750,0.04775000,-0.14140000,0.25500000,0.09318000,0.11320000,0.28150000,0.08902750,0.19210000,-0.02280000,0.13424250,-0.18190000,0.26863500,0.30000000,0.12638000,0.17010000,0.12640000,0.16683500,-0.08970000,-0.12040000,0.18273800,0.30716952,0
101734,0.06715800,0.07299000,0.08174800,0.35994167,0.22700000,0.09055550,-0.05480000,0.08200000,0.16480000,0.36058000,0.16875000,0.12130000,0.84700000,0.06944000,-0.06800000,-0.17700000,0.23438750,-0.09020000,-0.09810000,0.25238250,-0.11310000,0.47113667,0.30000000,0.30207500,-0.15740000,0.16170000,0.21596000,0.06960000,0.23610000,0.31116600,0.35853999,0
101735,0.11298100,0.18164500,0.14152600,0.16924500,0.29860000,0.08061775,-0.09710000,0.20620000,0.00675333,0.17941917,0.03375000,0.12440000,0.46800000,0.10036750,0.08260000,-0.08110000,0.06776250,-0.07640000,0.05010000,0.12109750,-0.05490000,0.17983417,0.20000000,0.15405833,0.20290000,0.21660000,0.13904000,-0.09570000,-0.24110000,0.14805100,0.00150270,1
101743,0.31789600,0.29414500,0.45315000,0.22059500,0.21230000,0.05000950,-0.05450000,0.27110000,0.10145667,0.36869500,0.02090000,0.14130000,0.13400000,0.44174500,-0.09380000,-0.28560000,0.18445000,-0.13130000,-0.01710000,0.06290000,-0.16740000,0.46393000,0.30000000,0.16601167,-0.08710000,0.07110000,0.15155250,0.12520000,0.10290000,0.19195600,0.07135714,0
101744,0.15885400,0.17876500,0.21873000,0.05885833,0.19670000,0.02531050,-0.04295000,0.37660000,0.09212000,0.10695500,0.07510000,-0.13560000,0.15500000,0.05241750,-0.17860000,-0.29270000,0.07874750,0.10130000,0.08360000,0.08793250,-0.02980000,0.21458583,0.20000000,0.07515167,-0.13130000,0.23600000,0.07697250,0.06540000,-0.23790000,0.07588000,1.40141483,0
101761,0.07250500,0.18087500,0.10167800,0.03058333,0.09460000,0.01795325,0.03560000,0.30140000,0.06152667,0.09605000,0.05280000,-0.14140000,0.85000000,0.06182750,-0.10230000,0.30880000,0.06526250,-0.11580000,-0.01840000,0.05436250,0.15400000,0.17751833,0.20000000,0.05667667,-0.14410000,-0.19140000,0.07604500,-0.04940000,0.15130000,0.06442400,0.30979516,0
101764,0.10766000,0.15881000,0.12048400,0.15817000,0.02820000,0.00774550,0.03030000,0.19140000,0.03914333,0.20153750,0.02720000,0.14130000,0.00000000,0.12481000,-0.03170000,-0.27640000,0.06788250,-0.02260000,-0.08530000,0.12293750,-0.17520000,0.26162583,0.30000000,0.10277333,-0.06500000,0.12540000,0.10200250,-0.09320000,0.07490000,0.16476800,0.00150270,1
101767,0.03498800,0.26666500,0.05080200,0.18776333,0.29160000,0.06206200,-0.06520000,0.06930000,0.09734333,0.17546167,0.16130000,0.01260000,0.35100000,0.05180750,0.05330000,-0.11930000,0.16714500,0.05860000,-0.05020000,0.11977250,0.04790000,0.27079667,0.20000000,0.13727000,0.05520000,0.26940000,0.10153000,-0.23640000,-0.21820000,0.12297400,2.28570939,0
101768,0.23482500,0.37676000,0.23598800,0.07526000,0.33770000,0.05759325,0.13415000,0.43300000,0.06729667,0.11108833,0.06545000,-0.14060000,0.65400000,0.05339250,0.18050000,-0.10070000,0.06990750,-0.12520000,0.20580000,0.12999750,-0.13930000,0.19665833,0.20000000,0.08676833,-0.06640000,0.20490000,0.07981000,-0.40410000,-0.06790000,0.08398600,2.94076193,0
101772,0.09815000,0.26478000,0.15347000,0.06402167,0.06510000,0.02049525,0.06455000,0.21580000,0.02105000,0.14337917,0.09260000,-0.13910000,0.00000000,0.07630000,0.01670000,-0.29300000,0.14130750,0.08590000,-0.08850000,0.04937500,0.09440000,0.23200750,0.20000000,0.07483833,-0.15080000,0.28750000,0.10027500,-0.08560000,0.06600000,0.08501300,1.45484847,0
101774,0.15928300,0.04865500,0.11658200,0.45390500,0.07320000,0.05999125,0.00420000,0.16450000,0.00707333,0.34494333,0.07065000,0.08920000,0.19500000,0.07529250,-0.01590000,-0.27560000,0.10640250,0.09350000,-0.15280000,0.55177500,-0.14270000,0.40686000,0.20000000,0.42718667,0.01010000,0.19100000,0.21235750,0.08330000,0.03420000,0.34125400,2.14871025,0
101787,0.14430000,0.45691500,0.16226400,0.05355500,0.46830000,0.13163900,-0.24645000,0.26440000,0.03786000,0.15559250,0.08895000,0.05480000,0.99900000,0.07640250,0.03160000,0.00010000,0.13591000,0.08100000,0.25980000,0.09972500,-0.01550000,0.15577167,0.20000000,0.09830167,-0.15980000,-0.28440000,0.10701000,0.30850000,-0.03070000,0.10178500,0.00150270,1
101795,0.07398400,0.34965500,0.12114200,0.06552333,0.00180000,0.01790475,0.01565000,0.16010000,0.00698667,0.13929750,0.08555000,-0.13760000,0.00000000,0.07974500,0.00200000,-0.31080000,0.13647000,-0.03310000,0.16140000,0.06044000,-0.09790000,0.18546167,0.20000000,0.07873500,0.05690000,-0.18430000,0.08357500,0.05510000,0.03480000,0.08067100,2.02004635,0
101796,0.08800400,0.02755000,0.10061000,0.19318333,0.05780000,0.01513900,0.04170000,0.15020000,0.00554667,0.15921917,0.06220000,0.11540000,0.00100000,0.07296750,0.13940000,0.02730000,0.09078250,0.01910000,0.11720000,0.14487250,0.10520000,0.16363167,0.20000000,0.13715833,0.12470000,-0.25050000,0.10816750,0.06690000,-0.17200000,0.12556300,1.45484847,0
101798,0.05548600,0.25058000,0.07677800,0.14149833,0.08360000,0.01816550,-0.00370000,0.13130000,0.19161000,0.21731667,0.07420000,-0.00850000,0.97400000,0.06261000,-0.01910000,0.23090000,0.09288750,0.03850000,0.11280000,0.16244000,0.00580000,0.32312917,0.30000000,0.14438500,-0.01000000,-0.25810000,0.14799500,0.07360000,-0.21340000,0.19858200,0.74405625,0
101801,0.10353600,0.24306000,0.15332200,0.50234500,0.01900000,0.03472925,0.04470000,0.08270000,0.21795667,0.75974833,0.01015000,0.04170000,0.91000000,0.51134750,0.03290000,-0.24090000,0.10359250,0.09800000,-0.29190000,0.16796500,-0.19620000,0.82315333,0.30000000,0.32486500,0.08560000,0.12520000,0.41611750,0.10450000,0.05480000,0.66572200,0.00150270,1
101802,0.10268900,0.25444000,0.12965600,0.07141333,0.31140000,0.05798800,0.06175000,0.28650000,0.01085000,0.13504667,0.03685000,0.13940000,0.96200000,0.09329250,0.20400000,-0.03760000,0.06872750,0.16070000,0.30740000,0.07235750,-0.09600000,0.21530750,0.20000000,0.10447333,0.34700000,0.16350000,0.08641250,0.03560000,-0.21150000,0.09724900,0.00150270,1
101804,0.06159300,0.20660500,0.07817000,0.27241667,0.33210000,0.14431075,-0.13535000,0.09190000,0.06986333,0.29489083,0.15445000,0.13840000,0.98600000,0.06260750,0.00370000,0.23640000,0.19337250,0.00230000,-0.30000000,0.17826750,0.27200000,0.42446333,0.30000000,0.18570667,0.18820000,0.03310000,0.27366250,-0.14380000,-0.10080000,0.25147700,0.30979516,0
101805,0.18495900,0.31940000,0.27230200,0.21109500,0.21310000,0.07810200,0.00230000,0.27940000,0.12883667,0.26766250,0.18820000,-0.01290000,0.52100000,0.05436500,-0.03940000,0.27720000,0.20460500,0.19480000,0.12480000,0.16306000,0.03430000,0.32806583,0.20000000,0.24626667,0.00220000,-0.29110000,0.17461750,0.21530000,-0.09130000,0.21760700,3.18796932,0
101807,0.07761700,0.18456500,0.11065400,0.11997000,0.03440000,0.01343225,0.04005000,0.16780000,0.04590667,0.17114667,0.07140000,0.03390000,0.26700000,0.06418500,0.22180000,-0.28930000,0.09164250,0.07140000,0.26450000,0.05736250,-0.22580000,0.23056917,0.30000000,0.06573000,0.10830000,0.06780000,0.09828500,0.07390000,-0.07190000,0.14304500,0.00150187,1
101811,0.17382000,0.36121500,0.24702200,0.27333333,0.30280000,0.14360250,-0.08165000,0.21690000,0.18035667,0.41888750,0.01360000,0.10650000,0.98300000,0.33433500,-0.08990000,0.29380000,0.09100000,-0.10100000,-0.11790000,0.11855250,0.29960000,0.46050417,0.30000000,0.30259500,0.07020000,0.01830000,0.21451000,-0.23260000,-0.15910000,0.33253100,0.74405625,0
101815,0.11735100,0.03932000,0.15785200,0.17040833,0.00470000,0.01600275,0.07715000,0.19760000,0.08740667,0.26312583,0.08755000,0.11380000,0.00000000,0.08835250,-0.08250000,-0.29900000,0.15472500,-0.11540000,0.13440000,0.11476750,0.14920000,0.24830750,0.30000000,0.09686667,-0.12660000,-0.18420000,0.10406250,-0.12190000,-0.04700000,0.21852000,0.08341403,0
101819,0.11550900,0.11391500,0.12130000,0.11146500,0.40510000,0.08854425,-0.18955000,0.23600000,0.10941667,0.13571500,0.04145000,-0.03040000,0.98900000,0.08809250,0.01130000,0.07210000,0.07306750,-0.03470000,0.30360000,0.17475000,-0.27380000,0.10591667,0.20000000,0.11003500,0.14670000,0.00170000,0.08093500,-0.25830000,-0.21010000,0.09839500,0.00150270,1
101820,0.09803900,0.11595500,0.12415000,0.04478167,0.39200000,0.06351575,0.09470000,0.30010000,0.08485667,0.11052083,0.04280000,0.14120000,0.01900000,0.08330750,-0.17820000,-0.19480000,0.07128250,-0.15070000,0.10410000,0.06200750,0.01390000,0.13067083,0.20000000,0.06791333,0.04350000,-0.26900000,0.07510250,0.43550000,0.01550000,0.07078900,0.30979516,0
101823,0.17041200,0.45632500,0.24756800,0.13402667,0.33580000,0.09658025,-0.02100000,0.26270000,0.14304000,0.19788333,0.05340000,0.03290000,0.97300000,0.11238250,-0.05800000,-0.02140000,0.12001250,0.12710000,-0.20780000,0.12858500,0.02490000,0.20782917,0.20000000,0.15632667,0.32280000,-0.27990000,0.12676500,-0.01300000,0.07020000,0.14450200,0.74405625,0
101824,0.14101000,0.32682000,0.15862000,0.06857667,0.56870000,0.19014225,-0.39965000,0.28440000,0.20074000,0.13208000,0.07605000,0.13220000,0.99800000,0.06927250,0.14150000,0.30220000,0.10537250,0.01870000,0.04560000,0.08009250,0.26480000,0.09948250,0.20000000,0.07783833,0.31500000,-0.15750000,0.10483500,-0.25380000,0.30630000,0.08863800,0.00150270,1
101826,0.10656300,0.07470500,0.13405000,0.19506167,0.53080000,0.20942250,-0.33405000,0.19250000,0.00444333,0.15666000,0.12230000,0.13640000,1.00000000,0.05044500,0.11760000,0.17640000,0.12339250,-0.05610000,0.09330000,0.13097500,0.12280000,0.16175583,0.20000000,0.10161167,0.20520000,-0.17860000,0.14372250,-0.32550000,-0.21420000,0.11845600,0.00150270,1
101834,0.09966900,0.31434500,0.17284400,0.10517333,0.06380000,0.02713500,-0.00220000,0.22740000,0.07712667,0.14444417,0.05635000,-0.01520000,0.00000000,0.07405750,0.03420000,-0.00330000,0.08346250,-0.18780000,-0.05270000,0.12797750,-0.22550000,0.18676000,0.20000000,0.12673333,-0.05590000,0.23290000,0.08571250,0.00790000,-0.06540000,0.11032500,2.60500406,0
101835,0.12825800,0.34793000,0.18837200,0.08860000,0.06040000,0.05517500,0.00115000,0.29780000,0.08832333,0.41505333,0.12530000,0.14140000,0.05900000,0.07460500,-0.08540000,0.19330000,0.18699000,-0.08460000,-0.13720000,0.07140000,-0.30770000,0.44740917,0.30000000,0.25291167,-0.00360000,0.11400000,0.18128250,-0.06400000,-0.19280000,0.39342600,0.30097511,0
101837,0.11912000,0.15634500,0.17403600,0.24553500,0.41920000,0.11956700,-0.14400000,0.14560000,0.08928333,0.22596333,0.08715000,0.14030000,0.85200000,0.11862750,-0.03060000,0.21860000,0.20672750,0.03910000,0.09080000,0.10229250,0.14520000,0.23673417,0.20000000,0.18250833,0.33260000,-0.19840000,0.07877250,-0.08660000,-0.06550000,0.14101400,0.00150270,1
101843,0.08181200,0.36515500,0.11709400,0.10117500,0.18380000,0.04805175,0.10820000,0.28600000,0.07448000,0.17569583,0.09290000,0.14100000,0.00000000,0.05210000,-0.05180000,-0.16750000,0.09679250,-0.11070000,0.18090000,0.13796500,-0.26530000,0.25024833,0.20000000,0.18919500,0.26530000,-0.01970000,0.09440250,0.08160000,0.26210000,0.15127800,1.04040763,0
101845,0.06454600,0.39770000,0.11410000,0.08284833,0.00740000,0.02825300,0.14515000,0.12700000,0.00184667,0.17318500,0.05825000,-0.08850000,0.00000000,0.09898250,0.20210000,0.12020000,0.11526500,0.08340000,0.16540000,0.09147000,-0.19930000,0.15284500,0.20000000,0.10443333,0.17410000,-0.25780000,0.14865500,0.16670000,-0.02630000,0.12212200,0.74405625,0
101849,0.12336000,0.17382500,0.14522600,0.16436000,0.09750000,0.02014350,-0.01125000,0.20420000,0.01522333,0.16366083,0.06640000,0.13850000,0.97200000,0.09236250,-0.01780000,-0.27720000,0.12264250,-0.01940000,-0.07300000,0.13156500,-0.14280000,0.17073583,0.20000000,0.11409500,-0.06000000,0.12390000,0.10483500,0.03750000,0.23700000,0.11039100,0.00150187,1
101853,0.10142700,0.10013000,0.14263000,0.07060000,0.41620000,0.11383250,-0.19275000,0.31510000,0.00882667,0.15409583,0.08485000,-0.14110000,0.74500000,0.06406250,0.10810000,-0.05000000,0.10869250,0.18180000,0.27200000,0.06742750,0.21260000,0.21719917,0.20000000,0.12064667,0.27700000,-0.01850000,0.10856250,-0.13920000,-0.27200000,0.11581400,0.00150270,1
101855,0.19061600,0.00908500,0.23892400,0.10682500,0.06170000,0.02470750,0.29395000,0.26100000,0.25258667,0.18221333,0.04230000,0.09350000,0.00000000,0.16265250,-0.01430000,-0.08400000,0.13762750,0.04210000,0.28950000,0.13212500,0.28610000,0.18227750,0.20000000,0.08351333,-0.27530000,-0.30630000,0.12108750,-0.21360000,0.07500000,0.09854300,0.00150270,1
101859,0.08321800,0.11473500,0.11689800,0.00917333,0.07330000,0.01970925,-0.00575000,0.28240000,0.00020667,0.10968417,0.04780000,-0.14080000,0.00000000,0.07432250,0.11620000,0.22040000,0.07109000,0.15560000,-0.12830000,0.03386000,-0.00340000,0.09222167,0.20000000,0.06164833,-0.02280000,-0.24880000,0.09117000,0.05050000,0.08040000,0.07345600,1.45484847,0
101870,0.10901500,0.29166500,0.17597200,0.16995667,0.14100000,0.03833225,0.01565000,0.14030000,0.04513667,0.24563833,0.01590000,-0.11260000,0.57300000,0.28964000,-0.10760000,0.14030000,0.09198000,-0.03740000,0.26170000,0.07919000,-0.16180000,0.35421417,0.20000000,0.12738333,-0.16050000,-0.23100000,0.16422000,-0.01950000,-0.06190000,0.14211800,0.07135714,0
101873,0.11603000,0.08211500,0.13194600,0.16797167,0.20880000,0.03286700,0.24315000,0.20110000,0.25039667,0.12769083,0.06265000,0.06210000,0.58700000,0.07638250,-0.04740000,0.06530000,0.09573500,-0.16780000,-0.09580000,0.16705250,-0.12840000,0.24316667,0.20000000,0.07570333,-0.13960000,0.26660000,0.09740000,-0.34840000,0.03400000,0.08438200,0.35853999,0
101877,0.08354400,0.13513500,0.10900600,0.10561333,0.20850000,0.06459025,-0.02315000,0.23990000,0.14240667,0.23293833,0.10075000,0.13890000,0.98900000,0.05054750,0.11060000,-0.00380000,0.10183500,0.06790000,-0.23990000,0.08471250,-0.16540000,0.31577083,0.30000000,0.15206667,-0.02530000,0.06510000,0.20824500,0.18320000,0.25150000,0.21857300,0.30716952,0
101885,0.24650600,0.32000000,0.39125200,0.11997833,0.11730000,0.05299125,0.13360000,0.35180000,0.02193667,0.22114333,0.11380000,-0.00230000,0.87200000,0.05754500,0.15630000,-0.25780000,0.13099500,-0.19540000,-0.24850000,0.07616500,-0.06280000,0.30818333,0.20000000,0.16281667,-0.23230000,0.00150000,0.23066500,-0.11500000,0.23310000,0.18995600,3.13782829,0
101887,0.13952000,0.02766500,0.20406600,0.14573667,0.34490000,0.10672275,-0.03875000,0.19400000,0.01567333,0.24550167,0.02115000,0.06250000,0.93300000,0.23683500,-0.12120000,0.14990000,0.10027750,-0.10290000,-0.04320000,0.02503500,-0.07090000,0.27698250,0.20000000,0.18173000,0.02420000,-0.26390000,0.12680000,-0.32080000,-0.03120000,0.15975800,0.00150270,1
101891,0.10622100,0.14519000,0.13540200,0.11951667,0.21390000,0.02657100,-0.04215000,0.26780000,0.11254667,0.12438833,0.10930000,0.13840000,0.62900000,0.05382250,-0.21930000,-0.04240000,0.11763500,-0.12760000,0.20920000,0.10057500,0.14120000,0.19754333,0.20000000,0.06751167,0.05210000,-0.22670000,0.10044250,-0.16180000,-0.18290000,0.08068400,0.07135714,0
101895,0.11131600,0.16890500,0.13107400,0.42504833,0.45140000,0.41726625,-0.25165000,0.07930000,0.08409000,0.48971583,0.02640000,0.05210000,0.95600000,0.28984250,-0.04460000,-0.17260000,0.15300250,-0.07280000,-0.24670000,0.28882000,-0.28720000,0.54250750,0.30000000,0.33329833,0.20080000,0.14860000,0.37964750,-0.25070000,-0.02490000,0.41052100,0.00150270,1
101899,0.11640400,0.07572000,0.12448800,0.21881833,0.00900000,0.02043450,0.01835000,0.16830000,0.17027333,0.31432667,0.03830000,0.06840000,0.01000000,0.09452500,-0.23690000,-0.08330000,0.07242750,-0.07040000,-0.10830000,0.16432250,-0.07340000,0.29784750,0.30000000,0.11606833,-0.05630000,0.13520000,0.14486750,-0.06530000,0.26850000,0.31041000,0.00265331,1
101903,0.14197600,0.00630000,0.20228000,0.15424333,0.49360000,0.21960750,-0.30245000,0.22750000,0.05330667,0.26657833,0.09375000,0.10280000,0.97700000,0.09089750,-0.05010000,0.19230000,0.17039000,0.05830000,-0.00770000,0.08274500,-0.00500000,0.32838417,0.30000000,0.23815667,-0.22650000,-0.29820000,0.09554250,0.26710000,0.00600000,0.21537900,0.07135714,0
101906,0.12509000,0.26912500,0.16947000,0.11697667,0.03770000,0.00655325,0.27915000,0.23400000,0.09687333,0.14856417,0.02790000,0.10270000,0.00000000,0.14872000,0.10120000,-0.02410000,0.08295000,0.04220000,0.20240000,0.06725250,-0.02190000,0.23261500,0.20000000,0.07255167,0.21820000,-0.24660000,0.10519500,0.25590000,-0.28720000,0.08560900,0.00150270,1
101909,0.10272100,0.07475500,0.09262200,0.22655000,0.63940000,0.51147100,-0.50960000,0.17720000,0.01148667,0.18983917,0.07320000,0.12160000,0.99000000,0.06033250,-0.06550000,0.21570000,0.08833750,-0.01560000,0.04570000,0.24472750,0.07120000,0.24348583,0.20000000,0.15524833,0.33630000,-0.28800000,0.18797500,-0.30300000,-0.15580000,0.16833900,0.00150270,1
101910,0.11587600,0.25913000,0.15744200,0.14741667,0.34460000,0.06694750,-0.01615000,0.21430000,0.01909000,0.16840833,0.11405000,0.14140000,0.28400000,0.07416500,-0.03810000,-0.06480000,0.16918750,-0.03060000,-0.27900000,0.08951750,-0.16810000,0.24898833,0.20000000,0.12361167,0.33490000,0.14670000,0.07645500,-0.00960000,0.01090000,0.10474900,0.01863612,1
101911,0.07388600,0.18421500,0.08165200,0.26297833,0.26160000,0.05493900,-0.06840000,0.09870000,0.07158000,0.19921917,0.10400000,0.10510000,0.44400000,0.07076250,-0.09690000,-0.04600000,0.14719250,-0.17640000,0.01230000,0.19137250,-0.04330000,0.26692750,0.20000000,0.20190333,0.07220000,0.27860000,0.07685000,-0.18940000,-0.24630000,0.15188200,0.30979516,0
101913,0.10643200,0.13993000,0.11198000,0.29705333,0.52950000,0.31901150,-0.34490000,0.11850000,0.09369333,0.24355917,0.01995000,0.14120000,0.99400000,0.19812250,-0.06910000,0.18350000,0.07897000,-0.05440000,0.06590000,0.21140250,0.12080000,0.33109417,0.20000000,0.16088167,0.23130000,-0.22880000,0.21226000,-0.29820000,-0.11000000,0.18143400,0.00150270,1
101914,0.07725200,0.01278000,0.10728800,0.27512667,0.08510000,0.01624175,0.03385000,0.08550000,0.01610667,0.24900583,0.02485000,0.09200000,0.19100000,0.22700750,-0.00320000,-0.25380000,0.11279250,-0.03790000,-0.17560000,0.10929250,-0.16990000,0.29332250,0.20000000,0.21908667,-0.13510000,0.10700000,0.07858750,-0.05010000,0.06540000,0.16288700,0.07389913,0
101933,0.24302300,0.31026500,0.35831600,0.13476667,0.17520000,0.07340075,0.13875000,0.28370000,0.09140333,0.33954417,0.02795000,0.14120000,0.90600000,0.29847750,-0.19740000,0.17590000,0.16679250,-0.16070000,-0.10540000,0.06384000,0.06470000,0.32617250,0.20000000,0.24723500,-0.10060000,-0.21700000,0.18250750,-0.27580000,0.11200000,0.22134400,0.30716952,0
101934,0.13512100,0.15783000,0.21455800,0.76671667,0.21580000,0.21830525,-0.05560000,0.05690000,0.11091333,0.91163000,0.02970000,0.09720000,0.37500000,0.60743250,0.08090000,0.15130000,0.36073500,0.12970000,0.18050000,0.19265000,0.15050000,0.83321250,0.30000000,0.87943333,-0.08500000,-0.11990000,0.36750500,0.13080000,0.29810000,0.70668900,0.00150270,1
101936,0.14036500,0.31944500,0.20130000,0.12734500,0.25250000,0.08575850,-0.07970000,0.21900000,0.11409667,0.23932917,0.05485000,0.08440000,0.53700000,0.11882250,-0.01790000,0.27320000,0.13035250,0.09910000,-0.16990000,0.06973500,0.25980000,0.35176500,0.20000000,0.16174000,-0.12660000,-0.04550000,0.22620250,0.12590000,0.15210000,0.18752500,0.00150270,1
101937,0.07629900,0.17769500,0.06321600,0.18987500,0.27400000,0.07545075,-0.04370000,0.14230000,0.15064333,0.19404500,0.06135000,0.13940000,0.61300000,0.05359250,-0.15070000,-0.17370000,0.06575500,-0.19590000,-0.03880000,0.19279250,-0.11990000,0.28915250,0.20000000,0.24107167,0.03680000,0.15660000,0.10118000,-0.23710000,0.30780000,0.18511500,0.30716952,0
101945,0.12217300,0.10478500,0.13942800,0.17120167,0.42580000,0.10631375,-0.18300000,0.24900000,0.08255333,0.13947833,0.10105000,0.03640000,0.95700000,0.05439750,-0.00450000,-0.03270000,0.10993750,-0.13780000,0.17760000,0.18615500,0.21440000,0.19163167,0.20000000,0.09020333,0.11950000,-0.17110000,0.11879500,-0.30630000,-0.04600000,0.10164000,0.00150270,1
101947,0.13721800,0.09309500,0.14145800,0.26821833,0.02410000,0.01846625,0.00110000,0.15370000,0.09032667,0.21734417,0.04070000,0.12450000,0.00000000,0.14027000,-0.12300000,0.04650000,0.11412750,-0.09940000,-0.10540000,0.23364750,-0.07680000,0.26346583,0.20000000,0.17416667,-0.00720000,0.28090000,0.13638750,-0.03130000,0.18500000,0.15905400,0.00265331,1
101952,0.11525000,0.27513500,0.12722000,0.27051500,0.33790000,0.13879400,-0.13915000,0.16190000,0.01366667,0.29059750,0.01860000,0.12570000,0.68700000,0.17599250,0.02660000,-0.08360000,0.06545750,0.07660000,-0.23760000,0.21622750,-0.11430000,0.30478000,0.20000000,0.33913000,-0.19590000,0.21590000,0.12164750,0.14210000,-0.03950000,0.25213600,0.00150270,1
101954,0.11081800,0.10472500,0.15967600,0.07361000,0.36340000,0.09951800,-0.14835000,0.21590000,0.13160333,0.20885417,0.03995000,-0.04090000,1.00000000,0.11835750,-0.02870000,0.07640000,0.09462500,0.05500000,0.27540000,0.05137250,-0.27600000,0.20272750,0.30000000,0.10707000,-0.12380000,-0.13130000,0.15436000,0.23960000,0.16150000,0.16543200,0.00150270,1
101972,0.09227700,0.10323500,0.14334200,0.42083167,0.11400000,0.07218750,-0.00380000,0.06650000,0.04157667,0.46038250,0.05940000,0.14050000,0.13900000,0.25122000,0.01470000,-0.31020000,0.29832750,0.03020000,-0.24550000,0.10999750,-0.27410000,0.40991000,0.20000000,0.30165667,0.00720000,0.10210000,0.37911500,-0.10680000,-0.03110000,0.33264000,1.45484847,0
101975,0.15479100,0.09057000,0.16229800,0.14378833,0.00880000,0.02511775,0.00955000,0.20710000,0.10575667,0.17288333,0.02735000,0.04580000,0.00000000,0.15501250,0.24530000,0.07530000,0.08476000,0.19110000,0.27520000,0.19448250,0.31070000,0.21497917,0.20000000,0.11412333,-0.03950000,-0.13410000,0.10769250,-0.04830000,0.08700000,0.11155000,0.00150187,1
101976,0.12010800,0.03269500,0.11937600,0.55132833,0.04750000,0.02197925,0.00450000,0.07530000,0.13013333,0.46973750,0.02885000,0.14140000,0.00000000,0.25521750,-0.00250000,-0.18640000,0.14729750,-0.07660000,-0.19960000,0.42533750,-0.19310000,0.51305250,0.30000000,0.44324333,0.01450000,0.12710000,0.23896500,0.06190000,0.13430000,0.40268000,0.00150187,1
101978,0.18829300,0.34730000,0.31437200,0.32077667,0.05580000,0.01367600,-0.00340000,0.21040000,0.00712333,0.30855000,0.29025000,0.00800000,0.93100000,0.06529500,-0.21090000,-0.09220000,0.37905250,-0.00270000,-0.06150000,0.07725000,0.04490000,0.31577333,0.20000000,0.26532167,0.01770000,0.26820000,0.08332000,-0.03810000,0.23180000,0.19252100,3.10459621,0
101982,0.12069400,0.26693000,0.13511200,0.12114333,0.10170000,0.03179725,-0.01215000,0.24590000,0.18384667,0.19611750,0.05825000,0.14010000,0.22300000,0.07619500,-0.04270000,-0.00170000,0.08875750,0.04970000,0.22620000,0.11636750,0.08290000,0.30735583,0.30000000,0.16791167,0.03820000,-0.25520000,0.08700250,-0.06350000,0.14010000,0.16936100,0.74405625,0
101988,0.18497600,0.02833000,0.17897000,0.16639000,0.27130000,0.04987925,-0.08340000,0.24810000,0.19519333,0.18478167,0.03275000,0.11160000,0.78400000,0.11622500,0.13020000,0.11090000,0.07609000,-0.02550000,-0.08230000,0.17909500,-0.07020000,0.35331917,0.30000000,0.08611500,-0.09420000,-0.21190000,0.11682500,0.17710000,0.19590000,0.14481200,0.01863612,1
101991,0.23080200,0.69066500,0.23318600,0.01394500,0.11040000,0.02095325,-0.01425000,0.32090000,0.09633000,0.16499167,0.13145000,0.13800000,0.02000000,0.08245500,-0.20790000,-0.02460000,0.21676500,-0.12350000,0.29410000,0.13806500,-0.03240000,0.31211000,0.20000000,0.08037000,-0.06940000,0.01520000,0.07520000,0.04100000,0.24870000,0.07830200,1.10310135,0
101992,0.08414800,0.13887500,0.10689000,0.13739000,0.33710000,0.06439100,-0.02495000,0.20070000,0.07830667,0.14142583,0.10225000,0.13920000,0.98100000,0.05174500,0.09130000,0.01870000,0.10583750,0.17610000,0.20060000,0.10125500,0.13220000,0.18129167,0.20000000,0.12453167,-0.01550000,-0.16750000,0.07989750,0.32150000,-0.22710000,0.10667800,0.07389913,0
101997,0.20829000,0.36497500,0.32419600,0.13152833,0.24860000,0.04857850,-0.06325000,0.30430000,0.01568333,0.18284333,0.12330000,0.04140000,0.05000000,0.06865750,0.10340000,0.05670000,0.16932000,-0.16210000,0.20530000,0.06977500,0.00600000,0.20547917,0.20000000,0.15623500,0.17720000,-0.14870000,0.07620000,-0.07140000,0.27270000,0.12422100,1.49463244,0
101998,0.13733200,0.04076500,0.15365000,0.14708167,0.01870000,0.01944375,0.26820000,0.19880000,0.01630333,0.17020167,0.02200000,0.07530000,0.39900000,0.15394500,-0.12870000,-0.30570000,0.06775250,-0.24080000,0.15840000,0.12759500,0.13650000,0.22148083,0.20000000,0.10730167,-0.22240000,-0.02940000,0.12795750,-0.24120000,-0.16900000,0.11556300,0.01863612,1
102002,0.09681900,0.09586000,0.10309400,0.14664667,0.11450000,0.02748750,0.15630000,0.19310000,0.10958333,0.13835083,0.04095000,0.13380000,0.97500000,0.08428750,0.22990000,-0.12690000,0.06899750,0.17670000,-0.31250000,0.13590000,-0.26250000,0.15905583,0.20000000,0.09333333,0.24310000,-0.02530000,0.12176750,0.12860000,0.17720000,0.10470700,0.07135714,0
102003,0.14746900,0.04256500,0.19196800,0.14992833,0.32580000,0.11552275,-0.13250000,0.20880000,0.03516667,0.25616500,0.01940000,0.12280000,0.94800000,0.21527500,0.02830000,0.14690000,0.08354000,-0.03150000,-0.28140000,0.07319500,-0.30870000,0.32502917,0.20000000,0.21380667,-0.15670000,-0.13080000,0.14897250,0.16920000,0.13730000,0.18787300,0.00150270,1
102004,0.14491500,0.21409000,0.19132600,0.16258667,0.30130000,0.06405700,-0.08110000,0.24220000,0.06875333,0.19107917,0.01700000,0.13970000,0.99700000,0.21205500,0.14620000,0.24110000,0.07203750,0.08940000,-0.15180000,0.08174750,-0.30610000,0.25203750,0.20000000,0.12110333,0.23120000,-0.08940000,0.10749000,-0.07020000,0.08580000,0.11565800,0.07135714,0
102010,0.15332400,0.11007000,0.22239000,0.06988833,0.42670000,0.12003825,-0.20815000,0.29900000,0.08039333,0.18365500,0.07515000,0.14010000,0.94100000,0.09823000,0.23000000,-0.17340000,0.14759750,0.11510000,0.17890000,0.03796750,0.25420000,0.19205583,0.20000000,0.14192500,0.27580000,-0.00380000,0.09224750,-0.15090000,-0.29420000,0.12205500,0.00150270,1
102016,0.14116400,0.20393000,0.17122000,0.24917333,0.06900000,0.05446200,0.06240000,0.16860000,0.01042667,0.29910250,0.07705000,0.14030000,0.00000000,0.10866500,0.15390000,0.23110000,0.16746750,0.23600000,-0.25000000,0.16560250,-0.31230000,0.28495417,0.20000000,0.22285833,0.15140000,-0.07850000,0.28688500,0.08240000,0.10690000,0.24846900,0.00150270,1
102026,0.11949700,0.02047000,0.15810400,0.04725000,0.14620000,0.02143425,0.55970000,0.27950000,0.09596000,0.12491167,0.04770000,0.05740000,0.00000000,0.08822000,-0.21520000,-0.08130000,0.08420250,-0.09500000,0.17110000,0.04406750,0.18790000,0.16034250,0.20000000,0.07986500,-0.26940000,-0.27740000,0.08251500,-0.41560000,-0.11610000,0.08092400,0.07135714,0
102028,0.12749300,0.06021500,0.19275000,0.36715667,0.05700000,0.01565825,0.21645000,0.10450000,0.08818000,0.31820333,0.05615000,0.12470000,0.00000000,0.21843250,0.03460000,0.21560000,0.24541000,0.10430000,0.13760000,0.12333250,0.15490000,0.36343000,0.20000000,0.23153000,0.18150000,-0.13540000,0.14347250,0.23850000,-0.14870000,0.19630700,0.00150270,1
102029,0.08469500,0.23121000,0.13592000,0.26498500,0.17160000,0.03942600,-0.03680000,0.08670000,0.07438000,0.26394667,0.05615000,0.05310000,0.39700000,0.19078500,0.07480000,0.17020000,0.21426000,0.08280000,0.25650000,0.04371250,0.12850000,0.33682417,0.20000000,0.17425500,-0.08550000,-0.13120000,0.12541250,0.08610000,-0.03230000,0.15471800,0.74405625,0
102031,0.13001400,0.05305500,0.17513000,0.10314333,0.59080000,0.28320100,-0.42450000,0.29190000,0.00977000,0.17587583,0.09640000,0.13540000,0.88100000,0.07928250,0.15930000,0.05160000,0.15284000,0.15340000,-0.24030000,0.07719500,-0.21580000,0.20992000,0.20000000,0.10450333,-0.24690000,0.00920000,0.13875000,0.34380000,0.20830000,0.11820300,0.00150270,1
102033,0.10223800,0.06987500,0.11499400,0.17657333,0.09870000,0.02162550,0.01330000,0.20500000,0.07228333,0.15489667,0.09695000,0.12200000,0.00200000,0.05720500,0.02490000,0.29960000,0.11092000,-0.05040000,0.10880000,0.16045500,0.13510000,0.25228500,0.20000000,0.10524167,0.02200000,-0.14190000,0.13870000,0.12070000,-0.24330000,0.11862600,0.30979516,0
102037,0.09841500,0.04327000,0.15143600,0.40301000,0.13710000,0.06638050,-0.01920000,0.07490000,0.24727667,0.45256583,0.02140000,0.07640000,0.88000000,0.39509250,0.04750000,-0.06320000,0.16913750,0.05400000,-0.13790000,0.09151000,-0.15530000,0.55945667,0.30000000,0.24049500,0.09800000,0.25300000,0.31509250,-0.03910000,0.11520000,0.31738800,0.06406078,0
102043,0.11461300,0.03456500,0.16665000,0.13351333,0.00080000,0.02619975,0.29305000,0.17930000,0.18227667,0.21724667,0.04090000,0.07450000,0.00000000,0.14130000,0.11310000,-0.08780000,0.11553750,0.04500000,0.07810000,0.05116250,0.10060000,0.27640250,0.30000000,0.10655667,0.24170000,0.30740000,0.11962500,0.24250000,-0.08060000,0.15796200,0.42889760,0
102049,0.10102100,0.00222000,0.14019800,0.36913000,0.03480000,0.01705000,0.06655000,0.13190000,0.05702667,0.38492667,0.24895000,0.10040000,0.00000000,0.06403500,-0.07620000,-0.03880000,0.31883500,-0.07190000,0.09310000,0.21530750,0.09270000,0.40751833,0.30000000,0.24158167,0.09930000,-0.22670000,0.19949250,0.13410000,-0.26490000,0.30876400,0.07135714,0
102056,0.09799000,0.10289500,0.14482200,0.29530500,0.14700000,0.03877975,0.00895000,0.10000000,0.07284333,0.29478500,0.03010000,0.05190000,0.08300000,0.22514500,-0.10450000,0.02470000,0.13552750,-0.20060000,0.05220000,0.08869500,0.00480000,0.39585417,0.20000000,0.27803333,-0.15830000,-0.27280000,0.10663000,-0.01130000,0.27140000,0.20947300,0.30716952,0
102057,0.12116500,0.27384500,0.17501800,0.01724333,0.02540000,0.01871850,0.00510000,0.31490000,0.01130667,0.13032750,0.08740000,0.11330000,0.00000000,0.07486000,-0.01650000,-0.26510000,0.13085500,0.07520000,0.03610000,0.03602250,-0.26300000,0.21107500,0.20000000,0.06653500,-0.02160000,0.21890000,0.08546500,-0.04700000,-0.12460000,0.07410700,0.00265331,1
102061,0.12709200,0.14382000,0.16141600,0.21653833,0.52340000,0.18770025,-0.34245000,0.16680000,0.00460000,0.19165250,0.03755000,0.14140000,0.92600000,0.14133500,0.17970000,0.10390000,0.10618500,0.06990000,0.22950000,0.12378000,0.16570000,0.27923167,0.20000000,0.16821833,0.25890000,-0.14440000,0.07511250,-0.26450000,-0.18370000,0.13097600,0.00150270,1
102062,0.30975000,0.85978500,0.40437800,0.07154167,0.29910000,0.03694250,-0.07470000,0.30650000,0.09195333,0.18574083,0.15680000,-0.10010000,0.17900000,0.09611000,-0.08880000,0.01310000,0.30144250,0.11000000,0.24640000,0.15327000,-0.06780000,0.13014750,0.20000000,0.05425333,-0.23570000,0.31350000,0.07828750,0.06340000,-0.08810000,0.06386700,0.74405625,0
102064,0.09725900,0.22613500,0.09498000,0.14193500,0.28820000,0.05925975,-0.07180000,0.18970000,0.00063333,0.14678583,0.05880000,0.13870000,0.64800000,0.06652500,-0.13890000,-0.30870000,0.07825000,-0.17500000,0.13340000,0.12950000,0.25270000,0.12531250,0.20000000,0.13241667,-0.22420000,-0.02920000,0.09695750,0.06400000,-0.19590000,0.11823300,0.00150270,1
102068,0.26572400,0.09352500,0.38261800,0.26277833,0.03230000,0.01588625,0.01545000,0.23590000,0.08592667,0.26143500,0.07450000,0.07210000,0.00300000,0.17091250,0.05540000,-0.08940000,0.25463000,-0.09670000,0.09090000,0.16130500,0.11410000,0.33260000,0.20000000,0.14572000,-0.04180000,-0.23480000,0.14018250,-0.07410000,-0.30980000,0.14350500,1.15913514,0
102070,0.16240800,0.03223500,0.23557200,0.03456500,0.09420000,0.01774350,0.61730000,0.39730000,0.09342000,0.10572583,0.07755000,-0.14060000,0.00000000,0.06191000,0.16730000,-0.05840000,0.09602500,-0.08540000,0.26330000,0.01885500,0.22520000,0.16070500,0.20000000,0.05595333,-0.30740000,0.16030000,0.07531000,-0.40160000,-0.17410000,0.06369600,2.75437548,0
102073,0.07449500,0.18214000,0.04656600,0.36998167,0.30580000,0.12201750,-0.09335000,0.07240000,0.02003000,0.24946833,0.06680000,0.12140000,0.59300000,0.06996250,0.08380000,0.22490000,0.09346500,0.04190000,0.16590000,0.40126500,0.21340000,0.27842750,0.20000000,0.26575167,0.08420000,-0.08000000,0.18635000,-0.22160000,-0.16310000,0.23399100,0.30979516,0
102074,0.15965200,0.08216000,0.21445800,0.24666167,0.23870000,0.08968500,0.03710000,0.16510000,0.22373333,0.38259417,0.05425000,0.07410000,0.35600000,0.17268250,-0.01310000,0.08660000,0.18736000,0.02590000,0.24700000,0.16780500,0.27030000,0.32270833,0.30000000,0.24074167,0.02780000,-0.04630000,0.17176250,0.26650000,0.31070000,0.31509600,0.74405625,0
102081,0.28017900,0.00202500,0.18915600,0.34331833,0.15280000,0.05939725,-0.02650000,0.25950000,0.15145667,0.35829500,0.03110000,0.10070000,0.84400000,0.13816500,-0.09990000,-0.31360000,0.08593000,0.00840000,-0.07770000,0.51719000,-0.07820000,0.34981250,0.30000000,0.38704000,-0.09950000,0.25400000,0.09934500,0.05330000,0.03830000,0.34031700,0.74405625,0
102083,0.03674400,0.19405000,0.05297600,0.09476333,0.13470000,0.02465775,-0.01495000,0.09220000,0.15005000,0.15975417,0.04385000,-0.00130000,0.00000000,0.07925500,0.15130000,0.30860000,0.06952250,0.16670000,-0.22880000,0.04648750,0.19500000,0.20812917,0.30000000,0.08389333,0.02800000,-0.00170000,0.12092500,-0.10670000,0.14180000,0.13219400,0.88077718,0
102085,0.08613200,0.01569500,0.10745200,0.11389167,0.10330000,0.05526275,0.08225000,0.23640000,0.11854667,0.21388583,0.09895000,0.08760000,0.00100000,0.05147500,-0.01830000,-0.27960000,0.10187000,-0.00650000,0.11260000,0.10349250,0.10500000,0.30900667,0.20000000,0.18218167,-0.08660000,-0.10690000,0.21504250,-0.18990000,0.23160000,0.19532600,0.35853999,0
102086,0.11489800,0.06957000,0.08630800,0.33348333,0.02230000,0.01606125,0.06660000,0.11560000,0.29169667,0.33302500,0.02635000,0.12320000,0.00000000,0.13557000,-0.00750000,0.15080000,0.07148250,-0.02460000,0.26520000,0.33985000,0.24280000,0.40604250,0.30000000,0.24567000,-0.12710000,-0.06070000,0.12926500,-0.10480000,0.00120000,0.31681000,0.08341403,0
102091,0.09341700,0.08167500,0.11712200,0.13173500,0.00340000,0.00938275,0.26025000,0.18300000,0.00224667,0.13110750,0.04435000,0.13390000,0.00000000,0.09469500,0.19540000,-0.11220000,0.08398750,0.13400000,-0.28460000,0.08592000,-0.23610000,0.12691917,0.20000000,0.07709000,0.22990000,0.14050000,0.09900250,0.22650000,0.05890000,0.08585500,0.00265331,1
102096,0.12648100,0.02153500,0.15047200,0.08175667,0.64140000,0.35169125,-0.48640000,0.24180000,0.10935667,0.16250917,0.03820000,0.07940000,0.97700000,0.11159250,0.02910000,-0.10160000,0.08527250,-0.02530000,0.29110000,0.09675750,0.27920000,0.27120167,0.20000000,0.11725167,0.24600000,0.09220000,0.11478250,-0.39540000,-0.22570000,0.11626500,0.00150270,1
102098,0.12354000,0.07042000,0.11966800,0.41778500,0.59830000,0.59668150,-0.42750000,0.14570000,0.01689667,0.30094333,0.14835000,0.14000000,0.96300000,0.05504000,0.13730000,0.13780000,0.16330250,-0.00490000,0.16950000,0.41062500,0.15590000,0.33408083,0.20000000,0.33811333,0.23590000,-0.13430000,0.17732000,-0.36250000,-0.23300000,0.27379500,0.00150270,1
102099,0.08982900,0.37480000,0.13691000,0.06839667,0.28430000,0.19002875,-0.10020000,0.20490000,0.08503000,0.39661833,0.14570000,-0.14120000,0.28300000,0.05630500,-0.23840000,-0.13520000,0.16405250,-0.17280000,0.05900000,0.06596000,0.28330000,0.42729583,0.30000000,0.33616333,0.12900000,-0.20500000,0.37261750,-0.15540000,0.13260000,0.38780000,0.07389913,0
102102,0.15539100,0.10763500,0.18149800,0.13025333,0.44240000,0.26656425,-0.24445000,0.28870000,0.07696667,0.27252667,0.06580000,-0.12500000,0.87200000,0.09967500,-0.08880000,0.01030000,0.13115500,-0.08860000,-0.27840000,0.16858500,0.31350000,0.30549250,0.20000000,0.23129833,-0.22790000,-0.03260000,0.23980500,0.21450000,0.25130000,0.23470100,0.00150270,1
102109,0.13012400,0.16628500,0.14829800,0.14812000,0.22240000,0.05741625,-0.04195000,0.25200000,0.15568667,0.20698000,0.06455000,0.13780000,0.76500000,0.08314000,-0.05900000,-0.20460000,0.10733750,-0.00550000,0.17750000,0.15600000,0.24290000,0.29435833,0.20000000,0.22799000,0.04810000,-0.08160000,0.08848000,-0.17430000,0.31010000,0.17218600,0.00150270,1
102122,0.09214900,0.16313000,0.11281800,0.11793167,0.26940000,0.05263125,-0.08960000,0.20180000,0.09981667,0.15069333,0.03590000,0.14110000,0.16800000,0.09820000,-0.20480000,0.08220000,0.07052750,-0.19500000,0.28380000,0.08435500,0.17240000,0.21358583,0.20000000,0.13438833,-0.14970000,-0.08390000,0.08177250,0.11970000,0.27340000,0.11334100,0.74405625,0
102125,0.06269700,0.09734000,0.08702200,0.24003167,0.27370000,0.08152225,-0.01230000,0.08370000,0.00793333,0.26956583,0.02325000,0.01840000,0.96500000,0.18536500,-0.02010000,-0.10280000,0.08626000,-0.10180000,-0.12110000,0.10479250,-0.17280000,0.28324833,0.30000000,0.21519667,-0.26440000,0.22420000,0.13349500,0.00930000,0.07600000,0.21482900,0.06406078,0
102129,0.08300200,0.06880500,0.11661600,0.05918000,0.25290000,0.03762200,-0.07040000,0.26670000,0.00324333,0.12051917,0.09070000,0.13840000,0.96400000,0.05524500,0.04190000,0.31270000,0.10021250,0.06800000,-0.05020000,0.03147500,-0.11250000,0.11557417,0.20000000,0.08477833,-0.08280000,0.28050000,0.07893250,0.17010000,0.04390000,0.08244000,0.00150270,1
102131,0.13118600,0.15694000,0.17775000,0.27026667,0.15880000,0.04265250,0.04375000,0.19340000,0.05902333,0.28523333,0.16495000,0.12890000,0.99200000,0.07215750,-0.06050000,-0.07960000,0.23802500,-0.11570000,0.10580000,0.17707500,0.06740000,0.38696417,0.30000000,0.23655167,-0.04330000,-0.22570000,0.10645000,-0.20210000,0.26500000,0.21820700,0.74405625,0
102132,0.51479700,0.42321500,0.81429200,0.02581833,0.17190000,0.04236700,0.03285000,0.49180000,0.15294333,0.22368833,0.09535000,-0.13290000,0.00000000,0.09000250,0.22610000,-0.13670000,0.17160250,-0.19190000,0.23240000,0.06771500,-0.04320000,0.22624250,0.30000000,0.10879333,0.03220000,0.04580000,0.14801750,0.20410000,0.29520000,0.16378300,1.42476145,0
102135,0.11041500,0.30512500,0.13399600,0.12701833,0.00480000,0.01922225,0.05970000,0.22300000,0.08990000,0.16518417,0.03380000,0.11980000,0.00000000,0.11293000,-0.17650000,-0.20160000,0.07629500,-0.19810000,0.02030000,0.10699750,-0.18070000,0.29099083,0.20000000,0.10370000,-0.11170000,0.24220000,0.15077750,-0.10690000,0.11070000,0.12253100,0.00265331,1
102137,0.07932100,0.13008000,0.09703600,0.06763833,0.08680000,0.02228000,0.41965000,0.28410000,0.12724000,0.10888000,0.06600000,-0.13870000,0.14800000,0.05322750,-0.21760000,0.13970000,0.07026250,-0.23300000,-0.20500000,0.09648250,-0.12380000,0.12498750,0.20000000,0.06900833,-0.33630000,0.17280000,0.09964000,-0.24950000,-0.11190000,0.08126000,0.07389913,0
102140,0.13461100,0.20789500,0.16860000,0.38548667,0.32560000,0.15499700,-0.13240000,0.11270000,0.00254333,0.36151000,0.02495000,0.14020000,0.99800000,0.27601250,0.02410000,0.22940000,0.13783500,-0.01190000,-0.29220000,0.21605000,0.27500000,0.38312833,0.20000000,0.31144167,0.15760000,-0.01310000,0.20351750,-0.16810000,-0.13060000,0.26827200,0.00150270,1
102141,0.13148700,0.12942000,0.19114000,0.14717833,0.22680000,0.05273750,-0.05085000,0.21710000,0.01420333,0.20429833,0.08985000,0.13580000,0.90500000,0.10027250,0.00530000,0.11820000,0.18020000,-0.01620000,-0.29410000,0.07097750,0.27620000,0.25758750,0.20000000,0.11225667,-0.16530000,-0.12610000,0.16404000,0.06150000,0.04220000,0.13297000,0.00150270,1
102143,0.07642700,0.06268500,0.08933800,0.11323000,0.29460000,0.05577600,0.06610000,0.20460000,0.07690000,0.13711583,0.07095000,0.12740000,0.83600000,0.05476750,-0.10960000,0.25880000,0.07771000,-0.12450000,0.05470000,0.10102250,0.09030000,0.15577750,0.20000000,0.13468333,-0.03960000,-0.13860000,0.07684000,-0.33420000,0.29790000,0.11154700,0.30979516,0
102144,0.08891900,0.07079000,0.12317200,0.29055667,0.10070000,0.02473875,0.00820000,0.09590000,0.16868667,0.30721917,0.02745000,0.05070000,0.71400000,0.21130000,-0.12220000,0.29980000,0.11603750,-0.03540000,-0.28770000,0.12875750,-0.25860000,0.36032083,0.30000000,0.20348833,-0.11500000,0.05150000,0.15766000,-0.01430000,0.02790000,0.23772800,0.08341403,0
102146,0.06641200,0.26230000,0.09459000,0.12560500,0.23450000,0.05334250,-0.04175000,0.14670000,0.06953333,0.17424333,0.11915000,0.08090000,0.43600000,0.05592750,0.23060000,0.30060000,0.13325250,0.18030000,0.16280000,0.06548750,-0.30980000,0.23481417,0.20000000,0.14885667,-0.04380000,-0.10710000,0.11026250,0.19080000,0.09750000,0.13342000,1.45484847,0
102147,0.08201800,0.05563500,0.08967800,0.22694500,0.15460000,0.05825550,-0.02105000,0.10800000,0.30770667,0.30151583,0.02620000,0.07380000,0.59600000,0.14991250,-0.03450000,-0.10620000,0.07855750,-0.01360000,-0.21220000,0.18169750,-0.23550000,0.41174917,0.30000000,0.21484667,0.11930000,-0.00230000,0.18229750,-0.03530000,0.19160000,0.27043200,0.06406078,0
102148,0.15843900,0.09428000,0.17840400,0.24304500,0.12270000,0.04029100,-0.01625000,0.23640000,0.10507667,0.33942333,0.13080000,0.07020000,0.90700000,0.05188750,-0.16160000,0.21910000,0.13574500,0.04180000,-0.28860000,0.21830750,-0.26120000,0.49119667,0.30000000,0.18536167,-0.03870000,0.09910000,0.18143750,0.08400000,-0.03110000,0.33225500,0.01863612,1
102151,0.12785800,0.01394000,0.08967800,0.41515167,0.04050000,0.02354600,0.03000000,0.10440000,0.07883667,0.29906583,0.02145000,0.10450000,0.01000000,0.17138250,0.04840000,-0.27910000,0.07349250,0.03660000,-0.17540000,0.44027500,-0.17920000,0.31329167,0.20000000,0.26327333,0.10030000,0.08090000,0.25741250,0.05990000,0.13640000,0.26092900,0.00265331,1
102159,0.12190400,0.07036500,0.16657600,0.11456500,0.08110000,0.05736150,0.14390000,0.22780000,0.07078667,0.25808333,0.07260000,0.12910000,0.00000000,0.09109750,-0.00290000,-0.14020000,0.13228000,-0.06880000,0.27010000,0.06511000,0.30820000,0.33447583,0.20000000,0.19440167,0.13390000,-0.05990000,0.25926750,0.21500000,0.18940000,0.22034800,0.07389913,0
102164,0.08045400,0.24086000,0.12372800,0.24300833,0.34210000,0.17127225,-0.14620000,0.12510000,0.21991333,0.37735667,0.23275000,0.02170000,0.58300000,0.05582250,-0.22550000,-0.02900000,0.25985000,-0.12120000,-0.09800000,0.08838500,-0.17980000,0.38775917,0.30000000,0.25604667,0.17550000,0.17590000,0.23540500,-0.16660000,-0.19110000,0.32656000,0.74405625,0
102170,0.12903100,0.09025500,0.18937600,0.15896833,0.17650000,0.02609875,0.12265000,0.23080000,0.13097333,0.18503583,0.14765000,0.13010000,0.95400000,0.06870250,0.10190000,-0.23180000,0.20290750,0.19880000,-0.02230000,0.05984750,-0.06350000,0.18581250,0.30000000,0.08491167,0.26800000,-0.29590000,0.08091000,0.09150000,0.16820000,0.11340000,2.35604603,0
102172,0.12152100,0.03536000,0.13770200,0.44891833,0.01070000,0.05564925,0.04470000,0.09160000,0.03475667,0.40865667,0.05540000,0.12000000,0.00000000,0.17458750,0.11410000,-0.04700000,0.19350000,0.03110000,-0.08560000,0.31316000,-0.07840000,0.49548583,0.20000000,0.49806667,0.08930000,0.22760000,0.11078000,0.10010000,-0.15370000,0.34315200,0.00150270,1
102175,0.11806600,0.15401500,0.19114600,0.15059833,0.16050000,0.02607500,0.04410000,0.21200000,0.07523667,0.17297000,0.18545000,-0.04400000,0.74100000,0.05355250,-0.10110000,-0.00260000,0.19865500,0.07960000,-0.11350000,0.01599750,-0.26380000,0.22083167,0.20000000,0.09652667,0.04330000,0.15690000,0.12191250,0.20380000,0.23540000,0.10668100,0.74405625,0
102189,0.11836100,0.36656500,0.14050200,0.29910167,0.25860000,0.08423425,0.26535000,0.14490000,0.15022667,0.25477917,0.10150000,0.13640000,0.49700000,0.09093000,0.20550000,-0.31380000,0.18462000,0.15600000,-0.17760000,0.24028000,-0.26760000,0.29628167,0.20000000,0.20354500,0.13490000,0.05530000,0.18347000,0.39350000,0.16540000,0.19551500,0.00150270,1
102193,0.05304500,0.42101000,0.09659200,0.05792833,0.12720000,0.01285200,0.16440000,0.13480000,0.10116333,0.11046667,0.10350000,-0.00400000,0.02300000,0.05776250,0.20310000,0.11670000,0.11959750,0.06830000,0.11580000,0.09328250,-0.21520000,0.13806167,0.20000000,0.05166833,0.25580000,-0.26660000,0.07653750,0.12860000,-0.18710000,0.06161600,2.39414162,0
102198,0.14126100,0.05519500,0.14546200,0.26272833,0.36160000,0.19637825,-0.09380000,0.14970000,0.02228667,0.33834250,0.02285000,0.11920000,0.99200000,0.19271000,0.08220000,-0.28860000,0.08814250,0.13460000,-0.14840000,0.20271500,-0.16910000,0.36519750,0.20000000,0.37138167,-0.06280000,0.08270000,0.17710250,0.29880000,-0.28150000,0.29366900,0.00150270,1
102199,0.08421900,0.13110000,0.09928600,0.30376000,0.24050000,0.10677375,-0.03555000,0.09890000,0.01423333,0.30311333,0.02330000,0.08680000,0.37000000,0.17926000,0.05390000,0.01220000,0.08360250,-0.03420000,0.05720000,0.20084250,0.00600000,0.33468500,0.20000000,0.25345000,0.20600000,-0.23710000,0.26629750,-0.03450000,0.23210000,0.25859000,0.30979516,0
102201,0.11332700,0.18141500,0.09738200,0.30793000,0.55720000,0.56628250,-0.37835000,0.12250000,0.19305667,0.35784250,0.06810000,0.14100000,0.93400000,0.08820500,0.17330000,0.23720000,0.12017250,0.11710000,0.12840000,0.28298250,0.17810000,0.43270583,0.30000000,0.27687833,-0.23450000,-0.18550000,0.29244250,0.32270000,0.02270000,0.34606000,0.00150270,1
102202,0.13146400,0.06637500,0.16039800,0.20149667,0.03630000,0.03298475,0.01135000,0.16220000,0.00356667,0.24010333,0.04145000,0.07420000,0.00000000,0.15189750,0.22900000,0.12550000,0.12588250,0.22900000,0.28770000,0.16619250,0.31070000,0.26831250,0.20000000,0.24448000,-0.03290000,-0.05180000,0.07581000,-0.06920000,-0.31340000,0.17701200,0.01863612,1
102204,0.11332200,0.28685000,0.15854000,0.08511167,0.49980000,0.23517125,-0.18995000,0.28970000,0.19580333,0.28016667,0.04890000,0.13400000,0.94200000,0.08143500,-0.07430000,0.05010000,0.07960500,-0.21760000,0.30190000,0.08752500,0.09520000,0.37952417,0.30000000,0.14177667,0.09350000,0.03030000,0.17264000,-0.40630000,-0.27580000,0.27178500,0.00150270,1
102205,0.12937300,0.03114500,0.18356000,0.13728833,0.65730000,0.33361125,-0.52775000,0.19690000,0.03423000,0.17566083,0.05800000,0.11490000,0.97300000,0.12783000,-0.00050000,-0.14250000,0.14831000,-0.00510000,0.05430000,0.06332000,0.03820000,0.24773833,0.20000000,0.09240833,-0.27910000,0.22880000,0.11223000,0.37820000,-0.25040000,0.10033700,0.00150270,1
102217,0.08219600,0.04004000,0.08161800,0.27629167,0.10860000,0.04695650,0.19185000,0.11720000,0.14292333,0.26068750,0.08110000,0.11810000,0.13700000,0.06750000,-0.03640000,-0.13780000,0.10951750,-0.12670000,-0.06310000,0.25017000,-0.07520000,0.35818917,0.30000000,0.26886667,-0.25760000,0.22600000,0.10547250,-0.14900000,-0.13180000,0.24201800,0.06406078,0
102221,0.12582000,0.15741000,0.16806200,0.21795000,0.56960000,0.27415175,-0.40440000,0.15750000,0.01576000,0.20484083,0.05000000,0.14060000,0.98500000,0.14343750,-0.11100000,0.22800000,0.14340750,-0.05040000,-0.25490000,0.11294500,0.31060000,0.21052500,0.20000000,0.13470833,0.26920000,-0.02910000,0.12561500,-0.30050000,0.02530000,0.13107100,0.00150270,1
102222,0.10152000,0.20558000,0.08756000,0.23205667,0.06890000,0.02077425,0.09735000,0.14050000,0.16626333,0.23385083,0.06780000,0.14050000,0.00000000,0.07070500,-0.08490000,0.20180000,0.09589500,-0.02860000,-0.29780000,0.21561750,0.25740000,0.24605750,0.30000000,0.12144333,0.10930000,-0.12860000,0.13716500,0.17810000,-0.01590000,0.21398100,0.00265331,1
102226,0.07504400,0.11072000,0.09235000,0.07503333,0.15810000,0.06421750,-0.02675000,0.25540000,0.06197000,0.27878583,0.06100000,0.13980000,0.28200000,0.05390000,0.09350000,0.00480000,0.06573750,0.05900000,0.25790000,0.07514500,0.17690000,0.34880667,0.30000000,0.18408167,0.04910000,-0.15640000,0.21124500,-0.10900000,0.14390000,0.28668800,0.30979516,0
102229,0.10049500,0.24256500,0.14774200,0.05735167,0.39820000,0.05865700,-0.18095000,0.24230000,0.00865000,0.11420833,0.03630000,-0.11230000,0.99800000,0.10645500,0.15970000,-0.23050000,0.07724500,0.06800000,-0.00620000,0.04775750,0.29670000,0.18772750,0.20000000,0.05474333,0.25790000,0.20170000,0.07680750,-0.14030000,0.01030000,0.06356900,0.01863612,1
102234,0.11189400,0.22740500,0.14020000,0.21927833,0.59550000,0.29860750,-0.43620000,0.17320000,0.00751667,0.19677833,0.01650000,0.12920000,0.94200000,0.19907750,-0.01180000,0.08020000,0.06574000,-0.03560000,0.25170000,0.12858750,0.11840000,0.20868917,0.20000000,0.14648667,0.33510000,-0.19150000,0.10578750,-0.26040000,-0.21170000,0.13020700,0.00150270,1
102247,0.17168200,0.10746500,0.25951800,0.21178833,0.13840000,0.05551250,0.02265000,0.21890000,0.00839000,0.27506750,0.12925000,0.14050000,1.00000000,0.08371750,-0.09150000,-0.08810000,0.21642000,0.09560000,-0.20180000,0.05578750,-0.15240000,0.38557083,0.20000000,0.24126667,0.02730000,0.19050000,0.16316250,0.16580000,-0.01410000,0.21002500,0.06406078,0
102250,0.07737100,0.24724000,0.08732800,0.24266833,0.06760000,0.01800900,0.07180000,0.11110000,0.08120333,0.18512667,0.02765000,0.10070000,0.00100000,0.13883000,0.22850000,0.30910000,0.07679750,0.21340000,0.19900000,0.18367750,0.30850000,0.21255750,0.20000000,0.14046667,0.15830000,-0.06450000,0.12905250,0.09070000,0.01380000,0.13590100,0.30097511,0
102253,0.15797800,0.13940500,0.22346000,0.17825667,0.22840000,0.09567100,-0.06515000,0.22460000,0.07315333,0.30036167,0.09985000,0.13340000,0.84800000,0.10954750,-0.05940000,0.16880000,0.21876750,-0.05070000,-0.05560000,0.09428000,-0.00660000,0.36461583,0.20000000,0.19221667,-0.11860000,-0.18890000,0.28444750,0.10990000,0.21740000,0.22910900,0.00150270,1
102257,0.13238500,0.16141500,0.17078600,0.16749500,0.30210000,0.08313075,-0.04630000,0.24590000,0.34188333,0.20662417,0.10215000,0.03230000,0.95900000,0.05213500,0.07220000,-0.23400000,0.10652000,-0.14740000,-0.12340000,0.14812500,-0.05800000,0.16850333,0.30000000,0.11864833,0.03460000,0.17620000,0.16986000,-0.26750000,-0.11100000,0.18448700,1.36817306,0
102259,0.10434100,0.02803500,0.14323600,0.19334000,0.00180000,0.02148675,0.03290000,0.21430000,0.08593667,0.22673000,0.17665000,0.10960000,0.00000000,0.05369000,-0.04360000,0.24870000,0.18966250,-0.01140000,-0.16780000,0.12315250,-0.17690000,0.18231583,0.30000000,0.14462833,0.08210000,0.15070000,0.12552250,0.08020000,0.01620000,0.17473500,1.45484847,0
102261,0.09820400,0.02277000,0.11732200,0.18319833,0.19520000,0.06323850,-0.03645000,0.17090000,0.12675667,0.23976167,0.07220000,0.10890000,0.05000000,0.07483250,-0.21470000,0.02570000,0.10807750,-0.12140000,-0.11740000,0.14271250,-0.10820000,0.26219500,0.30000000,0.15204167,0.14500000,0.16680000,0.21627000,-0.05030000,-0.25990000,0.21455100,0.30716952,0
102262,0.11901300,0.09195000,0.12357200,0.19822500,0.00150000,0.01839225,0.00055000,0.16700000,0.07717333,0.19339500,0.02090000,0.13380000,0.00000000,0.15877000,0.18970000,0.26700000,0.06638750,0.14950000,-0.19930000,0.15067250,-0.24570000,0.24748750,0.20000000,0.14920333,0.01130000,0.08640000,0.13122000,0.00980000,-0.02300000,0.14201000,0.00265331,1
102267,0.08713400,0.19022000,0.07296600,0.32513667,0.16890000,0.07873900,0.07450000,0.09580000,0.34745667,0.35601583,0.05670000,0.13970000,0.63200000,0.09217000,0.06190000,0.30100000,0.10451500,0.09120000,-0.23610000,0.31170000,-0.28940000,0.40801000,0.30000000,0.25286000,0.23290000,-0.04650000,0.22127500,0.06400000,0.20690000,0.34854500,0.00150187,1
102271,0.11576500,0.32620500,0.10742000,0.60896667,0.18550000,0.06298550,-0.03045000,0.06610000,0.00751333,0.49083000,0.19985000,0.13900000,0.94600000,0.10347500,0.03370000,-0.16170000,0.41354000,0.02830000,-0.22750000,0.42210000,-0.18820000,0.51753167,0.20000000,0.58448500,-0.04260000,0.10310000,0.07875000,0.14290000,0.21680000,0.38219000,0.00150270,1
102272,0.13834900,0.53746000,0.23197400,0.07869833,0.35430000,0.14270225,-0.15545000,0.28010000,0.23829667,0.31660000,0.17800000,-0.14140000,0.20400000,0.05437750,0.01200000,0.12320000,0.19359750,0.20620000,-0.30330000,0.12154750,-0.08980000,0.30835167,0.30000000,0.18217833,0.16020000,0.26180000,0.20636250,-0.19410000,0.02260000,0.28073000,1.38343221,0
102283,0.07279600,0.24261500,0.11593000,0.08745000,0.33090000,0.07637725,-0.09525000,0.15620000,0.23244667,0.16933250,0.06655000,-0.08160000,0.75800000,0.08624750,0.06510000,-0.16460000,0.11482250,0.00410000,-0.02080000,0.03228000,0.31060000,0.14222417,0.20000000,0.12083833,0.25670000,0.24510000,0.12566750,-0.07420000,0.21220000,0.12277100,0.00150270,1
102284,0.06339200,0.24908500,0.09805800,0.07532833,0.07700000,0.02206150,0.00725000,0.12800000,0.00818000,0.14418917,0.03395000,-0.11200000,0.90000000,0.12278250,0.08130000,-0.11610000,0.08339250,0.04170000,0.00570000,0.06405000,0.20960000,0.22145500,0.20000000,0.10041000,0.09270000,0.21970000,0.07577750,0.01570000,-0.16960000,0.09055700,0.74405625,0
102285,0.12571500,0.07378500,0.13880000,0.55241000,0.30500000,0.12919350,-0.00115000,0.10870000,0.00822000,0.40701167,0.14265000,0.01820000,1.00000000,0.08996000,0.04220000,-0.24280000,0.25661750,0.15090000,-0.24600000,0.48336000,-0.25650000,0.34873417,0.20000000,0.51216833,-0.00080000,0.05150000,0.10620750,0.30420000,0.15930000,0.34978400,0.00150270,1
102288,0.03226900,0.20284000,0.04558600,0.10509667,0.13550000,0.01540175,-0.02275000,0.08760000,0.00656667,0.10245167,0.06810000,0.01140000,0.56100000,0.05520000,-0.01150000,-0.19700000,0.07518750,0.05760000,-0.25100000,0.06947750,-0.09540000,0.10682083,0.20000000,0.06003667,-0.06170000,0.17090000,0.08691000,0.07380000,0.08220000,0.07078700,2.00731907,0
102296,0.35039300,0.25182500,0.51861800,0.03930833,0.24700000,0.03912175,-0.07625000,0.49030000,0.13766667,0.11970750,0.06715000,-0.09320000,0.05600000,0.05801250,-0.24540000,0.17610000,0.07790250,0.20720000,-0.01250000,0.05092500,0.29550000,0.17960000,0.20000000,0.07724500,0.12120000,-0.04650000,0.10734000,-0.12580000,-0.21650000,0.08928300,1.28803072,0
102298,0.12962900,0.01573500,0.17898600,0.22476000,0.34560000,0.09822650,-0.12225000,0.16830000,0.00113667,0.20169667,0.03955000,0.12300000,0.96100000,0.13441500,0.12540000,0.05540000,0.10634500,-0.03920000,0.02000000,0.10062250,0.02760000,0.17576750,0.20000000,0.14688167,-0.24630000,-0.24750000,0.14400750,0.09930000,0.30220000,0.14573200,0.00150270,1
102303,0.41548300,0.23126500,0.47028800,0.27671667,0.35290000,0.14681075,-0.14045000,0.36330000,0.10611000,0.25566333,0.09285000,0.01630000,0.63400000,0.07215750,-0.18860000,-0.08540000,0.13400250,0.17440000,-0.10100000,0.22995750,-0.03390000,0.42276417,0.20000000,0.26547833,0.23160000,0.28100000,0.16261250,-0.12130000,0.17180000,0.22433200,0.08341403,0
102309,0.19510400,0.29376000,0.28914200,0.11913667,0.14030000,0.01787925,0.08185000,0.28310000,0.03263000,0.19315833,0.09955000,0.14140000,0.06600000,0.12494500,0.08740000,0.29600000,0.24875750,0.03010000,-0.05500000,0.05830500,-0.18620000,0.14036167,0.20000000,0.06863000,0.21610000,0.22790000,0.10282750,0.07570000,0.14510000,0.08230900,0.00265331,1
102311,0.12070100,0.22111000,0.12092800,0.27209167,0.25150000,0.29563625,-0.05030000,0.15240000,0.00447333,0.60625500,0.01940000,0.13900000,0.50800000,0.17563750,-0.17090000,-0.14110000,0.06814750,-0.17930000,0.01100000,0.21909000,-0.08290000,0.61212833,0.20000000,0.58075167,-0.20160000,0.31340000,0.70385250,0.04990000,0.04770000,0.62999200,0.00150270,1
102322,0.08495400,0.02508500,0.12337400,0.18050333,0.06640000,0.02212525,-0.00210000,0.15010000,0.07345000,0.25965583,0.11770000,0.11180000,0.00000000,0.06890000,0.07340000,0.24200000,0.16221250,0.16070000,0.11990000,0.07529000,0.13130000,0.22547667,0.30000000,0.15854833,0.05940000,-0.13760000,0.12873750,-0.00700000,-0.24100000,0.21914100,0.06406078,0
102323,0.13931400,0.00202500,0.14312800,0.10610167,0.44830000,0.12046275,-0.22850000,0.28650000,0.01299333,0.14458083,0.04540000,0.09740000,0.24100000,0.08951750,0.12900000,-0.24840000,0.08132750,0.20000000,0.10240000,0.15842750,0.10150000,0.16073167,0.20000000,0.10881167,-0.29150000,-0.25230000,0.09968000,0.15680000,-0.07000000,0.10515900,0.00150270,1
102327,0.13519600,0.00951000,0.15383800,0.19108167,0.42890000,0.16470250,-0.20110000,0.17430000,0.00971333,0.22711917,0.01785000,0.10490000,0.81900000,0.19910000,-0.05760000,-0.30580000,0.07105000,0.02000000,-0.14970000,0.12704500,-0.15470000,0.28419500,0.20000000,0.18583000,0.13850000,0.03470000,0.13246250,-0.29040000,0.21200000,0.16448300,0.00150270,1
102337,0.09620500,0.24107500,0.14897600,0.09954667,0.47910000,0.17045975,-0.20325000,0.20520000,0.00559667,0.18551333,0.14125000,-0.02890000,0.89200000,0.06333250,-0.09670000,-0.29180000,0.17891500,-0.04860000,-0.09230000,0.02131500,0.26580000,0.20671583,0.20000000,0.12493333,-0.36890000,0.09930000,0.12689000,0.11020000,-0.30840000,0.12571600,0.00150270,1
102339,0.09990000,0.17659500,0.13043200,0.07303167,0.05290000,0.03905050,0.15465000,0.30040000,0.10394333,0.21123917,0.06470000,-0.13800000,0.00000000,0.05979250,-0.05860000,0.06420000,0.07739500,-0.18790000,-0.20690000,0.11251000,-0.30550000,0.26527000,0.30000000,0.16274833,0.20430000,-0.00200000,0.16529750,0.15140000,0.23350000,0.19861200,1.37339095,0
102342,0.14421400,0.10748500,0.19311400,0.01244333,0.43740000,0.10439775,-0.23725000,0.28620000,0.06801333,0.16251667,0.03115000,-0.13910000,0.98900000,0.15420500,-0.03070000,0.29780000,0.09604000,-0.04220000,0.01180000,0.04990250,-0.06790000,0.19291000,0.20000000,0.09669667,0.19940000,0.10190000,0.09226000,-0.23790000,-0.21200000,0.09492200,0.00150270,1
102349,0.17778400,0.14913500,0.25644000,0.01793833,0.08940000,0.03063875,0.30260000,0.31170000,0.11015667,0.21752583,0.05165000,-0.14100000,0.00100000,0.13821750,-0.02630000,-0.28360000,0.14284000,-0.13290000,0.00930000,0.03830250,0.11490000,0.21045000,0.30000000,0.10920667,-0.20530000,-0.07070000,0.11784750,-0.29470000,0.21870000,0.14860800,2.01920559,0
102353,0.11958600,0.39471000,0.17807200,0.02289167,0.05690000,0.04226950,0.01990000,0.26920000,0.21546667,0.30642083,0.09445000,-0.12100000,0.22700000,0.07934500,-0.16890000,0.28810000,0.14990750,-0.10380000,-0.07900000,0.06535500,0.21950000,0.41962917,0.30000000,0.14862667,-0.09760000,-0.30690000,0.19767500,-0.04070000,-0.05320000,0.27600400,0.00150270,1
102357,0.10213000,0.28013500,0.12310200,0.10356500,0.22220000,0.04572500,0.12920000,0.24480000,0.09932000,0.16097083,0.06885000,0.14020000,0.04100000,0.06913000,-0.02540000,0.23940000,0.09517250,0.00300000,-0.00370000,0.10398250,0.15260000,0.24945833,0.20000000,0.15766000,-0.08430000,-0.19290000,0.08212250,-0.30650000,0.20870000,0.12744400,0.07389913,0
102365,0.08684400,0.24059500,0.11795800,0.11726833,0.32610000,0.06387025,-0.03955000,0.19600000,0.12712667,0.16712750,0.02895000,0.08490000,0.96500000,0.11432750,-0.21390000,0.30130000,0.06615250,-0.16740000,0.11090000,0.07569500,0.31410000,0.19761417,0.30000000,0.08778167,-0.29970000,0.07260000,0.11053750,0.02640000,-0.17400000,0.12836100,0.30979516,0
102366,0.08386700,0.11300000,0.11698400,0.08048000,0.18760000,0.05934700,0.06230000,0.20260000,0.02022333,0.19010667,0.04825000,0.13190000,0.97800000,0.08181500,0.24620000,0.20880000,0.07895000,0.15990000,-0.23620000,0.02481250,0.25360000,0.25848583,0.20000000,0.15270167,0.05200000,0.06200000,0.18050500,0.23960000,-0.20560000,0.16382200,1.45484847,0
102373,0.11880800,0.03753000,0.13727400,0.53609500,0.56460000,0.68012000,-0.37000000,0.07120000,0.01198667,0.49909000,0.02600000,0.11230000,0.89100000,0.34052750,0.15800000,0.30830000,0.17716500,0.17150000,-0.25000000,0.32923250,-0.25780000,0.53044417,0.20000000,0.51103500,-0.20680000,0.06010000,0.21302750,0.35780000,-0.09710000,0.39183100,0.00150270,1
102380,0.11480400,0.13554000,0.15012600,0.14120167,0.07310000,0.07786325,0.00650000,0.30900000,0.18467000,0.53003083,0.09090000,-0.14070000,0.07100000,0.06729500,0.06090000,-0.02220000,0.12234000,0.00810000,0.30170000,0.16347000,0.25330000,0.63046500,0.30000000,0.30364167,-0.01480000,-0.17400000,0.30665750,-0.08790000,0.08770000,0.56018200,0.00150270,1
102383,0.10228000,0.00118000,0.14263800,0.32721833,0.50220000,0.21384025,-0.25980000,0.10540000,0.07260000,0.28070583,0.09980000,0.10030000,0.21000000,0.12536000,0.21660000,0.25260000,0.25027250,0.20850000,-0.27060000,0.16595250,-0.27090000,0.34359333,0.20000000,0.25892833,0.14580000,0.00310000,0.07809250,-0.35640000,0.09720000,0.18659400,0.07135714,0
102384,0.13053500,0.12937000,0.18590200,0.02694333,0.09390000,0.02255125,-0.00475000,0.26200000,0.00618667,0.14697250,0.03020000,-0.13190000,0.92600000,0.14778000,-0.04360000,0.20030000,0.08921500,0.02230000,-0.17440000,0.05275250,-0.07630000,0.16020750,0.20000000,0.07599667,-0.01160000,0.06120000,0.08993000,0.08230000,-0.22340000,0.08157000,0.00150187,1
102390,0.13116900,0.33548000,0.19238400,0.18386333,0.33910000,0.07192350,-0.10380000,0.17730000,0.02404000,0.19971083,0.05870000,0.10890000,0.79900000,0.13693500,-0.09970000,0.12560000,0.16076500,-0.16970000,0.28850000,0.09076250,0.13500000,0.28619583,0.20000000,0.14632167,0.08020000,-0.09240000,0.08195000,-0.25900000,-0.18420000,0.12057300,0.00150270,1
102392,0.08319600,0.02077000,0.11561200,0.08361833,0.37380000,0.17268300,-0.06105000,0.20490000,0.29106000,0.31998667,0.07870000,0.07830000,0.70100000,0.06727000,0.05260000,0.20430000,0.10590500,0.03930000,-0.21960000,0.03869000,-0.20340000,0.39348667,0.30000000,0.27725167,-0.03620000,0.05990000,0.16474000,0.33770000,0.29450000,0.31471400,0.08341403,0
102400,0.05192000,0.24563500,0.08064400,0.06531167,0.02710000,0.01355175,0.07045000,0.14110000,0.03108333,0.10129500,0.05410000,-0.04220000,0.15200000,0.06557250,-0.02270000,0.02970000,0.07095250,0.10090000,-0.03850000,0.07749750,-0.23370000,0.15574083,0.20000000,0.05799000,0.10590000,0.18130000,0.08037500,0.13300000,-0.26790000,0.06694400,2.09712098,0
102407,0.11100200,0.09469500,0.13069400,0.31560500,0.22610000,0.05053350,-0.01155000,0.10960000,0.15524667,0.26959083,0.04940000,0.12750000,0.77000000,0.15765000,-0.03640000,-0.04310000,0.15571750,-0.04450000,-0.15240000,0.21056250,-0.12620000,0.25789083,0.30000000,0.17042833,0.01070000,0.20560000,0.12545250,-0.21540000,0.15910000,0.19816200,0.00150270,1
102408,0.09870100,0.06495500,0.13478800,0.27991500,0.28680000,0.10323100,-0.10180000,0.12630000,0.15060000,0.30436250,0.12635000,0.07930000,0.60800000,0.08487000,-0.16740000,0.21710000,0.21450250,-0.08670000,-0.31400000,0.15781750,-0.29640000,0.31931167,0.30000000,0.19975500,-0.12890000,0.02250000,0.20133500,0.15790000,-0.13080000,0.24548600,0.30716952,0
102417,0.06111800,0.05925000,0.05796600,0.25925833,0.04790000,0.02985100,0.18540000,0.09780000,0.16803000,0.18395250,0.09545000,0.12270000,0.43400000,0.05531000,-0.20280000,0.06450000,0.10557750,-0.17220000,-0.02840000,0.24400750,-0.00990000,0.40095167,0.20000000,0.18810167,-0.17010000,-0.26390000,0.10881750,-0.21800000,0.18100000,0.15638800,0.08341403,0
102419,0.11484900,0.01420500,0.15223600,0.21705167,0.47300000,0.15943100,-0.27315000,0.14150000,0.02898000,0.20243417,0.03175000,0.10600000,0.82300000,0.18281750,-0.09180000,-0.15280000,0.11613000,-0.06850000,-0.29230000,0.11855500,-0.28630000,0.25943750,0.20000000,0.12352833,0.27250000,0.09630000,0.12306500,-0.20050000,0.06160000,0.12334200,0.00150270,1
102422,0.13325400,0.33018000,0.15974800,0.08025333,0.06720000,0.02363525,0.06995000,0.28780000,0.08963333,0.14529583,0.04390000,0.13850000,0.52900000,0.10335000,0.09090000,-0.20640000,0.09071500,0.14980000,0.14030000,0.08990250,-0.25740000,0.19804000,0.20000000,0.08893333,0.15660000,0.19420000,0.10842250,0.08930000,-0.03530000,0.09672900,0.00150187,1
102426,0.12058300,0.04602500,0.17909400,0.25944667,0.52100000,0.22898625,-0.30865000,0.13030000,0.01968667,0.25311250,0.03170000,0.12410000,0.99400000,0.21986250,-0.17680000,-0.09420000,0.13934750,-0.09860000,0.01010000,0.08106750,-0.01160000,0.24330083,0.20000000,0.20388667,0.18220000,0.28730000,0.09429500,-0.33880000,0.21830000,0.16005000,0.00150270,1
102430,0.13964700,0.03699000,0.19651800,0.06842833,0.44110000,0.23181200,-0.23875000,0.27630000,0.00600000,0.24958333,0.06305000,0.12790000,0.77600000,0.10494250,0.00760000,-0.15570000,0.13234500,0.08120000,0.20630000,0.04603250,0.23000000,0.32351667,0.20000000,0.19792667,-0.25030000,0.00960000,0.21457250,0.19080000,-0.28080000,0.20458500,0.00150270,1
102431,0.18044200,0.26586500,0.29724200,0.09631833,0.16250000,0.03036275,0.41175000,0.27850000,0.27269667,0.14517083,0.03410000,-0.12910000,0.68000000,0.12195750,0.02430000,-0.07230000,0.08318250,-0.24780000,-0.13140000,0.05345250,0.19880000,0.17084583,0.20000000,0.09664167,-0.21700000,-0.07280000,0.08541000,-0.37950000,0.24880000,0.09214900,2.55892403,0
102436,0.08907800,0.09918500,0.12975800,0.11801667,0.00420000,0.02812950,0.05985000,0.16560000,0.00705333,0.18266333,0.03615000,0.13440000,0.00000000,0.12796250,-0.09660000,-0.05330000,0.09252250,-0.13250000,-0.21490000,0.02285250,-0.10100000,0.22933833,0.20000000,0.13674667,-0.10740000,0.26100000,0.12238500,-0.11150000,0.04650000,0.13100100,1.45484847,0
102437,0.11762000,0.11662000,0.15961400,0.05241000,0.34210000,0.10535725,0.09545000,0.27720000,0.00522333,0.18586917,0.03280000,0.13910000,0.82700000,0.11498000,0.05630000,0.01530000,0.07544000,0.14540000,0.27780000,0.01676750,0.08560000,0.19890333,0.20000000,0.13628667,0.04880000,-0.14630000,0.16275750,0.39090000,0.20300000,0.14687500,0.00150270,1
102439,0.09956600,0.16571500,0.14041400,0.34617667,0.03630000,0.04464150,-0.00095000,0.09050000,0.07418000,0.34915250,0.03695000,0.03360000,0.00000000,0.22105250,0.10620000,-0.28360000,0.16332000,0.18700000,-0.24300000,0.17388750,-0.19330000,0.41228333,0.20000000,0.38626000,-0.00640000,0.06610000,0.08369500,0.02990000,-0.21020000,0.26523400,0.91107092,0
102444,0.16089000,0.40929000,0.27457200,0.28422667,0.14300000,0.05431775,-0.01545000,0.14810000,0.06812000,0.40243083,0.01230000,-0.13070000,0.08900000,0.50831500,-0.03410000,0.08150000,0.12493250,-0.06620000,0.22610000,0.11342000,-0.19530000,0.42365250,0.20000000,0.31454833,0.11650000,-0.23990000,0.10222250,-0.02650000,0.00530000,0.22961700,0.75648008,0
102447,0.10061100,0.00479000,0.10655600,0.21700833,0.04860000,0.02286525,0.01590000,0.15510000,0.00213333,0.18136917,0.05225000,0.07680000,0.00600000,0.07615250,-0.03850000,0.16810000,0.07955250,0.11640000,0.16060000,0.17005250,0.15850000,0.21623750,0.20000000,0.20298167,0.08580000,-0.17830000,0.08393000,0.03710000,-0.03520000,0.15536100,0.07389913,0
102449,0.09356600,0.00042500,0.13115000,0.54555333,0.11820000,0.06769750,-0.01730000,0.05680000,0.13623000,0.51921583,0.06960000,0.10060000,0.00000000,0.24152250,-0.22590000,-0.20580000,0.33608500,-0.17050000,-0.19290000,0.24211500,-0.19300000,0.63741500,0.30000000,0.51364167,0.06520000,0.14260000,0.13391500,-0.05300000,-0.04860000,0.39201600,0.06406078,0
102451,0.08729400,0.01182000,0.08787200,0.27149667,0.02520000,0.05713525,0.14675000,0.10810000,0.09152333,0.29094917,0.04955000,0.09580000,0.00000000,0.10671500,0.18830000,0.01380000,0.10571500,0.21030000,0.11970000,0.24064000,0.12340000,0.32090583,0.20000000,0.24676167,0.18440000,-0.12260000,0.29027250,0.15920000,0.30050000,0.26416600,1.45484847,0
102465,0.13197600,0.39004500,0.11922000,0.49089667,0.04170000,0.02568025,-0.00095000,0.09170000,0.01868667,0.36522833,0.04595000,0.11590000,0.00000000,0.17438000,-0.01550000,0.21990000,0.16031250,-0.04360000,0.30720000,0.44077500,0.23210000,0.45301167,0.20000000,0.27960833,-0.00530000,-0.09330000,0.34158000,0.03640000,-0.04550000,0.30439700,0.00150187,1
102472,0.07549600,0.22563500,0.06911400,0.48144667,0.08660000,0.04170125,0.14000000,0.06270000,0.39802333,0.51156833,0.16815000,0.14040000,0.00100000,0.07629250,-0.04890000,0.17860000,0.25659250,-0.05350000,0.11600000,0.40464250,0.15120000,0.62237167,0.30000000,0.31594000,-0.21610000,-0.11960000,0.34798750,-0.12950000,-0.15550000,0.48072700,0.08341403,0
102475,0.12438300,0.36168000,0.13163000,0.11855500,0.47660000,0.23236400,-0.28190000,0.21730000,0.00988000,0.20694083,0.07780000,0.12790000,0.68300000,0.07439750,-0.11540000,-0.17980000,0.11578250,-0.12680000,0.23150000,0.11367750,-0.21530000,0.21764250,0.20000000,0.16420833,-0.21810000,-0.03370000,0.18433000,0.25850000,0.20320000,0.17225700,0.00150270,1
102476,0.23499800,0.12272500,0.34005400,0.11543667,0.04120000,0.01141650,0.54655000,0.37940000,0.11027333,0.20842000,0.11850000,0.14080000,0.00000000,0.07936250,-0.16420000,-0.22300000,0.18811750,0.06630000,0.10380000,0.06768750,0.15890000,0.27835250,0.30000000,0.10794833,-0.35190000,-0.20350000,0.10721250,-0.31070000,-0.13590000,0.14311200,0.78946139,0
102477,0.09475200,0.03091000,0.05789800,0.41936167,0.38350000,0.16853175,-0.18325000,0.09210000,0.08960000,0.29639500,0.03310000,0.11090000,0.99500000,0.09985000,-0.03840000,-0.24760000,0.06606000,-0.02440000,0.28970000,0.49181250,0.29830000,0.37968083,0.30000000,0.34345333,-0.20250000,-0.02620000,0.12041250,0.18090000,0.10160000,0.28930900,0.30716952,0
102479,0.12225300,0.16610500,0.13488400,0.22530500,0.52450000,0.26893050,-0.31890000,0.16760000,0.00415333,0.21962417,0.04005000,0.14100000,0.98200000,0.11338750,-0.14740000,-0.04380000,0.09077250,-0.03480000,-0.16800000,0.17142500,-0.10010000,0.23197583,0.20000000,0.22950167,0.19160000,0.18270000,0.11045750,-0.33290000,-0.26390000,0.18188400,0.00150270,1
102488,0.15188500,0.07098000,0.16597800,0.19776667,0.05580000,0.01181200,0.11570000,0.22880000,0.14595000,0.22010167,0.07060000,0.06420000,0.22100000,0.09490500,0.15690000,-0.19690000,0.13400500,0.18890000,0.20480000,0.22688250,0.18440000,0.31753083,0.30000000,0.15592833,0.12680000,-0.05570000,0.10496250,0.18250000,-0.09350000,0.17255800,0.00150270,1
102492,0.10000300,0.12682000,0.11666000,0.17456833,0.04400000,0.01135725,0.00290000,0.17640000,0.09030333,0.16941583,0.05710000,0.13640000,0.00000000,0.08638500,0.22150000,-0.26240000,0.09864750,0.17210000,-0.09300000,0.14062000,-0.14760000,0.16859000,0.20000000,0.16521167,-0.01060000,0.15740000,0.07539500,-0.05460000,0.22560000,0.12928500,0.35853999,0
102498,0.08811700,0.02400000,0.12282800,0.19980167,0.21100000,0.17086625,-0.01955000,0.12720000,0.08919667,0.44275083,0.02175000,0.06870000,0.08500000,0.17442750,0.03700000,-0.14180000,0.07591000,-0.08060000,-0.09360000,0.06189500,-0.07610000,0.45646333,0.20000000,0.41101167,0.19050000,0.14140000,0.46140000,-0.02050000,-0.21230000,0.43116600,0.30716952,0
102500,0.07920100,0.09071500,0.08908800,0.10314167,0.33270000,0.10087225,-0.10640000,0.22970000,0.00341333,0.17029250,0.06170000,0.13530000,0.97400000,0.05277750,-0.11670000,0.22250000,0.06510000,-0.05300000,0.00180000,0.10246000,0.05810000,0.17602667,0.20000000,0.17574500,-0.24620000,-0.20770000,0.12938500,0.08640000,0.14920000,0.15720000,0.00150270,1
102501,0.12762300,0.02888000,0.16130200,0.07443500,0.35710000,0.11509825,-0.13295000,0.31120000,0.01141667,0.19528917,0.05595000,0.13890000,0.69500000,0.09254750,0.01430000,-0.25510000,0.10351500,-0.03490000,0.05220000,0.09958250,0.03790000,0.25858417,0.20000000,0.16579667,0.25120000,-0.27620000,0.14110750,-0.10580000,0.03590000,0.15592200,0.00150270,1
102502,0.16339700,0.05173500,0.25456000,0.24995333,0.14920000,0.17816075,0.03170000,0.15300000,0.14709667,0.69217667,0.06280000,0.14140000,0.59000000,0.18270250,0.04750000,0.24820000,0.22940500,0.16320000,0.14820000,0.01256500,0.19690000,0.78819250,0.30000000,0.63960833,0.18370000,-0.12310000,0.49006250,0.03450000,0.17960000,0.66576900,0.06406078,0
102503,0.11411700,0.24737000,0.16637800,0.10580667,0.47900000,0.15482375,-0.15435000,0.20380000,0.21880000,0.20481417,0.05115000,0.10850000,0.99900000,0.12056750,-0.14590000,0.10030000,0.12332000,-0.15690000,0.30380000,0.04521250,0.10860000,0.28636667,0.30000000,0.10598833,0.07670000,-0.06560000,0.12284250,-0.40230000,0.21200000,0.14822200,0.00150270,1
102505,0.08182300,0.04580000,0.11800200,0.20993833,0.52260000,0.19945325,-0.33105000,0.14200000,0.20837000,0.20139000,0.18045000,0.14110000,0.42000000,0.05090250,0.06160000,-0.19540000,0.18373000,0.19790000,-0.23520000,0.08371500,-0.21670000,0.19089083,0.30000000,0.10412667,0.21590000,-0.02630000,0.13677750,-0.30670000,0.12910000,0.14781400,1.25397026,0
102507,0.05479500,0.19133000,0.08100800,0.10758500,0.05050000,0.05568600,0.01705000,0.12110000,0.00862333,0.23943583,0.05880000,-0.00560000,0.00000000,0.07464250,-0.08080000,-0.13610000,0.08775250,-0.18630000,-0.07660000,0.06272250,0.06360000,0.23875083,0.20000000,0.19912000,-0.03840000,-0.27080000,0.25723500,-0.08890000,0.10090000,0.22236600,0.74405625,0
102508,0.14246700,0.36197000,0.20576400,0.09305833,0.00570000,0.04286725,0.00835000,0.29650000,0.00113333,0.23876417,0.02920000,-0.14130000,0.00000000,0.16888500,-0.10420000,-0.07950000,0.09866250,-0.10700000,0.25230000,0.11143500,0.04400000,0.25952333,0.20000000,0.18287833,-0.04380000,-0.26820000,0.17442750,-0.03820000,0.09140000,0.17949800,0.74405625,0
102509,0.09924700,0.18735000,0.14578000,0.10798167,0.39380000,0.11223200,-0.16775000,0.16460000,0.20857333,0.19077667,0.03150000,-0.03300000,0.99300000,0.15639250,0.06750000,-0.26380000,0.09851000,0.05570000,0.20040000,0.10237250,0.10330000,0.17390833,0.20000000,0.10731333,0.26920000,0.01100000,0.15645750,-0.12460000,-0.06870000,0.12697200,0.00150270,1
102511,0.09001300,0.04322500,0.12378600,0.08602167,0.27920000,0.03656825,-0.09685000,0.24200000,0.00622333,0.11386833,0.08235000,0.12550000,0.89500000,0.06126500,-0.03510000,-0.00530000,0.10091000,0.03520000,-0.23690000,0.05660500,-0.20820000,0.14669250,0.20000000,0.06206500,-0.15100000,0.20210000,0.08633250,0.12830000,0.04120000,0.07177200,1.45484847,0
102515,0.11778100,0.07483000,0.15401800,0.02243333,0.02330000,0.02288625,0.47545000,0.31570000,0.00161667,0.13049167,0.03855000,-0.13810000,0.00000000,0.09280250,0.01650000,-0.23800000,0.07156000,-0.10370000,0.09850000,0.06004000,0.04060000,0.16221750,0.20000000,0.08321167,-0.32020000,-0.17640000,0.10229750,-0.29690000,0.16130000,0.09084600,0.01863612,1
102522,0.12094700,0.21863500,0.13829600,0.14450333,0.23280000,0.06029425,0.02410000,0.22960000,0.01683333,0.18580167,0.08490000,0.14050000,0.02100000,0.06026250,-0.04940000,0.11190000,0.10229750,0.09280000,0.29210000,0.11655500,0.18730000,0.24026000,0.20000000,0.19723167,-0.01910000,-0.12420000,0.09899500,-0.25190000,0.15490000,0.15793700,0.07135714,0
102525,0.09815900,0.11466000,0.13901000,0.01585333,0.37950000,0.07942725,-0.16220000,0.33520000,0.00527667,0.12440583,0.05980000,0.14140000,0.12300000,0.06359500,0.07650000,-0.29850000,0.07604750,0.21500000,0.02460000,0.01720750,0.20750000,0.14960333,0.20000000,0.08504833,0.13000000,-0.12520000,0.10600250,-0.24950000,0.20200000,0.09343000,0.30979516,0
102532,0.30247600,0.29020000,0.40552400,0.12740667,0.07620000,0.01624425,0.10185000,0.30880000,0.03896333,0.22312333,0.04140000,0.14100000,0.53300000,0.22923500,0.04550000,-0.05150000,0.18984500,0.17800000,0.22750000,0.12889500,0.13100000,0.24500667,0.20000000,0.10050167,0.10960000,-0.25300000,0.09953750,0.18590000,-0.14610000,0.10011600,2.02999916,0
102537,0.11696700,0.23959500,0.12445000,0.20330333,0.25860000,0.08695975,0.02920000,0.19100000,0.40945667,0.35963250,0.03630000,0.13620000,0.95200000,0.10146250,-0.07590000,0.25440000,0.07369500,-0.17900000,-0.21310000,0.18232750,0.30660000,0.53315833,0.30000000,0.14916333,-0.02090000,-0.27930000,0.21779500,-0.27950000,0.03000000,0.36149600,0.08341403,0
102538,0.10700900,0.00248000,0.13390600,0.21193000,0.52830000,0.19658025,-0.34835000,0.15300000,0.14908000,0.16435250,0.03200000,0.09720000,0.99600000,0.12623250,-0.11880000,-0.28510000,0.08079000,0.02730000,-0.23970000,0.11908000,-0.23840000,0.24903083,0.20000000,0.11256167,0.27460000,0.07320000,0.11719500,-0.25370000,0.12110000,0.11441400,0.00150270,1
102542,0.14218900,0.07532500,0.14857400,0.27689833,0.09270000,0.04417250,0.02755000,0.15200000,0.12099333,0.30422583,0.03530000,0.12180000,0.11500000,0.15500000,-0.04240000,0.20950000,0.10944500,0.01940000,-0.27980000,0.22938500,-0.30370000,0.31181583,0.30000000,0.25597000,0.13390000,-0.08080000,0.16851750,0.04120000,0.07610000,0.25929300,0.01863612,1
102543,0.09751100,0.00510000,0.12109200,0.26903500,0.12160000,0.04554825,0.25830000,0.12410000,0.18171000,0.27541250,0.08860000,0.10400000,0.00000000,0.08716000,-0.13990000,-0.13210000,0.15448750,-0.02300000,-0.09030000,0.16764750,-0.09190000,0.28117417,0.30000000,0.16001000,-0.17450000,0.26350000,0.21891250,-0.29610000,0.09840000,0.23383600,1.45484847,0
102549,0.14858900,0.16495500,0.20216400,0.03410667,0.11320000,0.01352425,0.27175000,0.31440000,0.15544333,0.12080167,0.04685000,-0.08370000,0.00000000,0.09378750,0.20030000,0.20250000,0.08784750,0.02340000,-0.16590000,0.01938250,0.15520000,0.26550500,0.20000000,0.06937333,0.29650000,0.03680000,0.07671250,0.18330000,-0.05110000,0.07230900,0.00150270,1
102550,0.18214200,0.46694500,0.23790600,0.11513333,0.13140000,0.03271725,-0.00750000,0.35720000,0.08909333,0.17082000,0.07340000,0.13850000,0.01300000,0.07153000,-0.14490000,0.22230000,0.10503000,0.08360000,-0.05230000,0.16543750,0.16530000,0.20983250,0.20000000,0.17280000,0.01260000,-0.12310000,0.07670000,-0.11880000,0.27220000,0.13436000,2.64036908,0
102553,0.14702400,0.15234000,0.20842000,0.09067333,0.19070000,0.02353100,0.05790000,0.21840000,0.02141000,0.15686583,0.03920000,-0.04910000,0.04800000,0.16490750,-0.04550000,-0.16060000,0.12924750,-0.02230000,0.25060000,0.10150750,0.18280000,0.19649833,0.20000000,0.06577333,0.23910000,-0.08350000,0.07778250,0.04840000,0.07450000,0.07057700,0.00150270,1
102555,0.04668400,0.20632000,0.07355600,0.09529167,0.18570000,0.02403100,0.00740000,0.10410000,0.01207333,0.12421083,0.06810000,-0.06110000,0.96000000,0.07745250,-0.03250000,-0.14420000,0.10552750,-0.08170000,-0.23590000,0.03858500,0.20420000,0.15381500,0.20000000,0.06834667,-0.00770000,0.16790000,0.08713250,-0.19340000,0.02150000,0.07586100,1.96217102,0
102557,0.11394500,0.11047500,0.11443400,0.21696000,0.10240000,0.01959200,0.11605000,0.17670000,0.00753667,0.16472750,0.05245000,0.14140000,0.81700000,0.07410250,0.03190000,-0.26390000,0.07771250,0.18370000,-0.17350000,0.18889000,-0.21950000,0.18150500,0.20000000,0.15800500,0.10950000,0.11240000,0.10535750,0.21190000,0.05650000,0.13694700,0.35853999,0
102566,0.11499200,0.15398000,0.12805400,0.29858500,0.16190000,0.05208225,0.00660000,0.16130000,0.16096667,0.28579500,0.15090000,0.13130000,0.00000000,0.05965000,0.08060000,-0.07730000,0.18001500,0.16750000,-0.21320000,0.24696250,-0.17640000,0.25026750,0.30000000,0.24151333,-0.16970000,0.11880000,0.13028500,-0.00780000,0.29570000,0.24708700,0.30716952,0
102571,0.08535500,0.06920500,0.10436600,0.13752167,0.34330000,0.13442500,-0.05760000,0.15330000,0.32913333,0.31517667,0.03525000,0.05890000,0.26400000,0.11180000,-0.07700000,0.22770000,0.07886500,-0.06420000,-0.24790000,0.11787500,-0.21180000,0.38876917,0.30000000,0.15605167,-0.03770000,0.28110000,0.23325000,0.30550000,-0.05610000,0.30194600,0.30097511,0
102576,0.09641400,0.29907500,0.13930200,0.05374167,0.14890000,0.02586300,0.14475000,0.27180000,0.08817333,0.14273167,0.14910000,0.09720000,0.07000000,0.05136500,-0.08290000,-0.19660000,0.15317500,-0.06440000,0.07450000,0.03814750,-0.19770000,0.16528833,0.20000000,0.07748333,-0.11130000,-0.23690000,0.10743000,-0.26010000,0.20600000,0.08946200,2.16589195,0
102585,0.16004800,0.56750000,0.13807400,0.13503833,0.10150000,0.01661475,0.02130000,0.28330000,0.09005000,0.14795000,0.07645000,0.11840000,0.00000000,0.06521750,0.15270000,0.30260000,0.09973750,0.23770000,0.03230000,0.21779500,0.29160000,0.19827000,0.30000000,0.08207000,0.03190000,-0.06490000,0.07901000,0.13340000,0.06850000,0.11155900,0.01863612,1
102586,0.13803400,0.02304500,0.18775000,0.10911500,0.59070000,0.35789200,-0.35125000,0.23170000,0.00690000,0.20279833,0.02710000,0.11670000,0.96300000,0.15104750,0.06570000,0.30010000,0.08186750,0.18740000,-0.13100000,0.04816250,-0.14940000,0.23630417,0.20000000,0.14068833,-0.16510000,0.15480000,0.16445000,0.42560000,-0.07250000,0.15019300,0.00150270,1
102590,0.13919700,0.10434000,0.15901200,0.08822667,0.09080000,0.02816150,0.02320000,0.30790000,0.02309667,0.15543333,0.05290000,0.14040000,0.99800000,0.09031250,-0.15990000,0.30820000,0.09551000,-0.08400000,-0.02180000,0.11972250,-0.07100000,0.17856333,0.20000000,0.13518333,-0.12730000,0.21740000,0.07770500,-0.03650000,-0.10680000,0.11219200,0.00150270,1
102591,0.07903300,0.06078500,0.10659600,0.14283500,0.40540000,0.08802450,-0.06040000,0.15090000,0.08781667,0.17747417,0.03655000,0.13120000,0.41800000,0.11302750,-0.00670000,-0.00550000,0.08264250,0.01910000,0.14320000,0.07477750,0.10430000,0.33977500,0.30000000,0.08405667,-0.37300000,-0.15300000,0.10637250,0.03240000,-0.28770000,0.13470000,0.07135714,0
102592,0.13727900,0.15631000,0.19578800,0.02618167,0.12570000,0.02125675,0.09770000,0.28780000,0.11299333,0.13858583,0.04605000,-0.14040000,0.00200000,0.11296000,-0.10820000,0.27100000,0.10407750,0.00120000,0.00490000,0.01784000,-0.22230000,0.24059417,0.20000000,0.07592000,-0.09040000,-0.28040000,0.08484000,-0.21610000,-0.08130000,0.07948800,0.00150187,1
102597,0.04307100,0.06186500,0.06199800,0.14265333,0.05100000,0.01823850,0.02100000,0.09280000,0.00737000,0.15235333,0.10250000,0.05790000,0.91000000,0.06026750,-0.04710000,0.24820000,0.12356750,-0.06180000,0.15650000,0.05585500,0.11900000,0.15180417,0.20000000,0.12106833,-0.09520000,-0.10370000,0.09162250,-0.04410000,-0.24110000,0.10929000,2.05403827,0
102601,0.10053100,0.28536000,0.14782400,0.07057333,0.36570000,0.09620150,-0.16660000,0.23550000,0.04796000,0.21910167,0.06205000,-0.11240000,0.96900000,0.07334250,-0.10400000,-0.24850000,0.09104250,0.04310000,0.19590000,0.12920000,0.05230000,0.33653917,0.30000000,0.12767500,0.19330000,-0.17660000,0.11832000,-0.17230000,0.12110000,0.19716800,0.74405625,0
102608,0.11544100,0.39998000,0.12575800,0.05969333,0.20080000,0.03714475,-0.03510000,0.30810000,0.02432333,0.13132583,0.08245000,-0.13980000,0.04000000,0.05254500,-0.11920000,-0.16220000,0.08667000,-0.23520000,0.12320000,0.12726750,-0.25310000,0.13145917,0.20000000,0.11214500,-0.15560000,-0.00530000,0.08654500,0.04510000,0.26660000,0.10190500,0.00265331,1
102609,0.18091200,0.51938500,0.17777000,0.10130833,0.32910000,0.07174875,-0.13535000,0.32590000,0.00536667,0.16820667,0.05950000,0.14130000,1.00000000,0.09069000,0.09550000,0.13760000,0.10793000,-0.00270000,-0.18000000,0.16551750,0.18210000,0.18073917,0.20000000,0.15202333,0.16190000,-0.13140000,0.07796500,-0.16720000,0.16530000,0.12240000,2.04583811,0
102611,0.12279900,0.34884000,0.12767600,0.06092333,0.16130000,0.02148550,-0.00065000,0.28690000,0.01334333,0.11081833,0.09440000,0.13930000,0.00000000,0.05618500,0.15040000,-0.01450000,0.10609000,0.21130000,0.26580000,0.09014500,0.04560000,0.13799500,0.20000000,0.05766333,0.00080000,-0.11790000,0.08368500,-0.16050000,0.30790000,0.06807200,2.10625969,0
102612,0.08497800,0.05412000,0.12292200,0.28483667,0.34410000,0.11902475,0.01075000,0.10560000,0.00206667,0.28881083,0.13655000,0.12400000,0.83300000,0.08803000,-0.17920000,-0.23030000,0.24037500,-0.10460000,-0.15570000,0.11649000,-0.17190000,0.22954167,0.20000000,0.29074667,-0.00610000,0.11620000,0.10190750,-0.35030000,0.29480000,0.21521100,0.30979516,0
102613,0.09038300,0.11185500,0.12681000,0.01568667,0.15570000,0.02619725,0.02305000,0.25470000,0.09460667,0.12467417,0.03510000,-0.13410000,0.00200000,0.09554750,0.03740000,-0.14270000,0.06711500,0.09470000,0.23740000,0.04081500,0.12470000,0.20261083,0.20000000,0.08031667,-0.18110000,0.12950000,0.09088500,-0.02540000,-0.09610000,0.08454400,0.30979516,0
102617,0.16188900,0.18432500,0.22312000,0.35877000,0.17530000,0.05961925,0.03905000,0.14290000,0.08377333,0.32690167,0.06930000,0.04610000,0.04000000,0.15702000,0.09680000,0.03590000,0.21756000,-0.03260000,0.09640000,0.21100000,0.13970000,0.35553917,0.20000000,0.27088667,0.03680000,-0.22870000,0.19979500,0.21210000,-0.17310000,0.24245000,1.09953657,0
102622,0.09270400,0.03661500,0.10874400,0.40714167,0.61080000,0.45783775,-0.36760000,0.07930000,0.20093000,0.33858000,0.07550000,0.05620000,0.57100000,0.13608000,-0.00960000,0.20100000,0.20550000,-0.08800000,0.21300000,0.27090500,0.22070000,0.42261500,0.30000000,0.32633000,-0.16490000,-0.08430000,0.09553750,0.44600000,-0.03010000,0.26966400,0.06406078,0
102628,0.30528400,0.26556500,0.49125400,0.27161833,0.08010000,0.03127400,-0.00665000,0.28890000,0.18256333,0.29027667,0.20670000,0.06860000,0.04000000,0.07981000,-0.21860000,0.15560000,0.32990000,0.05530000,0.06360000,0.04262000,0.18250000,0.40889000,0.30000000,0.15982000,0.02350000,-0.17640000,0.14079250,-0.05650000,0.28980000,0.18444800,1.60508880,0
102630,0.12997000,0.14957000,0.17070000,0.22082333,0.01270000,0.04034800,0.12575000,0.25030000,0.12958333,0.29531083,0.16630000,0.13220000,0.00000000,0.06115500,0.04730000,0.26960000,0.20341000,0.02080000,-0.10980000,0.17313250,-0.15000000,0.40913083,0.30000000,0.25106833,0.15230000,0.23360000,0.12590250,0.16510000,0.00800000,0.24854700,0.00150270,1
102633,0.20096900,0.08254000,0.25135400,0.17811833,0.31830000,0.07430975,-0.02815000,0.24730000,0.07280333,0.20299333,0.02980000,0.13000000,0.18000000,0.16182500,0.10840000,-0.08070000,0.09638750,-0.06790000,-0.25420000,0.11218500,-0.21420000,0.26837417,0.20000000,0.17300500,-0.01880000,0.12110000,0.09126000,0.29950000,0.21580000,0.14030700,0.74405625,0
102640,0.12025000,0.07830000,0.17892600,0.13819000,0.48360000,0.15846375,-0.27570000,0.21410000,0.05905000,0.18707833,0.10235000,0.12970000,0.97900000,0.08842750,0.00510000,0.28500000,0.18096750,-0.02220000,-0.13090000,0.05334500,-0.17110000,0.19404500,0.20000000,0.12092500,0.18420000,0.10280000,0.11045250,-0.29940000,0.22530000,0.11673600,0.00150270,1
102641,0.14367800,0.04018500,0.21628600,0.08278833,0.37420000,0.11924925,-0.17465000,0.23190000,0.07355667,0.23133750,0.06240000,0.14140000,0.72000000,0.13203500,0.11700000,0.04380000,0.16473500,0.11590000,-0.18800000,0.00184000,-0.06500000,0.26002667,0.20000000,0.18944833,0.19570000,0.21910000,0.11307000,-0.17850000,-0.11560000,0.15889800,0.00150270,1
102644,0.11223600,0.06411000,0.09735600,0.31945000,0.09160000,0.01962350,0.11195000,0.12470000,0.08426667,0.26875500,0.04280000,0.12590000,0.93600000,0.10463500,-0.07540000,-0.25920000,0.08951750,-0.16820000,-0.17580000,0.30524000,-0.19530000,0.33445000,0.30000000,0.20606333,-0.11070000,0.09980000,0.11934000,-0.20220000,0.10480000,0.24484400,0.07389913,0
102652,0.14233800,0.13147500,0.13600200,0.27752833,0.07220000,0.02088650,0.13800000,0.16730000,0.18841667,0.29940833,0.05775000,0.12850000,0.47400000,0.10602250,-0.16180000,0.20890000,0.12240500,-0.13880000,0.04320000,0.26875500,0.07960000,0.30628500,0.30000000,0.14554333,-0.20610000,-0.21630000,0.18007000,-0.13390000,-0.14910000,0.26792000,0.00150187,1
102656,0.05111600,0.61083500,0.09813000,0.08769667,0.57230000,0.22384450,-0.40785000,0.11220000,0.21085000,0.20151417,0.14500000,-0.12560000,0.66600000,0.06574500,0.14440000,0.15370000,0.19068750,0.20070000,0.05670000,0.14133500,-0.18230000,0.23573083,0.30000000,0.11647167,-0.26800000,-0.17780000,0.09393250,0.30430000,-0.29440000,0.13924400,2.32648987,0
102659,0.14161300,0.23075000,0.17040000,0.29803000,0.11030000,0.02178100,-0.00810000,0.13860000,0.09468667,0.23817833,0.03825000,0.14110000,0.00000000,0.18821250,-0.12730000,-0.15280000,0.14390250,-0.16490000,-0.28620000,0.18481750,-0.21390000,0.29762333,0.20000000,0.16742667,-0.01740000,0.10510000,0.13127750,0.09290000,0.11880000,0.15296800,0.00150187,1
102660,0.09161900,0.13794000,0.12716000,0.07739667,0.27800000,0.05524500,-0.05240000,0.22070000,0.02602333,0.14880000,0.04260000,0.13970000,0.92200000,0.09636000,-0.14170000,-0.31300000,0.08207000,-0.13360000,-0.09250000,0.03485000,-0.23260000,0.19763667,0.20000000,0.10818667,0.04500000,0.17890000,0.10569250,-0.23300000,-0.05790000,0.10718900,0.00150270,1
102663,0.12113800,0.31381500,0.19195600,0.02667833,0.07330000,0.02404950,0.22700000,0.21840000,0.01892000,0.16544083,0.03235000,-0.13820000,0.00100000,0.16266500,-0.17530000,0.09030000,0.10529250,-0.11790000,-0.12050000,0.10149750,-0.29280000,0.20223750,0.20000000,0.09197667,-0.17950000,-0.26110000,0.09040250,-0.25280000,0.07590000,0.09134600,0.74405625,0
102666,0.09388500,0.18144500,0.13055200,0.01679167,0.54650000,0.15916575,-0.32035000,0.29530000,0.00834333,0.12296250,0.05045000,-0.13480000,0.86700000,0.08068250,-0.03120000,0.16240000,0.08137750,-0.00020000,-0.13120000,0.02556750,0.20400000,0.16832500,0.20000000,0.07481333,0.37620000,-0.08190000,0.09460500,-0.17030000,0.24920000,0.08273000,0.00150270,1
102672,0.11447100,0.18080500,0.14605400,0.39339500,0.45000000,0.26047350,-0.25310000,0.09520000,0.00866000,0.33041500,0.02975000,0.13950000,0.97900000,0.25433250,-0.00780000,-0.27990000,0.15130750,0.03420000,0.26290000,0.21856750,0.31320000,0.32807583,0.20000000,0.25749333,0.22640000,-0.00420000,0.19936500,-0.22360000,0.01300000,0.23424300,0.00150270,1
102677,0.10642000,0.14973000,0.15699200,0.18328167,0.01540000,0.01156925,0.00295000,0.14990000,0.01223333,0.19040667,0.05015000,0.14080000,0.00000000,0.14237500,0.04420000,0.10960000,0.14273500,0.07770000,-0.03650000,0.06272250,0.04490000,0.26326167,0.20000000,0.10642833,0.01790000,-0.24180000,0.12647000,0.03320000,0.31400000,0.11444400,1.45484847,0
102678,0.14348800,0.00148500,0.13367800,0.12391667,0.66910000,0.55231750,-0.55840000,0.31750000,0.00270333,0.19401167,0.04605000,0.08820000,0.99200000,0.08101250,-0.12310000,-0.22770000,0.07461250,-0.04610000,0.09260000,0.19208750,0.09200000,0.19126333,0.20000000,0.20044500,0.31910000,-0.24190000,0.12574250,-0.34990000,0.03750000,0.17056400,0.00150270,1
102679,0.14165800,0.05098000,0.14273200,0.13463500,0.14360000,0.03001450,0.02915000,0.29980000,0.01309667,0.15268417,0.05370000,-0.12020000,0.00000000,0.08619750,-0.13340000,0.09560000,0.09261250,-0.12550000,-0.23300000,0.19664750,-0.21410000,0.20887500,0.20000000,0.10653333,0.17670000,0.15560000,0.11944000,0.03300000,-0.00610000,0.11169600,0.01863612,1
102687,0.15709100,0.06976000,0.15745800,0.37003833,0.24480000,0.11717850,-0.06905000,0.13450000,0.08630333,0.34876250,0.01490000,0.00610000,0.53000000,0.24899500,-0.00270000,0.09010000,0.07414500,0.13180000,0.08780000,0.23609250,0.11430000,0.41791000,0.20000000,0.33034833,-0.08810000,-0.26290000,0.22762750,0.15670000,-0.08080000,0.28926000,0.00150270,1
102689,0.10641500,0.23384000,0.11700600,0.91899000,0.42030000,0.49049300,-0.22080000,0.04440000,0.58290333,0.77203500,0.10975000,0.14130000,0.92900000,0.22379000,-0.04030000,-0.19000000,0.49113750,-0.05470000,-0.23200000,0.67794250,-0.21170000,0.93578583,0.30000000,0.51112500,0.21250000,0.03520000,0.47121500,-0.20780000,0.17340000,0.64047100,0.01863612,1
102690,0.12574100,0.31002000,0.17551400,0.08687000,0.33450000,0.06776000,-0.05195000,0.23820000,0.01340333,0.15951083,0.06195000,0.10920000,0.81700000,0.10022500,-0.01800000,-0.01700000,0.12422750,0.05730000,0.20900000,0.06151250,-0.00900000,0.20014167,0.20000000,0.10282833,-0.03460000,-0.30980000,0.09983750,0.29990000,-0.08590000,0.10163200,0.01863612,1
102691,0.11562300,0.16232000,0.07273400,0.45746333,0.28280000,0.11518525,-0.06985000,0.08840000,0.24220667,0.28799667,0.07505000,0.13610000,0.05600000,0.08294750,-0.09090000,0.03960000,0.12453750,-0.16280000,-0.01180000,0.48639500,0.02130000,0.38429500,0.20000000,0.33534667,-0.06380000,0.29060000,0.15348500,0.21900000,-0.17470000,0.26260100,0.30979516,0
102694,0.10054600,0.08151000,0.14935200,0.17431833,0.19230000,0.07257750,-0.02185000,0.18610000,0.12370667,0.36475833,0.17075000,0.05410000,0.85500000,0.06248250,-0.06010000,-0.20860000,0.21339500,-0.03180000,0.23580000,0.06579250,0.20120000,0.46487167,0.30000000,0.28082167,-0.16600000,-0.11000000,0.15003750,0.02630000,0.11510000,0.32735900,0.06406078,0
102706,0.07661700,0.11697000,0.07578200,0.24567667,0.30150000,0.13295250,-0.09900000,0.12580000,0.37649000,0.29782417,0.08765000,0.13640000,0.98100000,0.05880500,0.01370000,0.02990000,0.10307500,0.07500000,-0.08000000,0.22853250,-0.04170000,0.35884000,0.30000000,0.19360167,-0.09670000,0.08170000,0.27183250,0.20480000,-0.27890000,0.29263800,0.00150187,1
102708,0.08976600,0.33031000,0.13399400,0.18186833,0.31310000,0.06056825,-0.09550000,0.17040000,0.13539000,0.17682667,0.20440000,0.11610000,0.31100000,0.05179500,0.01360000,0.15140000,0.21172000,0.09560000,0.00210000,0.08586500,0.13390000,0.31563917,0.20000000,0.11177833,-0.23000000,-0.26060000,0.09929750,0.08310000,0.26440000,0.10678600,0.30716952,0
102710,0.18880400,0.11149500,0.17091000,0.15109667,0.45410000,0.14930775,-0.22975000,0.25370000,0.16081000,0.18030083,0.02000000,0.13460000,0.74300000,0.16654250,-0.12210000,0.27130000,0.06660000,-0.19860000,0.02950000,0.18700500,0.08000000,0.28642083,0.20000000,0.10580333,0.15220000,-0.03890000,0.14905500,-0.30190000,-0.20850000,0.12310400,0.07135714,0
102712,0.11913400,0.05927500,0.15873600,0.07787833,0.27930000,0.06041600,-0.09005000,0.22640000,0.00476000,0.17346583,0.02390000,0.02340000,0.77800000,0.14621250,-0.05980000,-0.13790000,0.06989750,0.03140000,0.06930000,0.06714000,0.11290000,0.18151500,0.20000000,0.14071333,-0.17820000,0.27950000,0.09322000,0.10110000,-0.03270000,0.12171500,0.00150270,1
102714,0.10423200,0.07072000,0.13491200,0.10459333,0.29090000,0.08552150,-0.10225000,0.20320000,0.00849333,0.19537333,0.03635000,0.13390000,0.41000000,0.11593750,-0.14460000,0.21000000,0.08426750,-0.16380000,0.00770000,0.05764500,0.05900000,0.22980333,0.20000000,0.14284000,-0.17200000,-0.29750000,0.17165750,0.11890000,-0.06060000,0.15436600,0.00150270,1
102716,0.06086300,0.30024500,0.08440600,0.21118333,0.07840000,0.00931775,0.16145000,0.10090000,0.16079667,0.14630583,0.12730000,0.04630000,0.00000000,0.06496000,0.07940000,-0.10940000,0.16539000,0.00140000,-0.04540000,0.12844750,-0.15360000,0.21115167,0.20000000,0.07092500,0.14470000,0.19720000,0.10218250,0.22310000,0.19860000,0.08342700,1.11743290,0
102718,0.12594800,0.09056000,0.17656800,0.01421833,0.47620000,0.11603575,-0.27355000,0.28430000,0.05995000,0.14460417,0.04455000,-0.13800000,0.67100000,0.11601250,0.06500000,-0.16120000,0.10333000,0.10590000,0.12020000,0.03245750,0.20050000,0.18537167,0.20000000,0.08005667,0.19350000,0.27530000,0.09438500,-0.28270000,-0.09710000,0.08578900,0.00150270,1
102720,0.16273600,0.07764500,0.20118800,0.14112333,0.38720000,0.05716250,-0.15225000,0.29290000,0.06782333,0.14098417,0.08095000,-0.10360000,0.85700000,0.09741750,-0.04900000,-0.12090000,0.15774750,-0.00770000,0.16910000,0.15280000,0.19420000,0.22397917,0.20000000,0.05786333,0.10980000,-0.16860000,0.08099250,-0.27740000,-0.12420000,0.06711500,0.07389913,0
102722,0.14299900,0.73668000,0.20390800,0.21272500,0.03220000,0.02433650,0.08405000,0.20140000,0.14473667,0.30164000,0.23155000,0.09700000,0.16600000,0.06685500,-0.17930000,-0.07740000,0.30958250,-0.10910000,0.11140000,0.16374250,-0.08020000,0.38240083,0.30000000,0.16093833,-0.11460000,0.27330000,0.18891750,-0.14680000,-0.24290000,0.21139300,0.74405625,0
102723,0.09964200,0.39861500,0.14751400,0.05255667,0.13410000,0.03609325,0.07360000,0.25140000,0.00803667,0.15896833,0.07845000,-0.05340000,0.00000000,0.06954500,0.03650000,-0.21410000,0.10911750,-0.06630000,0.01530000,0.09235250,-0.27470000,0.15162917,0.20000000,0.12001000,0.07160000,0.09670000,0.11822750,0.20570000,-0.24480000,0.11929700,1.45484847,0
102728,0.17257900,0.09134000,0.19112400,0.08032167,0.31390000,0.10050825,-0.11705000,0.29340000,0.00227000,0.20892750,0.03710000,-0.09380000,0.83800000,0.12268250,0.07680000,-0.17740000,0.09104000,-0.03090000,0.17800000,0.15297000,0.13910000,0.18890917,0.20000000,0.17020667,0.19190000,-0.19230000,0.15775000,-0.12190000,0.08600000,0.16522400,0.00150270,1
102732,0.10775100,0.21416500,0.17030200,0.13034500,0.03870000,0.02719800,0.01070000,0.25390000,0.11287000,0.18982500,0.21150000,-0.13590000,0.00000000,0.05259000,-0.21040000,-0.06340000,0.22243250,-0.15720000,-0.31160000,0.04037000,0.19660000,0.21293500,0.20000000,0.14011667,-0.06950000,-0.05310000,0.08427750,-0.03080000,0.23260000,0.11778100,0.74405625,0
102736,0.20794500,0.06297000,0.18723000,0.13557167,0.06550000,0.02247225,0.01745000,0.25710000,0.33149667,0.26632667,0.02360000,0.03700000,0.00800000,0.17610000,-0.16580000,0.30370000,0.08318750,-0.13930000,0.04790000,0.26884500,0.02690000,0.37982250,0.30000000,0.12581833,-0.10030000,-0.19030000,0.14112500,-0.03480000,-0.06830000,0.21587800,0.74405625,0
102740,0.18028000,0.28273000,0.26687400,0.03725000,0.04280000,0.02272125,0.11700000,0.31030000,0.10258667,0.18561417,0.06535000,0.14140000,0.00000000,0.14479000,0.05750000,-0.21190000,0.18918000,0.03210000,0.09730000,0.04045500,-0.09080000,0.18116750,0.20000000,0.07958167,-0.13310000,-0.01140000,0.10350000,-0.17590000,-0.30010000,0.08914900,0.94983486,0
102741,0.09175900,0.28961000,0.12581400,0.07908667,0.08130000,0.02108050,0.19455000,0.22170000,0.00862333,0.13818000,0.11745000,0.11370000,0.44100000,0.05697500,0.21450000,-0.06420000,0.13385250,0.23820000,-0.28470000,0.05285500,-0.07730000,0.14480500,0.20000000,0.09650000,0.24200000,0.05560000,0.07896250,0.16080000,0.27140000,0.08948500,1.45484847,0
102746,0.10449400,0.19807000,0.16111800,0.32559000,0.05860000,0.02889900,0.34760000,0.14780000,0.10925667,0.31546250,0.30620000,0.05030000,0.00000000,0.05449500,0.06330000,0.25420000,0.33371500,0.17170000,-0.27360000,0.13985250,-0.22740000,0.22515917,0.30000000,0.19280333,0.23600000,0.00170000,0.18542250,0.29460000,0.11320000,0.22327100,0.74405625,0
102748,0.09812900,0.20478500,0.12408400,0.27663667,0.37110000,0.18338025,-0.11615000,0.12180000,0.08995333,0.30990917,0.10370000,0.14140000,0.99900000,0.09292250,0.15010000,-0.13690000,0.19268500,0.11210000,-0.25270000,0.17206000,-0.19570000,0.36654417,0.20000000,0.31915667,-0.07970000,0.05630000,0.16538500,0.29140000,0.27930000,0.25764800,0.07389913,0
102755,0.09907900,0.26635500,0.14230000,0.12114833,0.20690000,0.10620350,-0.05260000,0.18290000,0.14431667,0.33438000,0.05250000,0.03400000,0.00700000,0.09577250,-0.12150000,0.30630000,0.10052750,-0.24460000,0.17100000,0.06444750,-0.26250000,0.40399500,0.30000000,0.29062167,-0.11690000,0.05570000,0.25985500,0.09000000,-0.21370000,0.32273600,0.30716952,0
102764,0.16218900,0.70285000,0.27555000,0.09519667,0.10750000,0.05554925,0.06475000,0.25670000,0.64144667,0.61264583,0.22145000,-0.11200000,0.00000000,0.05023750,0.05830000,-0.01220000,0.22251250,-0.19190000,0.04540000,0.14826750,0.30830000,0.63625167,0.30000000,0.19482167,0.17960000,-0.06990000,0.27930000,0.07210000,0.10950000,0.62607500,1.52795207,0
102766,0.13406500,0.34300000,0.20901800,0.14902000,0.07980000,0.01326400,0.04345000,0.24120000,0.09031667,0.15075667,0.14745000,0.01770000,0.09000000,0.05210250,0.18950000,0.15790000,0.15366750,-0.03950000,0.23340000,0.08944500,0.06930000,0.24161167,0.20000000,0.10776000,-0.06150000,-0.08800000,0.08486000,-0.14130000,-0.15520000,0.09860000,1.45908423,0
102768,0.13186000,0.14791000,0.16465400,0.18972167,0.52640000,0.17590900,-0.17430000,0.18740000,0.00130000,0.17225500,0.05425000,0.13970000,0.69700000,0.11113000,-0.13160000,0.18540000,0.12054750,-0.02740000,-0.28710000,0.12001000,0.27870000,0.20625750,0.20000000,0.13810333,0.07770000,-0.03690000,0.07793250,-0.44870000,-0.05670000,0.11403500,0.00150270,1
102774,0.15533600,0.07248500,0.22660600,0.03897000,0.49450000,0.09146475,-0.18460000,0.28600000,0.09447667,0.14351500,0.05975000,-0.13320000,0.85100000,0.12629750,-0.00050000,0.22090000,0.15094750,-0.05630000,-0.05960000,0.02393750,-0.12090000,0.21761917,0.20000000,0.05118833,0.09160000,-0.07810000,0.07651750,-0.40290000,-0.31260000,0.06132000,0.00150270,1
102777,0.08286900,0.09349000,0.11090800,0.14136833,0.02000000,0.01426000,0.00040000,0.15800000,0.00682000,0.15127500,0.02600000,0.14130000,0.00000000,0.13387750,-0.20570000,-0.18060000,0.06966500,-0.23930000,-0.02620000,0.06205000,-0.09890000,0.23269417,0.20000000,0.10432167,0.00330000,0.23060000,0.09380250,0.02320000,0.11320000,0.10011300,1.45484847,0
102781,0.11417700,0.05464000,0.11270600,0.15021000,0.53410000,0.20396850,-0.35655000,0.24010000,0.00598333,0.13435250,0.06580000,0.12290000,1.00000000,0.05020000,-0.16950000,-0.12340000,0.06606500,0.00280000,-0.29070000,0.15086250,-0.26320000,0.15016167,0.20000000,0.11189833,0.26490000,0.01070000,0.11894500,-0.26920000,0.15030000,0.11471700,0.00150270,1
102782,0.13184200,0.15064500,0.09152400,0.22878667,0.06870000,0.01474300,0.09785000,0.17520000,0.10614667,0.14762083,0.07465000,0.13930000,0.00100000,0.05502000,-0.15850000,0.26710000,0.08213500,-0.05130000,0.12860000,0.23622000,0.18340000,0.17393250,0.20000000,0.14834500,-0.10970000,-0.17040000,0.08319000,-0.17840000,-0.08840000,0.12228300,0.00150187,1
102788,0.10579500,0.10708000,0.15074600,0.09184833,0.60420000,0.19482750,-0.45145000,0.19620000,0.00821333,0.13932500,0.02390000,-0.01910000,0.84900000,0.15181500,0.18240000,-0.05440000,0.07257500,0.09120000,-0.22810000,0.06255000,-0.30980000,0.18883333,0.20000000,0.07711167,0.27090000,0.10780000,0.07792000,-0.33330000,0.27650000,0.07743400,0.06406078,0
102799,0.08863800,0.19378000,0.12739000,0.29807167,0.07890000,0.02849850,0.01985000,0.09390000,0.14534333,0.32161833,0.06365000,0.08270000,0.00100000,0.14826750,-0.09960000,-0.13640000,0.18878250,-0.17680000,-0.08290000,0.12910500,-0.14600000,0.41176583,0.30000000,0.20929167,-0.03490000,0.18920000,0.19067250,-0.11380000,0.27340000,0.25112200,0.30716952,0
102800,0.07571900,0.21641500,0.10877200,0.06128667,0.02320000,0.01159775,0.10770000,0.20090000,0.12464333,0.15154083,0.07540000,-0.10870000,0.00000000,0.06178250,-0.12120000,-0.30840000,0.09317750,-0.20090000,-0.12400000,0.07684000,0.01480000,0.41831167,0.30000000,0.07705167,0.13560000,0.25930000,0.09742750,0.15880000,0.15560000,0.11986500,0.30097511,0
102805,0.10349500,0.00443500,0.14482800,0.09382333,0.12470000,0.03007925,-0.00600000,0.20930000,0.11653333,0.17140917,0.03190000,0.09440000,0.15000000,0.11214500,-0.00740000,-0.05330000,0.07151000,-0.13770000,0.11050000,0.02305500,0.11600000,0.33440917,0.30000000,0.10185667,0.01050000,-0.30580000,0.10082750,-0.11420000,-0.00250000,0.13222800,0.07135714,0
102811,0.11333500,0.01139500,0.14274800,0.34230833,0.07450000,0.01572225,-0.00025000,0.13020000,0.15571333,0.27196500,0.13095000,0.09310000,0.00000000,0.07976000,0.07220000,-0.31320000,0.20892750,0.19690000,-0.27580000,0.22983250,-0.27320000,0.27191250,0.30000000,0.19261833,-0.00070000,0.04830000,0.12028000,0.07380000,0.03740000,0.21088200,0.00150187,1
102812,0.11980400,0.26218000,0.18838000,0.06774000,0.04520000,0.01704500,0.64115000,0.21450000,0.07607000,0.14594417,0.06860000,-0.14140000,0.00000000,0.11270250,-0.01560000,0.26010000,0.15464000,-0.05460000,0.04920000,0.03681750,-0.16130000,0.21251250,0.20000000,0.06221333,0.38140000,-0.12260000,0.07717000,0.33620000,0.24420000,0.06819600,0.01863612,1
102822,0.07194900,0.22616000,0.08070200,0.18677500,0.16400000,0.05784450,-0.03320000,0.12620000,0.19455333,0.25774833,0.07200000,0.12610000,0.11900000,0.07081000,0.15440000,0.08220000,0.10198000,0.12850000,-0.04120000,0.14614250,0.05510000,0.26033917,0.30000000,0.16692833,0.09100000,-0.24880000,0.20407000,-0.07300000,0.16730000,0.24018200,0.30716952,0
102825,0.12058100,0.01857500,0.14505600,0.26630167,0.28910000,0.15147625,0.11090000,0.14520000,0.00010333,0.32190417,0.06720000,0.10520000,0.01700000,0.11583500,0.04200000,-0.24540000,0.15572250,0.08490000,0.24420000,0.20300750,0.24940000,0.30030667,0.20000000,0.23762333,-0.35210000,-0.13030000,0.33772000,-0.06300000,0.06140000,0.27766200,0.01863612,1
102833,0.07843300,0.05060000,0.11396800,0.22649833,0.31020000,0.09534300,0.16495000,0.12180000,0.19019667,0.27812000,0.15715000,0.07340000,0.04400000,0.06449250,-0.13530000,0.06680000,0.20268000,-0.03500000,0.13570000,0.08801000,0.15470000,0.31532500,0.30000000,0.19737000,0.08380000,-0.10140000,0.13734000,0.39390000,-0.24970000,0.22687500,0.07135714,0
102834,0.27058000,0.39136000,0.44812200,0.19417833,0.14690000,0.05454050,0.07700000,0.31530000,0.04518333,0.26944417,0.23490000,-0.08600000,0.00000000,0.05958750,0.20940000,-0.00230000,0.27993750,-0.08930000,-0.10330000,0.04796750,-0.30440000,0.36306333,0.20000000,0.18911833,0.07080000,0.15120000,0.18512750,0.21760000,-0.27500000,0.18752200,3.46443398,0
102840,0.08190400,0.02310000,0.11500600,0.14946500,0.17630000,0.03863900,0.11775000,0.13850000,0.00740333,0.18415083,0.02260000,0.08070000,0.33600000,0.16596000,0.05460000,0.07050000,0.07507500,0.08490000,-0.06460000,0.05433750,-0.08270000,0.24757083,0.20000000,0.11540000,0.26510000,0.25540000,0.13831750,0.08880000,-0.21870000,0.12456800,0.07389913,0
102843,0.13630500,0.06553000,0.15767400,0.16765333,0.52030000,0.20807225,-0.33800000,0.19560000,0.08573000,0.18247167,0.03725000,0.12270000,0.95800000,0.13654250,0.09150000,0.05130000,0.10179000,0.06270000,0.24470000,0.14109000,0.21730000,0.21060167,0.20000000,0.10338333,-0.25140000,-0.17900000,0.15400750,0.26880000,-0.05180000,0.12363300,0.00150270,1
102844,0.11663900,0.17890000,0.18264800,0.19853333,0.11890000,0.02795925,0.05195000,0.13970000,0.09255333,0.22235917,0.05360000,0.11110000,0.00000000,0.17136750,0.06450000,0.04240000,0.18362250,0.05570000,-0.09700000,0.03052750,0.03100000,0.33928417,0.20000000,0.15080000,-0.05860000,-0.30260000,0.08588750,-0.17740000,0.15240000,0.12483500,0.01863612,1
102849,0.10119200,0.13886500,0.12518200,0.12114833,0.20220000,0.02425950,0.04515000,0.21340000,0.09905333,0.15353167,0.03005000,0.14140000,0.99500000,0.10988000,0.21620000,0.12930000,0.06600000,0.14570000,-0.29760000,0.08465000,0.23410000,0.14384250,0.30000000,0.07771833,0.23990000,-0.05440000,0.08504000,0.03770000,-0.07900000,0.11388500,0.00265331,1
102852,0.13297400,0.04412500,0.17712800,0.17554500,0.62420000,0.30427350,-0.48335000,0.26130000,0.00836000,0.16534583,0.15810000,0.07620000,0.83000000,0.05396500,-0.02850000,0.21260000,0.17064750,-0.16220000,-0.01180000,0.12674500,-0.02680000,0.19001000,0.20000000,0.10296000,-0.33940000,0.28550000,0.11698500,0.28490000,-0.27960000,0.10857000,0.00150270,1
102853,0.08175200,0.19689000,0.11767600,0.12329667,0.09090000,0.02706300,0.00105000,0.18770000,0.10693000,0.13866750,0.10015000,0.00520000,0.00100000,0.05070750,-0.00250000,0.10040000,0.10157500,-0.16970000,0.18580000,0.09272250,0.29220000,0.19209167,0.20000000,0.12038667,-0.00230000,-0.12360000,0.08314000,-0.09310000,0.15770000,0.10548800,0.07135714,0
102863,0.09889800,0.31292500,0.15680200,0.06864167,0.20850000,0.04800275,-0.05395000,0.24310000,0.17379333,0.19800083,0.13890000,-0.14080000,0.02100000,0.05456000,-0.07700000,0.20800000,0.15155750,-0.19610000,-0.20840000,0.06012750,-0.01630000,0.19412083,0.30000000,0.11884000,0.11310000,-0.28690000,0.12658250,-0.09540000,0.05220000,0.15515400,2.42468588,0
102867,0.16960400,0.18975500,0.20723200,0.09995833,0.70820000,0.35641650,-0.60355000,0.29820000,0.07789000,0.14106667,0.03495000,0.14130000,0.78700000,0.12189500,-0.08980000,0.18630000,0.08525250,-0.24150000,-0.07050000,0.09064750,0.04350000,0.21258583,0.20000000,0.09321167,0.28570000,-0.16250000,0.07623750,-0.42250000,0.22700000,0.08642200,0.00150270,1
102868,0.11087400,0.01370000,0.13566600,0.21406333,0.54880000,0.36199325,-0.35365000,0.16360000,0.01192000,0.22539583,0.05280000,0.10890000,0.97300000,0.09407000,0.03440000,-0.07370000,0.09935000,-0.11270000,-0.14540000,0.14336000,-0.13970000,0.21968500,0.20000000,0.20386000,0.20690000,0.24940000,0.17697500,-0.34190000,0.07520000,0.19310600,0.00150270,1
102869,0.11919700,0.30728000,0.15949200,0.06255833,0.15890000,0.03614225,-0.02630000,0.30720000,0.00391000,0.16174750,0.03825000,-0.13940000,0.00300000,0.11349000,0.14010000,0.30140000,0.08681250,0.15990000,-0.02030000,0.06854500,0.27560000,0.20069250,0.20000000,0.12530333,0.04710000,-0.04710000,0.09698500,-0.11180000,0.24780000,0.11397600,1.45484847,0
102872,0.11451400,0.01575000,0.15788600,0.01462167,0.50470000,0.11514200,-0.31840000,0.30200000,0.02996333,0.12671000,0.03935000,0.13790000,0.45600000,0.10906250,0.18100000,-0.28790000,0.08584500,0.22340000,0.01110000,0.01204750,-0.01350000,0.17558083,0.20000000,0.07010667,-0.25260000,0.22650000,0.08006250,0.25210000,-0.05030000,0.07408900,0.07389913,0
102873,0.12704200,0.20379500,0.13692200,0.34623333,0.53460000,0.39855975,-0.35430000,0.14320000,0.01009000,0.28683583,0.01595000,0.10250000,0.98900000,0.20494500,-0.06610000,-0.28510000,0.06537250,0.05200000,-0.20410000,0.26675250,-0.28330000,0.29620333,0.20000000,0.26680833,-0.24290000,0.00690000,0.18997750,0.29180000,0.11660000,0.23607600,0.00150270,1
102877,0.11002100,0.09093000,0.15965400,0.35837667,0.01250000,0.01346450,0.10780000,0.11320000,0.15680667,0.35807000,0.01010000,0.14130000,0.00000000,0.41350750,0.10560000,-0.13900000,0.08365250,0.11400000,-0.25190000,0.08866750,-0.19850000,0.46144083,0.30000000,0.18883667,-0.15320000,0.15680000,0.18099000,-0.14070000,0.10310000,0.23081900,0.00150270,1
102880,0.13675800,0.05371000,0.16286400,0.15756833,0.01310000,0.00749975,0.38185000,0.23030000,0.07591000,0.18781833,0.03965000,0.12750000,0.00000000,0.09101250,0.23590000,-0.12430000,0.07217750,0.04590000,0.00580000,0.11172250,-0.02430000,0.22118583,0.30000000,0.09735000,0.26990000,0.30340000,0.14027750,0.28300000,0.25780000,0.16010600,0.00150270,1
102886,0.15581700,0.16873500,0.14899200,0.16142667,0.16550000,0.02895925,0.12740000,0.30820000,0.07166000,0.17391417,0.04890000,0.14100000,0.99900000,0.08976500,0.11370000,-0.08340000,0.08781500,0.17700000,0.24330000,0.23666500,0.30270000,0.22141500,0.30000000,0.10014167,0.26250000,-0.07840000,0.11074000,0.09710000,0.04470000,0.13766500,0.07135714,0
102887,0.09780700,0.02138000,0.11143400,0.13444667,0.58010000,0.31846975,-0.41705000,0.24950000,0.07847667,0.16752250,0.09285000,0.11220000,0.98500000,0.05318250,-0.09780000,0.01700000,0.09876750,-0.06250000,-0.23000000,0.13985250,-0.22090000,0.18581250,0.20000000,0.12182833,-0.31710000,0.04180000,0.16787500,0.26300000,0.18940000,0.14024700,0.00150270,1
102893,0.11713800,0.03152000,0.14357400,0.15969500,0.39770000,0.10328600,-0.18770000,0.24030000,0.06775667,0.16321833,0.10245000,0.08210000,0.96000000,0.06383250,-0.07610000,-0.03560000,0.13079000,-0.00460000,0.19380000,0.14992500,0.20510000,0.22760833,0.20000000,0.12837333,0.15400000,-0.19360000,0.10247250,-0.24370000,-0.00750000,0.11801300,0.00150270,1
102896,0.10073800,0.06236500,0.12002800,0.12245500,0.40450000,0.06275200,-0.06665000,0.21240000,0.06721000,0.11060667,0.06340000,0.05740000,0.03400000,0.07287250,-0.13780000,0.19320000,0.09243000,-0.20640000,-0.00780000,0.12501750,-0.03690000,0.18082667,0.20000000,0.05671667,0.36830000,-0.23400000,0.08144000,-0.03620000,0.28030000,0.06660600,0.07135714,0
102897,0.09304600,0.26366000,0.13003800,0.07872833,0.13020000,0.05668700,0.04400000,0.26470000,0.05923333,0.21169667,0.06695000,-0.13950000,0.99400000,0.07230000,-0.13210000,0.10540000,0.09679500,-0.11920000,-0.15900000,0.13216500,-0.28350000,0.23601250,0.20000000,0.18116000,-0.17930000,0.07940000,0.19425250,-0.04910000,-0.23780000,0.18639800,0.07135714,0
102898,0.09282000,0.00204000,0.12319800,0.27255667,0.12660000,0.04095000,-0.02000000,0.10740000,0.11925000,0.32644083,0.01405000,0.09880000,0.98500000,0.28360750,0.01170000,0.26870000,0.07973500,0.00580000,0.16140000,0.10985500,0.16030000,0.38110667,0.30000000,0.19912000,-0.06540000,-0.11400000,0.23081750,0.06120000,-0.04110000,0.24639300,0.35853999,0
102903,0.12394800,0.07543500,0.14026000,0.13737333,0.57560000,0.23384775,-0.41290000,0.21330000,0.04731000,0.15454333,0.04135000,0.12750000,0.93600000,0.10924750,0.06270000,0.06010000,0.09036250,0.09030000,-0.15140000,0.12748500,-0.11610000,0.24389833,0.20000000,0.09610833,-0.27160000,0.15110000,0.11985750,0.30400000,-0.30990000,0.10560800,0.00150270,1
102905,0.09156300,0.09699000,0.07723600,0.27570000,0.08120000,0.02115825,-0.00735000,0.13320000,0.02046333,0.19461833,0.08545000,0.13310000,0.36400000,0.05562500,-0.14530000,0.14380000,0.09507750,-0.05420000,0.04660000,0.27914250,0.07640000,0.23919917,0.20000000,0.19690000,-0.05400000,-0.22070000,0.13780250,0.02720000,-0.28140000,0.17326100,0.00150187,1
102908,0.08275800,0.18484000,0.06121600,0.20879500,0.24870000,0.07309000,0.14175000,0.13930000,0.02505000,0.18813417,0.06645000,0.14080000,0.08400000,0.05160500,0.02760000,-0.22290000,0.06858750,0.01350000,-0.08430000,0.22129750,-0.16120000,0.28969417,0.20000000,0.20727833,0.08500000,0.20420000,0.13329000,0.33370000,0.03850000,0.17768400,0.30979516,0
102910,0.10352400,0.08147000,0.14590400,0.10836667,0.17200000,0.02137450,-0.03655000,0.28150000,0.01725667,0.13031500,0.12615000,0.13690000,0.89800000,0.05814000,0.04400000,0.08370000,0.14670250,0.03760000,-0.26320000,0.06985750,-0.30370000,0.16966583,0.20000000,0.06922833,0.09550000,-0.03250000,0.08225750,-0.07660000,0.09580000,0.07444000,0.00150270,1
102914,0.10110400,0.22854500,0.12457000,0.20020333,0.45670000,0.19560375,-0.26000000,0.16830000,0.10172000,0.23886417,0.02905000,0.13200000,0.91600000,0.13185250,-0.14490000,-0.28790000,0.07661750,-0.08010000,0.18520000,0.14704250,0.29890000,0.26909167,0.30000000,0.19817167,-0.24070000,-0.04640000,0.13199250,0.21600000,0.17240000,0.20324800,0.07135714,0
102916,0.07605400,0.25115000,0.11804600,0.11220667,0.27020000,0.07406550,-0.06105000,0.14150000,0.03613667,0.22320083,0.06780000,-0.04140000,0.71800000,0.08892250,-0.05250000,-0.14240000,0.12057250,-0.15560000,-0.04540000,0.03539750,-0.30360000,0.26818667,0.30000000,0.14750833,-0.21290000,0.29140000,0.15398500,0.05730000,0.07990000,0.18404300,0.07389913,0
102928,0.12446400,0.14499500,0.17867600,0.21729333,0.04400000,0.03475425,-0.00210000,0.17010000,0.17129000,0.33469167,0.09415000,0.14140000,0.00000000,0.09407750,-0.00970000,-0.24200000,0.17711000,-0.13660000,-0.12880000,0.09405000,-0.18570000,0.33433000,0.30000000,0.22134667,-0.02990000,0.06320000,0.15750000,0.01410000,0.21910000,0.29315500,0.00150187,1
102930,0.13450800,0.20956500,0.16179600,0.11052833,0.36120000,0.06978750,-0.14035000,0.27360000,0.06910333,0.14522333,0.04130000,0.14090000,0.86400000,0.11353750,0.00300000,-0.04080000,0.09379750,-0.00170000,0.23270000,0.13075500,0.13410000,0.20693167,0.20000000,0.08090000,0.24800000,-0.15100000,0.10698750,-0.11320000,0.30150000,0.09133400,0.00265331,1
102931,0.07785100,0.17370000,0.10689600,0.03997000,0.22520000,0.02706825,-0.04715000,0.29610000,0.01287667,0.10057333,0.08400000,-0.14140000,0.10600000,0.05164000,-0.23820000,0.07450000,0.08677500,-0.22570000,-0.22140000,0.05110500,0.26490000,0.21022667,0.20000000,0.05481167,-0.16950000,0.12940000,0.08108750,0.05560000,-0.09670000,0.06532200,1.98983080,0
102938,0.12200600,0.23266500,0.16151800,0.10918167,0.48840000,0.28252000,-0.29630000,0.27140000,0.07504000,0.26642500,0.02260000,0.14030000,0.89800000,0.15351750,-0.05020000,0.13760000,0.06933250,-0.06060000,-0.13360000,0.07422250,0.05550000,0.34555917,0.30000000,0.19759333,-0.22470000,-0.26320000,0.20061250,0.26370000,0.03050000,0.23057000,0.00150270,1
102958,0.07883800,0.18530500,0.12146000,0.13240667,0.17030000,0.03291650,-0.02140000,0.16730000,0.09157333,0.17010750,0.12160000,0.00710000,0.00000000,0.05201250,0.06740000,-0.29240000,0.12652250,0.23300000,0.31220000,0.04699000,-0.18720000,0.21465833,0.30000000,0.08895667,0.03070000,-0.07160000,0.11920750,-0.13960000,0.13460000,0.13271400,1.37339095,0
102962,0.07143700,0.26760000,0.12331000,0.05689000,0.40390000,0.10068175,-0.18195000,0.17550000,0.28408667,0.15914667,0.04700000,-0.10700000,0.97000000,0.09201000,-0.01300000,0.06970000,0.08653000,0.10130000,-0.06350000,0.07932750,-0.25150000,0.09779750,0.20000000,0.14215000,0.26830000,-0.28380000,0.08567250,-0.13560000,0.26630000,0.11955900,0.00150270,1
102965,0.10871300,0.03150000,0.16799800,0.18593667,0.07310000,0.01587175,0.03360000,0.16100000,0.16295333,0.24281333,0.11385000,0.11840000,0.01300000,0.08820500,0.06510000,0.06350000,0.20087000,0.16610000,-0.06190000,0.03609750,-0.04330000,0.34617167,0.30000000,0.14597167,0.12630000,-0.29740000,0.14437500,0.05320000,0.29160000,0.17574500,0.30097511,0
102968,0.12687000,0.34112500,0.16667000,0.08703333,0.14680000,0.03556475,-0.02635000,0.27380000,0.15709333,0.23537500,0.09150000,0.14090000,0.00100000,0.07800500,0.22800000,-0.21100000,0.14276750,0.20210000,0.14480000,0.08725000,-0.30960000,0.28372583,0.30000000,0.10261500,-0.06240000,-0.14340000,0.12392000,0.08440000,0.17490000,0.19414100,0.00150270,1
102970,0.13478700,0.00074000,0.16073000,0.10415333,0.12700000,0.01486550,0.35490000,0.27430000,0.00153667,0.12780917,0.06205000,0.09920000,0.59100000,0.09199000,-0.22580000,0.15840000,0.11414250,-0.22780000,-0.19560000,0.12281500,-0.19530000,0.09587667,0.20000000,0.06439167,-0.21040000,0.05240000,0.08070750,-0.33740000,0.14970000,0.07091800,0.00265331,1
102971,0.17368300,0.48777500,0.20877400,0.04845167,0.12490000,0.02602075,0.15480000,0.29590000,0.10758333,0.14885250,0.08120000,-0.07620000,0.02500000,0.08206500,0.21270000,0.31400000,0.13326500,0.06670000,-0.05700000,0.11186250,0.26710000,0.14777667,0.20000000,0.09440833,0.12430000,0.00840000,0.08961500,0.24920000,-0.22460000,0.09249100,1.16438024,0
102973,0.09425500,0.40717000,0.15194600,0.04378667,0.00170000,0.02991325,0.28185000,0.18500000,0.14613000,0.22746000,0.07260000,-0.14140000,0.00000000,0.09853750,0.08390000,-0.27700000,0.14306500,0.07130000,0.16680000,0.08917250,-0.05780000,0.29735083,0.30000000,0.11536167,0.23830000,-0.29950000,0.15017000,0.23660000,-0.07090000,0.17631200,0.96278232,0
102974,0.09431600,0.33909000,0.13035600,0.28866500,0.19750000,0.08710900,-0.04335000,0.10760000,0.05698333,0.34467750,0.02540000,0.06050000,0.34200000,0.22029000,-0.03140000,-0.10160000,0.11183250,-0.06940000,-0.20230000,0.16152500,-0.06580000,0.45839667,0.20000000,0.36916333,0.13160000,0.20070000,0.14816250,-0.06590000,-0.14920000,0.28076400,0.35853999,0
102975,0.21305700,0.26992500,0.34380400,0.06764167,0.06980000,0.01969025,0.01270000,0.31340000,0.11458000,0.13372750,0.03740000,-0.13100000,0.00300000,0.12421500,-0.13240000,-0.05310000,0.09286000,0.14620000,0.09050000,0.06582750,0.29880000,0.16336000,0.20000000,0.06656000,0.09620000,-0.28660000,0.08426750,0.02640000,0.02770000,0.07364200,1.23812294,0
102982,0.09805900,0.22288500,0.12569200,0.26800167,0.02290000,0.00867725,0.31985000,0.14080000,0.01460667,0.22440250,0.18670000,0.14020000,0.02500000,0.05831000,-0.13890000,-0.21190000,0.21773250,-0.23120000,0.31020000,0.15862500,-0.25720000,0.26814917,0.20000000,0.20408000,-0.26460000,0.02250000,0.09104500,-0.24170000,0.06440000,0.15886600,1.45484847,0
102986,0.12093300,0.04102000,0.14674200,0.16683167,0.06860000,0.00846550,0.42265000,0.16460000,0.06775333,0.15932000,0.02285000,0.07750000,0.00000000,0.18431000,-0.06160000,-0.29600000,0.08422250,-0.08230000,0.16910000,0.12262750,0.14890000,0.19393333,0.20000000,0.08659000,-0.32700000,-0.09370000,0.07954000,-0.25850000,-0.08150000,0.08377000,0.00150270,1
102988,0.13355000,0.03620000,0.16373400,0.19481167,0.01190000,0.02215375,0.03360000,0.19790000,0.01091333,0.17895500,0.05965000,0.03660000,0.00000000,0.08093500,-0.23150000,-0.24650000,0.09656500,-0.03400000,-0.25930000,0.11691750,-0.27640000,0.22973083,0.20000000,0.14966000,-0.08810000,0.00190000,0.13487500,-0.07620000,0.13580000,0.14374600,0.00265331,1
102990,0.15045100,0.00702500,0.20839200,0.02809333,0.31700000,0.12442000,-0.11295000,0.30010000,0.21488333,0.30630417,0.04660000,0.11690000,0.78200000,0.12339500,-0.03960000,-0.29210000,0.11504750,-0.12900000,-0.00560000,0.02661000,-0.01200000,0.32064917,0.30000000,0.23500000,-0.20880000,0.15430000,0.17007250,0.10820000,-0.19510000,0.27218800,0.00150270,1
103001,0.08604300,0.26440500,0.12246200,0.15912500,0.02730000,0.01929225,-0.00075000,0.18560000,0.10878667,0.16839000,0.12160000,-0.04190000,0.00000000,0.06049000,-0.11300000,0.18680000,0.14709500,-0.15090000,-0.25990000,0.15689750,-0.16980000,0.27206500,0.20000000,0.13115500,-0.00810000,0.09110000,0.10085250,0.01920000,-0.05200000,0.11903400,1.03859888,0
103004,0.13814900,0.34598500,0.11721400,0.21641333,0.09410000,0.03006900,0.19055000,0.18860000,0.23811667,0.32076333,0.12235000,0.14080000,0.00000000,0.05763000,-0.07280000,-0.00670000,0.14104500,-0.05280000,0.18080000,0.20607000,0.07440000,0.38146417,0.30000000,0.23655333,-0.15380000,-0.17340000,0.16547500,-0.24790000,-0.24860000,0.30544500,0.00150187,1

Test data:

# higgs_test_200.txt
# EventId,DER_mass_MMC,DER_mass_transverse_met_lep,DER_mass_vis,DER_pt_h,DER_deltaeta_jet_jet,DER_mass_jet_jet,DER_prodeta_jet_jet,DER_deltar_tau_lep,DER_pt_tot,DER_sum_pt,DER_pt_ratio_lep_tau,DER_met_phi_centrality,DER_lep_eta_centrality,PRI_tau_pt,PRI_tau_eta,PRI_tau_phi,PRI_lep_pt,PRI_lep_eta,PRI_lep_phi,PRI_met,PRI_met_phi,PRI_met_sumet,PRI_jet_num,PRI_jet_leading_pt,PRI_jet_leading_eta,PRI_jet_leading_phi,PRI_jet_subleading_pt,PRI_jet_subleading_eta,PRI_jet_subleading_phi,PRI_jet_all_pt,Weight,Label
#
103008,0.13745700,0.01509000,0.14934000,0.13617500,0.59540000,0.19394300,-0.44270000,0.26250000,0.00647333,0.13102583,0.05965000,0.08730000,0.82400000,0.08707000,-0.08390000,0.04160000,0.10390250,-0.12090000,0.30150000,0.17211500,0.30710000,0.10815083,0.20000000,0.08073667,-0.28770000,-0.02800000,0.08100250,0.30770000,-0.02780000,0.08084200,0.00150270,1
103009,0.08993600,0.33025500,0.08377000,0.23329333,0.36840000,0.13527425,-0.16965000,0.12890000,0.17275333,0.28088917,0.14135000,0.11630000,0.68500000,0.05039750,0.16900000,0.27440000,0.14248250,0.11300000,0.15820000,0.20538500,0.25900000,0.32029667,0.30000000,0.31050167,0.18400000,-0.13490000,0.09434750,-0.18440000,0.11940000,0.25991500,0.07135714,0
103010,0.09879100,0.30388500,0.11410400,0.36144333,0.27550000,0.10926175,-0.08245000,0.09650000,0.10024333,0.38022333,0.02535000,0.09570000,0.50800000,0.21401750,-0.09500000,0.24960000,0.10852750,-0.06350000,0.15840000,0.25634000,0.25300000,0.51795167,0.30000000,0.33980333,-0.08790000,-0.09920000,0.14011750,0.18750000,0.09510000,0.32725000,0.07135714,0
103020,0.07343000,0.05847000,0.06598000,0.70534333,0.14110000,0.09133750,0.07880000,0.05320000,0.24721000,0.59224500,0.12600000,0.11410000,0.27500000,0.09873250,-0.06550000,0.10290000,0.24883500,-0.06380000,0.04970000,0.72107500,0.05660000,0.65011583,0.30000000,0.53645333,-0.07350000,-0.25040000,0.43541500,-0.21450000,-0.25440000,0.57166800,0.08341403,0
103021,0.10458300,0.10348000,0.13544200,0.20038000,0.40090000,0.12120600,-0.14170000,0.21730000,0.01188000,0.18684417,0.17100000,0.12620000,0.94800000,0.05050250,0.10590000,-0.01890000,0.17272250,0.15490000,0.19280000,0.14791500,0.16030000,0.20874250,0.20000000,0.13550833,0.30920000,-0.11990000,0.13404500,-0.09170000,-0.20590000,0.13492300,0.00150270,1
103028,0.09371900,0.00501500,0.10423200,0.20945333,0.05450000,0.02399900,0.00515000,0.12650000,0.10239000,0.18546917,0.02480000,0.09760000,0.00000000,0.15642750,-0.08840000,0.29900000,0.07757750,-0.09270000,-0.20290000,0.15366250,-0.20060000,0.22114917,0.20000000,0.12183833,0.01490000,0.00860000,0.13964500,0.06940000,0.15640000,0.12896100,0.00265331,1
103029,0.12818400,0.02025500,0.19427200,0.13222333,0.52820000,0.17483750,-0.34380000,0.23460000,0.00875000,0.14105583,0.08215000,0.06390000,0.42900000,0.06553000,0.01950000,-0.16590000,0.10769750,-0.21170000,-0.20570000,0.02967500,-0.22360000,0.15825083,0.20000000,0.08713167,0.29550000,0.06100000,0.11924250,-0.23270000,0.18320000,0.09997600,0.00150270,1
103033,0.14352000,0.52074000,0.18153600,0.07509833,0.50080000,0.16513200,-0.29865000,0.23630000,0.00920000,0.17180333,0.12150000,-0.02330000,0.99200000,0.06945250,0.14600000,-0.20320000,0.16875250,0.03260000,0.21790000,0.10535500,-0.13990000,0.19482917,0.20000000,0.11559667,0.30500000,0.08860000,0.10380750,-0.19580000,-0.16340000,0.11088100,0.00150270,1
103038,0.14969000,0.25643000,0.14572000,0.23577833,0.07810000,0.03696500,0.00440000,0.18520000,0.03233333,0.26690583,0.03425000,0.14090000,0.00000000,0.13299000,0.13250000,0.23550000,0.09112250,0.19360000,0.06080000,0.20693500,0.15790000,0.31073500,0.30000000,0.18399333,0.08810000,-0.09670000,0.20891750,0.01000000,-0.23690000,0.23064200,0.30716952,0
103040,0.24620300,0.49059500,0.43454800,0.16151833,0.30450000,0.06108225,0.16930000,0.24100000,0.07692667,0.23540333,0.03550000,-0.13770000,0.04500000,0.23994750,0.17350000,-0.28340000,0.17036250,-0.02970000,-0.15380000,0.09343500,0.11300000,0.27942667,0.20000000,0.13818333,0.39110000,0.06370000,0.08862750,0.08660000,0.16320000,0.11836000,0.74405625,0
103044,0.13202400,0.32275500,0.15493400,0.28687833,0.38330000,0.15752200,-0.12310000,0.15900000,0.10992000,0.27520417,0.02575000,0.09460000,0.98500000,0.17127750,-0.02750000,-0.07830000,0.08827250,-0.13350000,0.04010000,0.22020250,-0.08330000,0.26602417,0.30000000,0.21187500,0.08160000,0.31280000,0.16847500,-0.30170000,0.15830000,0.22642500,0.00150270,1
103051,0.12286400,0.03758000,0.13229600,0.27954500,0.16920000,0.04986725,0.00270000,0.12260000,0.09808667,0.27696000,0.02525000,0.08610000,0.44100000,0.20057000,0.04140000,-0.03580000,0.10129500,0.01120000,-0.15460000,0.21361250,-0.16730000,0.46057333,0.30000000,0.20278000,0.17230000,0.23390000,0.14705250,0.00310000,0.08740000,0.21160600,0.00150270,1
103052,0.16424600,0.11182500,0.22496600,0.02839833,0.28590000,0.05502275,-0.04080000,0.32830000,0.15109333,0.19992000,0.03435000,-0.14140000,0.40800000,0.14625500,0.08710000,0.16200000,0.10051000,-0.02460000,-0.14680000,0.02012250,-0.28090000,0.28276917,0.30000000,0.11535667,-0.03210000,0.07700000,0.09041250,0.25380000,-0.18040000,0.14119800,0.00150270,1
103063,0.09491100,0.01802500,0.12218200,0.25716500,0.20000000,0.05930300,-0.01310000,0.12100000,0.00389000,0.26884333,0.07685000,0.10580000,0.87100000,0.10781500,-0.02740000,0.23940000,0.16567750,-0.04880000,0.12030000,0.16462750,0.12570000,0.28925333,0.20000000,0.29767667,0.01410000,-0.15020000,0.08652250,-0.18590000,0.23340000,0.21321500,0.30979516,0
103075,0.08331000,0.19017000,0.06587000,0.36187000,0.15380000,0.04642725,-0.02945000,0.08450000,0.08285667,0.26075250,0.12360000,0.10420000,0.23100000,0.06101250,-0.02610000,0.07540000,0.15081500,-0.09830000,0.03140000,0.34083750,0.07360000,0.29452500,0.20000000,0.25022000,-0.08210000,-0.26210000,0.19510000,0.07170000,-0.26110000,0.22817200,1.45484847,0
103076,0.12246800,0.07679500,0.14493000,0.27516500,0.12590000,0.02947200,0.00140000,0.13970000,0.19002000,0.22455917,0.03640000,0.13490000,0.86900000,0.14243500,0.22140000,-0.20060000,0.10371500,0.08880000,-0.24430000,0.17236750,-0.21550000,0.30265667,0.30000000,0.15885000,0.12810000,0.06250000,0.10009750,0.00220000,0.20600000,0.17101100,0.08341403,0
103096,0.08995500,0.06399000,0.11967000,0.45995833,0.05370000,0.02034550,0.15405000,0.06380000,0.02496667,0.38335417,0.04505000,0.12520000,0.00100000,0.25014500,-0.12700000,-0.25480000,0.22538250,-0.10450000,0.31380000,0.23780000,-0.30070000,0.33930667,0.20000000,0.35100667,-0.15070000,0.02710000,0.14802750,-0.20440000,0.02470000,0.26981500,1.68161144,0
103098,0.18745200,0.33654000,0.24692400,0.24637833,0.20980000,0.13188175,0.00320000,0.29270000,0.35361000,0.47467250,0.12555000,-0.13910000,0.75900000,0.09659000,0.01840000,-0.21610000,0.24254250,0.05280000,0.12160000,0.25224750,0.05220000,0.44183667,0.30000000,0.27995167,0.21280000,-0.29340000,0.40092500,0.00300000,-0.01560000,0.43395400,0.74405625,0
103100,0.10911400,0.39441000,0.14642400,0.11895167,0.27910000,0.05299150,-0.04940000,0.24470000,0.12255000,0.15326583,0.04285000,0.08000000,0.71200000,0.09829250,0.09820000,-0.22660000,0.08419500,0.01660000,0.17100000,0.13148750,-0.21440000,0.25458750,0.20000000,0.12187000,-0.04160000,-0.02390000,0.09450500,0.23750000,0.11520000,0.11092400,0.01863612,1
103101,0.14930900,0.10812000,0.23248400,0.20587167,0.27290000,0.04070650,-0.09275000,0.19370000,0.15343333,0.26124750,0.13710000,0.13470000,0.87200000,0.10587000,-0.08310000,0.01850000,0.29033500,-0.05860000,0.21060000,0.03646500,0.15740000,0.42432000,0.30000000,0.07578500,0.12830000,-0.10920000,0.10770250,-0.14450000,-0.11930000,0.15501600,0.74405625,0
103112,0.12463800,0.12131000,0.16333200,0.21673000,0.04480000,0.17444150,0.04600000,0.16540000,0.17229000,0.67479667,0.03180000,0.08750000,0.00000000,0.14177500,0.11540000,0.26380000,0.09023750,-0.04020000,-0.30820000,0.10474000,0.25670000,0.78371500,0.30000000,0.60510667,0.12090000,0.02490000,0.78903500,0.07610000,-0.26800000,0.71695100,0.30979516,0
103113,0.15885300,0.26312500,0.23082800,0.09015667,0.34700000,0.04380975,0.02525000,0.26390000,0.01785333,0.15017833,0.03440000,0.12490000,0.98800000,0.17356500,0.15040000,-0.00810000,0.11940000,0.20670000,-0.26590000,0.04235750,-0.02970000,0.16344083,0.20000000,0.05432500,0.01400000,0.28040000,0.07608500,0.36100000,0.21140000,0.06302900,1.75623285,0
103117,0.08272200,0.32059000,0.10809400,0.25999500,0.11610000,0.23453800,-0.01675000,0.10330000,0.00303667,0.76927167,0.08580000,0.09910000,0.00000000,0.10350250,-0.14950000,-0.20100000,0.17756500,-0.18080000,-0.10250000,0.15964000,-0.20170000,0.81910750,0.20000000,0.80023500,-0.05420000,0.12890000,0.82639750,0.06190000,-0.19580000,0.81070000,0.07135714,0
103123,0.12213400,0.02321000,0.16932400,0.33153833,0.10760000,0.02923425,0.01550000,0.13540000,0.08397000,0.27164167,0.14015000,0.09060000,0.00000000,0.08912000,0.03610000,-0.05710000,0.24980500,0.15710000,0.00370000,0.17291750,0.00930000,0.23452667,0.20000000,0.25370167,-0.02370000,0.28800000,0.09544750,-0.13120000,-0.23440000,0.19040000,0.00150270,1
103132,0.09419700,0.61252500,0.15686400,0.15702000,0.24320000,0.04212150,-0.06355000,0.13750000,0.07125000,0.19462333,0.06450000,-0.02930000,0.18000000,0.13593000,-0.19730000,0.07680000,0.17532750,-0.20490000,-0.06050000,0.14799500,0.19050000,0.22594083,0.20000000,0.11607167,0.07600000,-0.24400000,0.09850250,-0.16720000,0.29700000,0.10904500,1.89386035,0
103134,0.13563500,0.07119500,0.19898400,0.16235833,0.63840000,0.37287225,-0.49965000,0.18310000,0.03250333,0.20547417,0.03275000,0.13470000,0.93000000,0.18667250,-0.06670000,0.28940000,0.12234000,-0.13010000,-0.16720000,0.04184000,-0.21750000,0.19451833,0.20000000,0.10997000,0.27500000,0.11890000,0.14245750,-0.36330000,-0.01670000,0.12296500,0.00150270,1
103139,0.12457900,0.28613500,0.12225800,0.19107333,0.08360000,0.02977900,-0.00645000,0.18580000,0.05710000,0.18997583,0.10365000,0.14110000,0.48000000,0.06557250,-0.02430000,0.22660000,0.13591000,-0.05710000,-0.21880000,0.16147000,0.30870000,0.22088917,0.20000000,0.12566833,0.02040000,0.10380000,0.17994250,-0.06310000,-0.04240000,0.14737800,1.45484847,0
103144,0.09831400,0.26691000,0.12182600,0.23318000,0.34630000,0.14527175,-0.06525000,0.14010000,0.00351667,0.26698167,0.14115000,0.13880000,0.77100000,0.06948000,0.18220000,-0.18870000,0.19611750,0.21850000,0.30440000,0.13948000,-0.24090000,0.22806583,0.20000000,0.23343167,-0.04300000,0.09560000,0.18520000,0.30320000,-0.08850000,0.21413900,0.00150270,1
103145,0.16924300,0.15706500,0.16623600,0.11211833,0.03430000,0.01571100,0.16210000,0.28200000,0.07342000,0.13482000,0.03025000,-0.13260000,0.77300000,0.13477000,0.17110000,0.13970000,0.08153250,0.18960000,-0.14170000,0.23012750,-0.19990000,0.18308917,0.20000000,0.07496833,0.19800000,0.04960000,0.07570750,0.16370000,0.23990000,0.07526300,0.00150187,1
103157,0.12122300,0.03297000,0.16285400,0.07625667,0.61340000,0.30297650,-0.41990000,0.22910000,0.09336333,0.18212583,0.03450000,0.06100000,0.61800000,0.12894750,-0.17750000,0.07170000,0.08896000,-0.11220000,-0.14790000,0.05659000,-0.17120000,0.18141250,0.20000000,0.16595000,-0.20620000,0.24210000,0.07954500,0.40720000,-0.04840000,0.13138800,0.00150270,1
103159,0.15939700,0.10776000,0.23604600,0.09918667,0.15430000,0.02123825,-0.01810000,0.24230000,0.08721000,0.18155667,0.07185000,0.14010000,0.60900000,0.12960500,-0.03080000,-0.19480000,0.18628250,0.00600000,0.04470000,0.02219250,-0.04170000,0.28818917,0.20000000,0.08255667,0.02890000,0.30820000,0.10494750,-0.12540000,0.23350000,0.09151300,0.00150187,1
103160,0.20746000,0.61210000,0.35802000,0.13124167,0.01590000,0.01656150,0.03170000,0.21490000,0.07309667,0.25036250,0.05810000,-0.12040000,0.00000000,0.22169000,0.19110000,0.28500000,0.25757250,0.11010000,0.08600000,0.09218750,-0.20460000,0.29608000,0.20000000,0.09471500,-0.07210000,-0.19290000,0.12975500,-0.08800000,-0.07040000,0.10873100,0.98534074,0
103163,0.10625600,0.14937000,0.13759600,0.12992167,0.27390000,0.05343325,-0.03335000,0.23520000,0.11204667,0.14912583,0.11305000,0.13980000,0.07500000,0.05268250,-0.24080000,-0.08590000,0.11912250,-0.11020000,-0.28150000,0.08635000,-0.20610000,0.19275667,0.20000000,0.09737667,0.24690000,0.07070000,0.12950750,-0.02700000,0.19790000,0.11022900,0.01863612,1
103165,0.12787700,0.13347500,0.19702400,0.16297000,0.29350000,0.06546150,-0.08460000,0.16770000,0.11410000,0.24755333,0.02940000,-0.00390000,0.94300000,0.19697000,-0.13450000,-0.04170000,0.11577000,-0.03240000,-0.17480000,0.04680250,-0.26890000,0.25414917,0.30000000,0.16682833,-0.21470000,0.23720000,0.09687000,0.07880000,0.15910000,0.17196900,0.00150270,1
103168,0.06817600,0.34934500,0.12140200,0.01053833,0.15660000,0.04314100,0.10655000,0.17280000,0.17670333,0.20416083,0.03395000,-0.13580000,0.45800000,0.11445750,0.15590000,0.20210000,0.07770500,0.23480000,0.04830000,0.13048500,-0.16160000,0.23262917,0.30000000,0.15109667,0.08740000,0.01510000,0.11426000,0.24390000,-0.27290000,0.16812700,0.74405625,0
103172,0.12253600,0.37680500,0.13334800,0.33225167,0.46520000,0.24041575,-0.26920000,0.12140000,0.08649667,0.25158917,0.04530000,0.08800000,0.48700000,0.14595500,0.13710000,-0.05670000,0.13225750,0.21330000,0.03790000,0.26975750,-0.06650000,0.26835000,0.20000000,0.17904833,-0.21660000,0.24200000,0.20798250,0.24860000,-0.30310000,0.19062200,0.00150270,1
103179,0.07654800,0.03348500,0.09660400,0.30909333,0.08410000,0.09636000,-0.00730000,0.09660000,0.45600667,0.58271667,0.14015000,0.11120000,0.00000000,0.07610250,-0.23170000,-0.05360000,0.21335500,-0.18370000,0.03020000,0.19431000,0.02200000,0.54571583,0.30000000,0.48701333,-0.02460000,-0.21430000,0.39304750,0.05950000,0.23500000,0.58347700,0.30716952,0
103193,0.09152300,0.01152000,0.13283200,0.15396667,0.01980000,0.02580375,0.00150000,0.17640000,0.02775333,0.19257333,0.11710000,0.09440000,0.00000000,0.07021750,0.16780000,0.09490000,0.16448250,0.16500000,-0.08150000,0.07066500,-0.08680000,0.26297833,0.20000000,0.17653333,0.02990000,0.28110000,0.07822000,0.01010000,0.06710000,0.13720800,1.03948418,0
103203,0.11047500,0.05993000,0.13681400,0.05537667,0.04920000,0.02171700,0.00065000,0.24650000,0.03270000,0.13706917,0.03410000,-0.00620000,0.00000000,0.10717500,-0.08890000,0.02170000,0.07304500,-0.13710000,0.26340000,0.08673500,0.30130000,0.23148583,0.20000000,0.08162167,-0.00240000,0.01330000,0.10855500,-0.05170000,-0.20830000,0.09239500,1.45484847,0
103204,0.12617700,0.06939500,0.14385000,0.30489167,0.05560000,0.01557400,0.04350000,0.11810000,0.22456333,0.36834250,0.01165000,0.06680000,0.00000000,0.33079250,0.13310000,-0.12270000,0.07692500,0.09530000,-0.23450000,0.17174750,-0.26480000,0.34623417,0.30000000,0.10750333,-0.06950000,0.17730000,0.14984250,-0.12520000,0.10300000,0.27892400,0.01863612,1
103206,0.08019400,0.33066500,0.10855200,0.13763000,0.05880000,0.00992300,0.02940000,0.16670000,0.13551000,0.15276667,0.04605000,0.03330000,0.00000000,0.08785250,-0.09300000,-0.13250000,0.08091500,0.00390000,-0.26810000,0.12265250,-0.07240000,0.20383333,0.20000000,0.10732500,-0.05270000,0.15790000,0.12854750,-0.11150000,0.14620000,0.11581400,0.74405625,0
103207,0.13047300,0.06459500,0.19773800,0.17044000,0.56240000,0.30860625,-0.39515000,0.17450000,0.08792667,0.22271000,0.03545000,0.05430000,0.92900000,0.16991500,-0.04650000,0.19660000,0.12053500,0.07010000,0.06680000,0.04979500,0.02480000,0.23568083,0.20000000,0.14913667,0.27520000,-0.22250000,0.15397500,-0.28720000,-0.09020000,0.15107200,0.00150270,1
103210,0.14105400,0.18718500,0.19689400,0.29911667,0.32760000,0.11622325,-0.09950000,0.14030000,0.03580333,0.30927333,0.06665000,0.13080000,1.00000000,0.14773500,-0.03090000,0.17300000,0.19698250,0.08330000,0.09140000,0.13429250,0.14980000,0.36878500,0.20000000,0.32131000,-0.08060000,-0.19570000,0.10113500,0.24700000,0.02390000,0.23324100,0.00150270,1
103216,0.09154600,0.21914000,0.12463800,0.06892500,0.06230000,0.02900525,0.00075000,0.28880000,0.00615667,0.14917167,0.04350000,-0.14110000,0.00000000,0.08419000,-0.06890000,-0.15960000,0.07321250,-0.06620000,0.12930000,0.12606000,0.25060000,0.18854167,0.20000000,0.12945333,0.06460000,-0.05170000,0.09593500,0.00230000,0.27810000,0.11604600,0.74405625,0
103217,0.31627100,0.61522000,0.45936600,0.03442167,0.36160000,0.08871050,-0.10690000,0.34220000,0.05753000,0.23016417,0.07020000,-0.14100000,0.22000000,0.16951750,0.06390000,0.30970000,0.23808000,-0.11620000,0.01880000,0.11990500,-0.21000000,0.26027750,0.20000000,0.09909667,-0.07450000,0.08840000,0.13425000,0.28710000,-0.22510000,0.11315800,2.42266712,0
103219,0.10012600,0.04073500,0.13258200,0.05428667,0.22210000,0.04892650,-0.06150000,0.25710000,0.00183000,0.15481167,0.04720000,0.01590000,0.02900000,0.08567250,0.15520000,-0.27860000,0.08089750,0.21380000,-0.02830000,0.06487250,-0.00010000,0.14524167,0.20000000,0.12186167,-0.10600000,0.28970000,0.11507500,0.11610000,0.00830000,0.11914700,1.45484847,0
103231,0.05521200,0.53378500,0.10474000,0.09433167,0.39660000,0.07524000,-0.16295000,0.10630000,0.07681000,0.15346000,0.09950000,-0.13040000,0.80000000,0.08372000,-0.07270000,0.22710000,0.16659250,-0.17570000,0.20090000,0.10783000,-0.09460000,0.18354667,0.20000000,0.08528333,-0.28030000,-0.14050000,0.08214250,0.11630000,0.06740000,0.08402700,0.74405625,0
103234,0.09267300,0.07725500,0.10719000,0.40636167,0.12040000,0.11608125,0.08040000,0.12060000,0.21084333,0.55685833,0.24645000,0.11750000,0.00200000,0.05025250,0.08830000,0.26680000,0.24767750,0.00710000,0.17760000,0.32757500,0.19120000,0.56667250,0.30000000,0.63530167,-0.20060000,-0.09550000,0.26424000,-0.08020000,0.28520000,0.54905800,0.07135714,0
103236,0.09734700,0.13997000,0.10729800,0.22079667,0.24730000,0.04830550,0.02875000,0.13710000,0.09577667,0.18773917,0.03835000,0.14120000,0.96200000,0.11766500,-0.11330000,-0.13760000,0.09019000,-0.16930000,-0.26270000,0.16269750,-0.20410000,0.20692750,0.20000000,0.18556000,-0.02140000,0.07550000,0.07702250,-0.26870000,0.17320000,0.14214500,0.00150270,1
103241,0.12887900,0.14893500,0.20384000,0.40070667,0.14160000,0.05471575,0.05950000,0.09660000,0.39322000,0.44649250,0.02225000,0.11450000,0.01800000,0.40266750,0.06130000,0.01580000,0.17920750,0.01200000,0.09890000,0.06162000,0.02640000,0.43247333,0.30000000,0.20133667,-0.05920000,-0.21930000,0.19830500,-0.20090000,0.22250000,0.30304100,0.00150270,1
103245,0.07377100,0.06835500,0.10205600,0.05791667,0.51590000,0.13029650,-0.33175000,0.25220000,0.15165333,0.10834500,0.07205000,0.13810000,0.75500000,0.05132250,0.03300000,0.09790000,0.07396250,0.12290000,-0.13780000,0.03464750,-0.06890000,0.06555333,0.20000000,0.07430333,-0.27180000,0.18090000,0.08829750,0.24410000,0.24780000,0.07990000,0.00150270,1
103246,0.14146100,0.11738500,0.19576600,0.16114167,0.12910000,0.02322525,0.20380000,0.17920000,0.01932000,0.19891917,0.03710000,0.03790000,0.00000000,0.17982500,-0.01510000,-0.27630000,0.13342500,0.02020000,0.17640000,0.12120250,0.12980000,0.21891083,0.20000000,0.13391833,0.27650000,-0.12250000,0.08263000,0.14740000,-0.00390000,0.11340300,0.00150270,1
103254,0.10355400,0.01062500,0.11512000,0.13293167,0.06390000,0.02333175,0.02865000,0.24760000,0.00611000,0.14703917,0.07840000,0.09270000,0.13400000,0.05852250,-0.02370000,-0.07040000,0.09176000,0.03690000,0.16970000,0.14828750,0.17430000,0.16534000,0.20000000,0.09742667,0.11410000,-0.07950000,0.14469250,0.05020000,-0.23980000,0.11633400,0.00265331,1
103255,0.09855300,0.06067000,0.12558200,0.09571000,0.25930000,0.03260875,0.16695000,0.19640000,0.09941667,0.12503417,0.03330000,0.04770000,0.68100000,0.11350250,0.09930000,0.22070000,0.07558750,0.14370000,0.02940000,0.09155250,-0.00730000,0.25290083,0.20000000,0.06681500,0.09440000,-0.21940000,0.08579000,0.35370000,-0.15010000,0.07440500,0.01863612,1
103259,0.13453200,0.02349500,0.15063600,0.17813167,0.06810000,0.05544650,0.00165000,0.27870000,0.26334667,0.34638833,0.09590000,0.07300000,0.03600000,0.06841500,0.12960000,-0.15880000,0.13122000,0.10080000,0.19230000,0.20010750,0.18510000,0.46587500,0.30000000,0.18665000,0.00460000,0.07910000,0.25867500,0.07270000,-0.17850000,0.33581200,0.00150270,1
103260,0.11890500,0.17514000,0.16180000,0.08992833,0.44700000,0.13426950,-0.24910000,0.25780000,0.16124667,0.15945583,0.03710000,0.14090000,0.54500000,0.10958500,0.05970000,-0.25280000,0.08133500,0.16300000,-0.01660000,0.05815000,-0.15460000,0.26619000,0.20000000,0.11066333,0.21230000,0.24280000,0.12145000,-0.23460000,-0.07800000,0.11497900,0.00150270,1
103269,0.13759900,0.04630000,0.19367000,0.07357167,0.44670000,0.12964900,-0.16755000,0.24810000,0.00484333,0.18605667,0.02345000,-0.03660000,0.32900000,0.17920500,0.04390000,-0.26130000,0.08404750,0.10740000,-0.02140000,0.02875750,0.02610000,0.18378583,0.20000000,0.13428500,-0.35130000,0.10440000,0.09348750,0.09540000,-0.21890000,0.11796600,0.00150270,1
103271,0.13818400,0.13973000,0.19144400,0.09140333,0.65350000,0.35185800,-0.52980000,0.24090000,0.00187000,0.17719167,0.03750000,0.14130000,0.96700000,0.14795750,-0.08810000,0.28120000,0.11099750,-0.08790000,-0.10620000,0.04144250,-0.21440000,0.21486667,0.20000000,0.10763500,0.29850000,-0.00960000,0.11117000,-0.35500000,0.20470000,0.10904900,0.00150270,1
103272,0.10622800,0.11347000,0.13011000,0.07481167,0.57220000,0.17142775,-0.39040000,0.27660000,0.09155333,0.12019667,0.04740000,0.13960000,0.96200000,0.08430500,-0.09020000,0.24750000,0.07990000,-0.11740000,-0.02780000,0.08794000,0.04130000,0.12829417,0.20000000,0.07133667,-0.34740000,-0.29410000,0.08938000,0.22470000,-0.04130000,0.07855400,0.07135714,0
103278,0.16786200,0.11453000,0.20250200,0.42871000,0.07870000,0.04396175,-0.00435000,0.12870000,0.13731333,0.40978833,0.03220000,0.02090000,0.00000000,0.22917500,0.21520000,-0.05320000,0.14757750,0.08690000,-0.04270000,0.27644000,-0.01420000,0.53950167,0.30000000,0.36044000,-0.06550000,0.26690000,0.21641000,0.01320000,-0.25900000,0.34104600,0.30097511,0
103286,0.17663200,0.60844000,0.26297800,0.05374833,0.03350000,0.03364000,0.01665000,0.28870000,0.19139333,0.24785917,0.13235000,-0.05140000,0.00000000,0.08778750,-0.09690000,0.17300000,0.23239250,0.02050000,-0.09080000,0.10013500,0.20820000,0.30651667,0.30000000,0.13371500,-0.07690000,0.03080000,0.13516750,-0.04340000,-0.28120000,0.16935900,0.74405625,0
103291,0.10436900,0.26329500,0.16631600,0.08790667,0.26400000,0.06850375,-0.03495000,0.18490000,0.03206667,0.19073500,0.04800000,-0.12830000,0.96900000,0.11319500,-0.21410000,0.22200000,0.10864250,-0.07890000,-0.28010000,0.05064000,-0.06180000,0.22648917,0.20000000,0.12748333,-0.23420000,-0.10780000,0.15914500,0.02990000,0.11640000,0.14014800,2.09449494,0
103297,0.12124800,0.01805000,0.15095200,0.02446333,0.25320000,0.04746025,0.00400000,0.30190000,0.06489000,0.15037083,0.02435000,0.13620000,0.86900000,0.13404750,-0.14750000,-0.21660000,0.06523750,-0.17730000,0.11120000,0.04178500,0.12850000,0.21553833,0.20000000,0.10307000,-0.25630000,0.13930000,0.09722250,-0.00310000,-0.13190000,0.10073100,0.07389913,0
103300,0.07789500,0.19235500,0.09862200,0.11344500,0.10170000,0.05037800,0.06090000,0.18730000,0.11755667,0.26427167,0.04630000,0.13330000,0.00000000,0.07847750,0.03860000,-0.18100000,0.07269250,0.07570000,0.00260000,0.08135750,-0.13250000,0.27598500,0.30000000,0.17727500,-0.07070000,0.19170000,0.18451250,-0.17240000,-0.12690000,0.25665700,0.35853999,0
103309,0.13070200,0.19425500,0.11599400,0.19676167,0.22160000,0.05780675,-0.05015000,0.19160000,0.03388667,0.20027167,0.04585000,0.14140000,0.99800000,0.08617000,0.04610000,0.00580000,0.07897500,-0.04190000,-0.16450000,0.18634500,-0.08210000,0.20426917,0.20000000,0.23439667,-0.15820000,0.22890000,0.08407500,0.06340000,-0.10540000,0.17426800,0.00150270,1
103314,0.13236000,0.11736500,0.13969800,0.10795000,0.78240000,0.42401500,-0.75945000,0.28620000,0.00298667,0.11065250,0.05020000,-0.11690000,0.98500000,0.08090750,-0.16900000,0.01140000,0.08124500,-0.08190000,0.28410000,0.16828000,-0.29350000,0.11589000,0.20000000,0.05889500,0.35730000,-0.02420000,0.08145750,-0.42510000,0.02960000,0.06792100,0.00150270,1
103321,0.11118600,0.22477000,0.14412800,0.07640333,0.31100000,0.08068300,-0.01565000,0.29890000,0.08420000,0.16862667,0.04830000,0.14140000,0.01900000,0.09023250,-0.20360000,-0.00540000,0.08719000,-0.16430000,-0.30180000,0.09949500,-0.17230000,0.18031833,0.20000000,0.12735333,0.30060000,0.12860000,0.13743000,-0.01040000,-0.18460000,0.13138300,0.30979516,0
103329,0.11760200,0.03201500,0.14322400,0.13684000,0.40580000,0.09675875,-0.18775000,0.22330000,0.05750000,0.14353083,0.06145000,0.11440000,0.42800000,0.07659500,-0.00400000,-0.13390000,0.09411000,0.12690000,0.04700000,0.10903000,0.03120000,0.21772167,0.20000000,0.10641167,0.14280000,-0.25840000,0.10026750,-0.26300000,0.18610000,0.10395400,0.00150270,1
103339,0.12773900,0.36358000,0.19463200,0.41621333,0.03430000,0.02422975,0.02740000,0.09410000,0.49883333,0.63372250,0.07895000,0.07650000,0.14400000,0.20655000,-0.11450000,0.02620000,0.32621250,-0.05210000,0.09660000,0.14227500,0.00950000,0.60897583,0.30000000,0.18938000,-0.05880000,0.26750000,0.27869250,-0.09310000,-0.28170000,0.54736200,0.00265331,1
103340,0.22935200,0.10967000,0.19837600,0.10247833,0.55190000,0.13609800,-0.37550000,0.30930000,0.04658667,0.14687833,0.02035000,-0.14060000,0.71500000,0.19019000,0.16930000,0.21860000,0.07748250,0.12740000,-0.10330000,0.26030500,-0.06450000,0.27309750,0.20000000,0.05931667,-0.30850000,-0.31340000,0.08398500,0.24340000,0.26130000,0.06918500,0.74405625,0
103353,0.23818800,0.54557000,0.39065400,0.03806167,0.30510000,0.04249300,-0.11630000,0.44110000,0.05358333,0.13592167,0.16850000,0.14120000,0.30100000,0.05278750,0.14960000,0.05520000,0.17789250,-0.16540000,-0.26440000,0.11006500,0.09480000,0.17718667,0.20000000,0.06440000,0.15430000,-0.04620000,0.08048500,-0.15080000,0.27620000,0.07083400,3.25973476,0
103356,0.11559200,0.22576000,0.08606400,0.52106667,0.23330000,0.07251100,0.12515000,0.07720000,0.02043000,0.35841917,0.03165000,0.13790000,0.99200000,0.17949000,0.17630000,-0.13780000,0.11354750,0.18630000,-0.21430000,0.50864250,-0.16690000,0.38697500,0.20000000,0.46330333,0.07990000,0.14470000,0.08726500,0.31320000,0.18400000,0.31288800,0.00150270,1
103360,0.11670400,0.02971500,0.12431000,0.26083667,0.57510000,0.38255650,-0.39130000,0.13750000,0.00774333,0.26617000,0.03335000,0.11560000,0.98100000,0.13523000,-0.00420000,-0.29580000,0.09014250,0.10580000,-0.21350000,0.19130750,-0.22480000,0.29013417,0.20000000,0.31732500,-0.22100000,0.07800000,0.09715000,0.35410000,-0.20260000,0.22925500,0.00150270,1
103361,0.10771900,0.17654500,0.13089400,0.22128833,0.06190000,0.06177050,0.02925000,0.15420000,0.12537333,0.30072750,0.02585000,0.12900000,0.93300000,0.14957750,-0.19050000,-0.16830000,0.07739750,-0.09070000,-0.28590000,0.13913000,-0.19800000,0.62905417,0.20000000,0.33456167,-0.11350000,0.09730000,0.17336250,-0.05160000,-0.18940000,0.27008300,0.30716952,0
103362,0.11986500,0.22980000,0.16585400,0.15438833,0.11980000,0.23890250,0.00610000,0.22710000,0.01031667,0.75264500,0.13040000,-0.05710000,0.31300000,0.06485250,0.09020000,0.11820000,0.16915000,-0.00480000,-0.30380000,0.12936250,-0.22410000,0.82370833,0.20000000,0.74965667,-0.00940000,0.03580000,0.89944750,-0.12920000,-0.27640000,0.80957300,2.31548539,0
103364,0.06284700,0.32624500,0.08333800,0.23093833,0.12870000,0.04331325,0.04135000,0.09430000,0.17704333,0.25757583,0.02950000,0.03910000,0.47100000,0.14796500,0.19990000,0.25240000,0.08725750,0.16720000,-0.28750000,0.17019000,0.19420000,0.26811333,0.30000000,0.16124833,0.04700000,0.02730000,0.16452250,0.17570000,-0.16730000,0.21500100,0.83461186,0
103367,0.11898900,0.05692000,0.16415000,0.12392833,0.29970000,0.09736050,-0.10175000,0.24260000,0.01676000,0.22487750,0.09075000,0.12410000,0.93500000,0.07687250,0.08110000,-0.26620000,0.13953750,0.00700000,-0.03520000,0.08361500,-0.06160000,0.21080833,0.20000000,0.21847167,-0.10400000,0.22770000,0.13051250,0.19560000,-0.09690000,0.18328800,0.30979516,0
103370,0.08940900,0.19682000,0.11225000,0.11938833,0.21820000,0.02517275,-0.00450000,0.22900000,0.09716000,0.11544083,0.10310000,0.14120000,0.36000000,0.05204000,-0.04970000,-0.04450000,0.10728750,0.00530000,-0.26670000,0.09848750,-0.16690000,0.12935417,0.20000000,0.06686667,-0.21400000,0.17700000,0.08669750,0.00420000,0.14930000,0.07479900,0.30716952,0
103375,0.13497000,0.04056500,0.17582200,0.05000500,0.20250000,0.03175750,-0.02395000,0.27820000,0.00650333,0.14150167,0.03705000,0.13140000,0.72400000,0.12265500,0.06000000,-0.09100000,0.09089000,0.13150000,0.26850000,0.05146250,0.29820000,0.20104083,0.20000000,0.08472333,0.17520000,0.13230000,0.08387750,-0.02730000,-0.12330000,0.08438500,0.00150270,1
103377,0.25112400,0.16351000,0.35546600,0.10247500,0.08220000,0.01364550,0.05250000,0.31080000,0.02987667,0.14702667,0.04020000,-0.03070000,0.44800000,0.14202750,0.09580000,-0.10350000,0.11422750,-0.14720000,-0.29710000,0.10783250,0.25580000,0.18673833,0.20000000,0.06513000,-0.15150000,0.01240000,0.08713000,-0.06930000,0.13760000,0.07393000,2.53047841,0
103381,0.09052700,0.00068000,0.12210000,0.08364167,0.04550000,0.02803250,0.05335000,0.22850000,0.01811333,0.15664083,0.07090000,0.09940000,0.00000000,0.07022000,0.02560000,0.11480000,0.09960000,0.04270000,-0.28570000,0.05970750,-0.28530000,0.19392500,0.20000000,0.14219167,0.08300000,-0.00450000,0.08681250,0.12850000,0.30970000,0.12004000,1.45484847,0
103389,0.10618000,0.06016000,0.15358600,0.12716000,0.06430000,0.01447775,0.31010000,0.23020000,0.23824333,0.22694750,0.12835000,0.04230000,0.00000000,0.06505500,0.03840000,-0.30630000,0.16698750,0.00980000,0.09360000,0.06661000,0.06490000,0.26290417,0.30000000,0.11029833,-0.21900000,-0.23340000,0.15665750,-0.28320000,-0.28790000,0.17952000,0.00150270,1
103391,0.10773600,0.06599500,0.15117400,0.09297000,0.31090000,0.08559450,-0.00625000,0.23240000,0.11948333,0.17129667,0.04295000,0.14090000,0.75600000,0.08657250,0.06840000,0.08260000,0.07436000,0.23370000,0.24610000,0.02933250,0.17390000,0.31931250,0.20000000,0.14093000,-0.00410000,-0.16550000,0.14156500,0.30690000,0.18600000,0.14118300,0.06406078,0
103394,0.06515200,0.06409000,0.10188600,0.19600000,0.06890000,0.04230100,0.06125000,0.10050000,0.16428000,0.27750167,0.12920000,0.02590000,0.00000000,0.07588000,0.00740000,0.19370000,0.19607250,-0.09030000,0.17020000,0.02668500,0.12550000,0.26042167,0.30000000,0.22469000,0.15040000,-0.10200000,0.11627000,0.08150000,0.21350000,0.22422100,0.00150270,1
103395,0.08048700,0.01122500,0.07075400,0.37504167,0.21270000,0.06927725,0.00425000,0.07200000,0.52784000,0.36848583,0.01840000,0.10560000,0.61600000,0.20685000,-0.03790000,0.22780000,0.07619250,-0.03620000,0.29970000,0.31127000,0.29610000,0.44803417,0.30000000,0.18792500,-0.21660000,-0.03340000,0.18636250,-0.00390000,0.14980000,0.32896600,0.30097511,0
103400,0.08503900,0.20287500,0.12879200,0.27829333,0.07080000,0.01864675,0.20710000,0.12070000,0.13614000,0.25035333,0.20785000,0.04100000,0.10500000,0.06601500,0.07570000,0.00320000,0.27442500,0.15340000,-0.08910000,0.12178000,-0.14540000,0.30789000,0.20000000,0.16651833,0.17120000,0.21470000,0.16084500,0.24200000,0.17030000,0.16424800,0.00265331,1
103408,0.11792400,0.09876500,0.09957400,0.36107833,0.12130000,0.04042575,-0.00860000,0.11970000,0.12131333,0.26437833,0.05595000,0.14060000,0.01400000,0.09421500,0.05900000,-0.12760000,0.10545250,0.16920000,-0.17430000,0.34744750,-0.14840000,0.46842083,0.20000000,0.34272667,-0.01640000,0.19610000,0.07937750,0.10480000,0.02460000,0.23738700,0.06406078,0
103410,0.09842600,0.21314000,0.15100000,0.22977167,0.01890000,0.02904250,-0.00020000,0.11580000,0.12881667,0.28296167,0.02380000,0.00840000,0.00000000,0.23198250,-0.06030000,0.06380000,0.11040000,0.03370000,0.13140000,0.09990000,0.23790000,0.31237500,0.30000000,0.20196167,-0.00230000,-0.13920000,0.10396000,0.01660000,0.30350000,0.20260000,0.30097511,0
103415,0.16285100,0.05663500,0.21766600,0.07367000,0.31630000,0.08964700,0.01435000,0.29580000,0.00152000,0.20954167,0.05720000,0.13530000,0.94900000,0.12160250,0.13800000,-0.09950000,0.13912250,0.20320000,0.18900000,0.07891500,0.16190000,0.22017833,0.20000000,0.15732500,0.32510000,-0.14690000,0.13191500,0.00880000,0.18940000,0.14716100,0.00150270,1
103421,0.09333400,0.15373500,0.08277200,0.18655333,0.03590000,0.01812825,0.20125000,0.15740000,0.00356333,0.15654167,0.05775000,0.14080000,0.00000000,0.06705000,-0.00510000,0.07260000,0.07744500,-0.04290000,-0.08020000,0.17528500,-0.01300000,0.18484667,0.20000000,0.15778833,-0.21940000,-0.29530000,0.08844750,-0.18350000,0.20750000,0.13005200,1.45484847,0
103423,0.13920200,0.44848000,0.20246000,0.08119667,0.12890000,0.06146050,-0.01985000,0.37720000,0.18087000,0.26554417,0.07530000,-0.14140000,0.26200000,0.06413500,0.12230000,0.08150000,0.09658750,-0.08830000,-0.23150000,0.14605500,0.14990000,0.30063250,0.30000000,0.21972000,0.05080000,-0.01040000,0.19456750,-0.07810000,-0.29580000,0.25436400,1.25401077,0
103425,0.11987300,0.08689000,0.10877800,0.21103000,0.55740000,0.24779175,-0.38830000,0.20620000,0.01702000,0.15404750,0.05865000,0.12470000,0.98000000,0.07149000,0.08970000,-0.16630000,0.08386250,0.04110000,0.03420000,0.24237500,0.00360000,0.20426833,0.20000000,0.10698667,-0.27680000,0.30370000,0.14631000,0.28060000,0.29740000,0.12271700,0.00150270,1
103428,0.11214300,0.07746000,0.11443800,0.19298000,0.06100000,0.01403425,0.00040000,0.20690000,0.08617000,0.15027417,0.08045000,0.12270000,0.00000000,0.06448750,-0.08210000,-0.22220000,0.10376250,-0.12370000,0.20340000,0.19919000,0.23050000,0.24932667,0.20000000,0.10568667,-0.06230000,-0.05980000,0.12404250,-0.00130000,-0.13540000,0.11302900,0.00150187,1
103430,0.09264000,0.06492000,0.10526000,0.11938167,0.58290000,0.33705050,-0.41310000,0.20830000,0.00908667,0.18215667,0.05030000,0.12740000,0.90500000,0.07564500,0.02290000,0.07920000,0.07609750,0.04380000,0.28640000,0.11218500,0.25110000,0.20641917,0.20000000,0.18204667,-0.33980000,-0.05540000,0.12165500,0.24310000,-0.31100000,0.15789100,0.00150270,1
103432,0.08041900,0.15152000,0.09970200,0.30834833,0.14480000,0.03225100,-0.02425000,0.09980000,0.25797667,0.29064583,0.14075000,0.13790000,0.01300000,0.07734500,-0.11210000,-0.17820000,0.21768750,-0.13090000,-0.08020000,0.19488750,-0.11720000,0.36212917,0.30000000,0.19684500,-0.05240000,0.26800000,0.10711250,0.09240000,0.18140000,0.23076300,0.35853999,0
103435,0.11833200,0.00912000,0.13890200,0.13379667,0.37640000,0.13503650,0.04845000,0.18790000,0.01036000,0.21080333,0.02600000,0.09470000,0.45500000,0.14916000,-0.04060000,-0.17960000,0.07749750,-0.04530000,0.00820000,0.11478500,0.01300000,0.22801500,0.20000000,0.14241833,-0.02420000,0.15040000,0.19212500,-0.40060000,-0.27040000,0.16230000,0.00150270,1
103437,0.12762200,0.05982000,0.17805200,0.16954167,0.62450000,0.59376825,-0.48115000,0.20280000,0.17541667,0.23746417,0.06070000,0.04270000,0.83000000,0.08516500,-0.10040000,0.30120000,0.10336250,0.09920000,0.26530000,0.07549750,0.23130000,0.32851917,0.20000000,0.18861667,0.27670000,0.08230000,0.24094250,-0.34780000,-0.18300000,0.20954700,0.00150270,1
103438,0.08726000,0.02176000,0.09324200,0.18015833,0.04240000,0.06075700,0.16765000,0.14080000,0.10315667,0.26645750,0.04450000,0.09020000,0.43000000,0.09537750,0.20450000,0.27260000,0.08493000,0.20380000,-0.21500000,0.15866750,-0.20560000,0.32808417,0.20000000,0.26590500,0.20550000,0.10270000,0.22021000,0.16310000,-0.18630000,0.24762700,0.07389913,0
103442,0.19076100,0.35293000,0.31592600,0.10560667,0.11010000,0.02521300,0.14600000,0.31270000,0.01032667,0.15140833,0.13940000,-0.02100000,0.89800000,0.05206000,0.14990000,-0.19410000,0.14515000,-0.16150000,-0.22230000,0.06608500,0.18170000,0.15735333,0.20000000,0.09714833,-0.23460000,-0.00900000,0.11129250,-0.12450000,0.17050000,0.10280600,3.32623012,0
103451,0.09620600,0.19030000,0.14558200,0.07680167,0.41580000,0.09641300,-0.03700000,0.22500000,0.00331333,0.13841167,0.07445000,-0.01620000,0.48400000,0.06321000,-0.18570000,0.26780000,0.09410250,-0.01230000,-0.21720000,0.02748250,0.16920000,0.14916000,0.20000000,0.12007333,0.01860000,0.04860000,0.07781250,-0.39720000,-0.21800000,0.10316800,0.00150270,1
103454,0.12550200,0.21502500,0.16259400,0.07704500,0.11700000,0.02686875,0.21080000,0.27280000,0.00246333,0.14113333,0.05630000,0.13920000,0.00000000,0.08297250,-0.15880000,-0.19270000,0.09339500,-0.03200000,0.19410000,0.05746000,-0.26940000,0.13172333,0.20000000,0.09975167,-0.27200000,0.08560000,0.09740750,-0.15500000,-0.14150000,0.09881400,0.00150270,1
103458,0.08637500,0.08693500,0.10561200,0.23913333,0.25810000,0.11812150,0.03950000,0.13960000,0.00270000,0.28573000,0.12195000,0.12360000,0.94500000,0.06548250,0.10580000,-0.18810000,0.15967750,0.12610000,-0.05000000,0.17544500,-0.07600000,0.23770833,0.20000000,0.23099833,0.28570000,-0.31200000,0.28553250,0.02760000,0.12230000,0.25281200,0.30979516,0
103459,0.07506500,0.03501000,0.08512200,0.35381333,0.19790000,0.07588875,-0.04585000,0.07350000,0.29908000,0.40035250,0.02170000,0.02210000,0.99800000,0.21488250,0.04430000,-0.15290000,0.09328750,-0.02900000,-0.15750000,0.22414000,-0.16960000,0.41728583,0.30000000,0.32135000,0.07400000,0.12620000,0.12584750,-0.12390000,-0.17120000,0.35715400,0.08341403,0
103464,0.09746000,0.23062500,0.13693200,0.01329500,0.26090000,0.03616225,-0.07540000,0.30680000,0.02929667,0.11253500,0.06175000,-0.13750000,0.53600000,0.06896500,-0.03910000,0.05200000,0.08520000,0.05890000,-0.28560000,0.04015500,-0.00530000,0.19094833,0.20000000,0.06783667,-0.17460000,0.20170000,0.08168250,0.08630000,-0.12700000,0.07337600,0.07389913,0
103475,0.15985100,0.42259500,0.25898200,0.04731000,0.05310000,0.02085125,0.07155000,0.27380000,0.04617667,0.15807583,0.09465000,-0.13960000,0.00000000,0.09372500,-0.07090000,-0.04190000,0.17741500,0.08720000,-0.26540000,0.07410000,0.12860000,0.23151667,0.20000000,0.06896667,-0.14910000,-0.05250000,0.09964000,-0.09600000,0.22580000,0.08123500,1.22066529,0
103480,0.05297600,0.09409500,0.07448800,0.16967667,0.20560000,0.07255375,-0.03965000,0.09700000,0.05080333,0.28118500,0.08505000,0.05150000,0.55000000,0.07604750,0.05210000,-0.24130000,0.12937000,0.02810000,0.29300000,0.08777000,0.24850000,0.33153500,0.30000000,0.18889000,-0.15410000,-0.09360000,0.20997750,0.05150000,0.09890000,0.25525500,0.74405625,0
103484,0.09248800,0.04242500,0.12816600,0.05258500,0.62970000,0.20549900,-0.40730000,0.25050000,0.01628000,0.11356083,0.05700000,0.13350000,0.99900000,0.07688750,0.09210000,-0.21880000,0.08763250,0.14290000,0.02650000,0.02546500,-0.01880000,0.12240417,0.20000000,0.06006333,0.44770000,0.16090000,0.08606500,-0.18200000,-0.26010000,0.07046500,0.00150270,1
103486,0.15128400,0.12010500,0.23962600,0.15069500,0.15570000,0.02165475,0.06290000,0.24630000,0.15707667,0.19387583,0.18105000,0.06360000,0.00800000,0.06087250,0.22060000,0.06950000,0.22044750,0.03410000,0.23030000,0.00607750,0.03800000,0.17575000,0.30000000,0.08803000,-0.05870000,-0.09800000,0.08825750,-0.21440000,0.00190000,0.12012200,1.39900457,0
103491,0.09727100,0.05246500,0.12857800,0.18987500,0.25010000,0.09636775,0.03175000,0.13760000,0.08335667,0.25597917,0.03310000,0.07270000,0.98400000,0.14914250,-0.20160000,-0.26020000,0.09876750,-0.13230000,-0.14140000,0.11142250,-0.11640000,0.26000583,0.20000000,0.17894000,-0.27340000,0.02580000,0.25161750,-0.02320000,0.25180000,0.20801100,0.07135714,0
103495,0.08072200,0.18069500,0.11859600,0.12528667,0.02140000,0.01537950,0.31960000,0.15990000,0.09438000,0.13240500,0.07870000,-0.00900000,0.00000000,0.08043500,-0.14160000,-0.18710000,0.12662250,-0.09030000,-0.03560000,0.08866250,0.05250000,0.19770417,0.20000000,0.06699167,-0.24240000,0.18480000,0.08967250,-0.26370000,-0.26200000,0.07606400,0.74405625,0
103497,0.07478100,0.18505500,0.11892400,0.14532500,0.07130000,0.01950975,0.00160000,0.12500000,0.01650333,0.17562000,0.09070000,-0.00590000,0.00000000,0.09281250,0.10930000,0.13270000,0.16838000,0.06660000,0.01520000,0.01583750,0.23730000,0.21286833,0.20000000,0.11349333,-0.00420000,-0.20190000,0.09542500,-0.07550000,0.28480000,0.10626700,2.05287467,0
103500,0.10543700,0.00133500,0.14822600,0.06147667,0.02050000,0.02457550,0.09225000,0.25970000,0.11126000,0.17686667,0.06235000,0.09830000,0.00000000,0.08021500,0.02380000,-0.31010000,0.10005750,-0.05860000,0.07190000,0.03990250,0.07090000,0.22536583,0.30000000,0.11969667,0.12600000,-0.15820000,0.09073750,0.14650000,0.08850000,0.14013100,0.07135714,0
103505,0.11981400,0.10932500,0.09276400,0.29102833,0.07200000,0.01437500,0.09065000,0.14530000,0.03092000,0.21008000,0.03845000,0.13160000,0.00300000,0.09636500,-0.11370000,0.12180000,0.07408750,-0.05340000,0.25400000,0.30875750,0.21770000,0.28295833,0.20000000,0.25494167,-0.10340000,-0.10960000,0.07737500,-0.17540000,-0.10460000,0.18391500,0.01863612,1
103507,0.09841300,0.19634500,0.15522200,0.25854167,0.05900000,0.02715650,-0.00430000,0.11190000,0.01682667,0.27336583,0.09965000,0.02990000,0.00000000,0.12677250,-0.05720000,-0.02650000,0.25268000,-0.10630000,-0.12710000,0.08250250,-0.19650000,0.36135083,0.20000000,0.14765000,0.02740000,0.15090000,0.21917000,-0.03150000,0.25710000,0.17625900,1.45484847,0
103512,0.14640700,0.05456500,0.17830200,0.24791500,0.50620000,0.23230475,-0.31270000,0.16510000,0.00853333,0.22215583,0.04255000,0.11850000,0.99100000,0.14969250,-0.16680000,0.28920000,0.12745750,-0.06390000,0.16010000,0.16248500,0.17910000,0.21816583,0.20000000,0.16856333,-0.29230000,-0.12340000,0.13647000,0.21390000,-0.06650000,0.15572700,0.00150270,1
103520,0.11714300,0.26310500,0.18046600,0.11953167,0.37380000,0.17653575,-0.11495000,0.19240000,0.21635000,0.31433583,0.07470000,-0.02420000,0.29100000,0.09421750,-0.24000000,0.02550000,0.14074750,-0.09830000,0.15560000,0.03478500,-0.08890000,0.35760167,0.30000000,0.19315167,0.29610000,-0.03050000,0.24381250,-0.07770000,0.30780000,0.28321700,0.74405625,0
103523,0.13221500,0.00724500,0.13863800,0.10602167,0.35170000,0.09955375,-0.11070000,0.22280000,0.01407000,0.18910000,0.02350000,0.09500000,0.70000000,0.13906500,-0.02340000,-0.15490000,0.06541750,0.01130000,0.06520000,0.13412750,0.06900000,0.24672417,0.20000000,0.16851500,0.08210000,-0.28690000,0.11004500,-0.26960000,0.07080000,0.14512700,0.00150270,1
103529,0.13696100,0.47590500,0.12381400,0.12265667,0.16930000,0.09771875,-0.03580000,0.28230000,0.08718000,0.32200667,0.06015000,0.13380000,0.94000000,0.07087500,-0.00720000,0.19310000,0.08524500,0.01950000,-0.15420000,0.18307250,0.22190000,0.35722083,0.30000000,0.29391167,-0.08610000,-0.11440000,0.28219250,0.08320000,0.19830000,0.32396000,0.00150270,1
103545,0.07270700,0.01152000,0.06929600,0.35919333,0.08660000,0.07500825,0.05175000,0.07270000,0.20155000,0.38623667,0.04035000,0.06440000,0.87900000,0.12974500,-0.05380000,-0.29940000,0.10467250,-0.12610000,-0.30610000,0.30482750,-0.30930000,0.39414083,0.30000000,0.30506000,-0.15390000,0.09180000,0.31256500,-0.06720000,-0.12080000,0.36971700,1.37339095,0
103551,0.11048200,0.06892500,0.15971600,0.33759500,0.54200000,0.38045250,-0.33860000,0.13400000,0.03767667,0.29066583,0.18320000,0.03060000,0.97400000,0.07228750,-0.10190000,-0.03120000,0.26487000,0.03200000,-0.03710000,0.17060000,-0.02090000,0.28672250,0.20000000,0.23435500,-0.19540000,0.24980000,0.18330750,0.34660000,-0.29220000,0.21393600,0.00150270,1
103560,0.10298000,0.13862000,0.12535000,0.17242833,0.19580000,0.03020300,-0.00620000,0.19650000,0.00370333,0.14573083,0.10120000,0.13840000,0.99500000,0.05812250,-0.02120000,-0.20110000,0.11765250,0.09850000,0.27140000,0.12724250,-0.29950000,0.16028250,0.20000000,0.09127500,0.18920000,0.00900000,0.12450750,-0.00650000,0.00840000,0.10456700,1.45484847,0
103566,0.09413300,0.15953500,0.09318000,0.22884000,0.19260000,0.13524050,0.09010000,0.16170000,0.09962000,0.38607583,0.09300000,0.14030000,0.00100000,0.05422500,0.00640000,0.03930000,0.10083750,-0.09170000,-0.08930000,0.21665000,-0.03460000,0.42408417,0.30000000,0.33207000,0.26150000,-0.26270000,0.42067500,0.06890000,0.10990000,0.40126500,0.07389913,0
103569,0.08740800,0.14531500,0.11615800,0.16606000,0.35040000,0.11925500,0.01125000,0.17050000,0.09020667,0.21428917,0.09110000,0.13940000,0.01700000,0.06958250,-0.11820000,0.17640000,0.12674750,-0.17100000,0.01420000,0.10805000,0.07740000,0.22408833,0.20000000,0.21716500,0.00630000,-0.26500000,0.12079000,0.35670000,0.05110000,0.17861500,0.30716952,0
103570,0.11262900,0.28776000,0.07977600,0.45770333,0.43570000,0.22205675,-0.02425000,0.09450000,0.01721000,0.34852000,0.02675000,0.11810000,0.49800000,0.14845500,0.05490000,0.29080000,0.07944500,0.02440000,0.20130000,0.48083250,0.27670000,0.36565000,0.20000000,0.48850833,-0.01140000,-0.03110000,0.08489750,0.42420000,-0.23420000,0.32706400,0.00150270,1
103573,0.08907400,0.01576500,0.11180800,0.18683167,0.34950000,0.10058950,-0.14745000,0.14070000,0.07082000,0.18755250,0.03910000,0.08850000,0.97500000,0.10841750,-0.05800000,-0.14350000,0.08479750,0.06030000,-0.06730000,0.10952000,-0.05910000,0.29333667,0.20000000,0.15626000,-0.14220000,0.26340000,0.13505250,0.20730000,0.16650000,0.14777700,0.00150270,1
103585,0.11288300,0.25115500,0.11419800,0.26941500,0.51360000,0.26705225,-0.26040000,0.14820000,0.00373333,0.21393250,0.02130000,0.13210000,0.95600000,0.16135250,-0.04300000,-0.08500000,0.06877000,-0.06330000,0.06180000,0.22235500,-0.04470000,0.23859750,0.20000000,0.13826667,0.13910000,0.24780000,0.20427250,-0.37450000,0.28860000,0.16467000,0.00150270,1
103586,0.12623800,0.43970000,0.16873400,0.06673333,0.13200000,0.01377650,-0.01040000,0.26230000,0.11502000,0.12640167,0.06325000,-0.06740000,0.30200000,0.08626500,0.08240000,0.21910000,0.10911500,-0.02450000,-0.16970000,0.11149000,0.16090000,0.28197083,0.20000000,0.06266833,0.11370000,-0.07620000,0.08982250,-0.01830000,-0.04650000,0.07353000,0.01863612,1
103587,0.12210500,0.10577500,0.17102800,0.02941167,0.32900000,0.06320450,-0.10530000,0.29760000,0.00320333,0.14915083,0.05960000,-0.14060000,0.89300000,0.09536750,0.07200000,0.25130000,0.11372500,0.02200000,-0.08360000,0.03542250,0.00230000,0.12947500,0.20000000,0.09276333,-0.08710000,0.22240000,0.09921500,0.24190000,-0.10370000,0.09534400,0.00150270,1
103588,0.09493400,0.02386500,0.11589800,0.06763500,0.36010000,0.08073775,-0.12710000,0.28700000,0.09748333,0.17354167,0.06300000,-0.00090000,0.87100000,0.06432750,0.01570000,0.17530000,0.08107000,-0.01680000,-0.10990000,0.08270500,-0.12440000,0.24013417,0.30000000,0.14888500,0.09640000,0.17740000,0.07615250,-0.26370000,-0.21020000,0.15009100,0.07135714,0
103591,0.22316400,0.29035500,0.27754400,0.13983167,0.07110000,0.02249675,-0.00610000,0.25900000,0.03009333,0.21148833,0.06030000,0.14110000,0.49900000,0.16274750,0.06460000,-0.11230000,0.19621750,0.03610000,0.25860000,0.10453250,-0.26340000,0.25056167,0.20000000,0.09595167,-0.02900000,-0.03590000,0.13157250,0.04200000,0.12430000,0.11019900,0.74405625,0
103593,0.13349100,0.02332000,0.12464000,0.22950667,0.49870000,0.22090525,-0.30200000,0.15490000,0.01397333,0.20656500,0.01940000,0.10950000,0.94800000,0.17627500,-0.05960000,0.00460000,0.06832500,-0.09970000,-0.14510000,0.20272750,-0.13520000,0.25162833,0.20000000,0.15098500,-0.29130000,0.20110000,0.14862000,0.20730000,0.27050000,0.15003800,0.00150270,1
103595,0.26812400,0.43053000,0.42340800,0.11444167,0.07000000,0.03716475,0.16010000,0.37980000,0.06902667,0.20730667,0.09565000,-0.01180000,0.64400000,0.06116250,0.16440000,0.08910000,0.11701500,-0.20560000,0.17540000,0.12576000,-0.04290000,0.39089667,0.30000000,0.16109333,-0.21740000,-0.25490000,0.12306750,-0.14730000,0.04900000,0.17749800,3.04705344,0
103607,0.09601800,0.05019000,0.09625800,0.20038000,0.50510000,0.15238325,-0.29650000,0.14260000,0.04966333,0.15213667,0.03110000,0.12110000,0.80000000,0.11511750,0.01430000,-0.05910000,0.07159500,0.05230000,0.07830000,0.17001000,0.05550000,0.18205417,0.20000000,0.12743167,0.18560000,-0.28010000,0.07855000,-0.31960000,0.30610000,0.10787900,0.00150270,1
103610,0.08877800,0.02755500,0.07212400,0.26526667,0.13850000,0.03068375,-0.02395000,0.14150000,0.23075000,0.23453833,0.06880000,0.11170000,0.02400000,0.05372000,0.23940000,-0.15060000,0.07392500,0.13440000,-0.24540000,0.28758250,-0.23590000,0.27069583,0.30000000,0.13613667,-0.06860000,0.14470000,0.19311000,0.06990000,0.11600000,0.23038700,0.30716952,0
103619,0.12144400,0.23099000,0.18311000,0.12448167,0.37130000,0.10625825,-0.12175000,0.19890000,0.07819667,0.19556833,0.05475000,0.08400000,0.80800000,0.11846000,0.11690000,-0.12840000,0.12977000,0.01480000,-0.29910000,0.04024250,-0.11390000,0.24228167,0.20000000,0.14054333,0.28620000,0.14820000,0.12766000,-0.08510000,-0.04150000,0.13539000,0.01863612,1
103622,0.17594600,0.38199000,0.24731600,0.12268667,0.16700000,0.04270600,-0.02255000,0.25740000,0.48507000,0.27424500,0.07600000,0.08030000,0.00500000,0.09824750,0.06920000,0.20200000,0.14928750,0.24320000,0.01230000,0.08309000,0.21830000,0.33159500,0.30000000,0.21012333,-0.03390000,-0.25830000,0.15584250,0.13310000,-0.29840000,0.23008000,1.19470553,0
103626,0.23281500,0.40980000,0.20022600,0.21134333,0.51960000,0.18024750,-0.28225000,0.23090000,0.15525333,0.18975083,0.07670000,0.14120000,0.35700000,0.10588250,0.09320000,-0.17270000,0.16239500,0.15860000,0.23420000,0.19700500,-0.27220000,0.21268917,0.20000000,0.14642000,0.15470000,-0.01710000,0.08134500,-0.36490000,0.18210000,0.12038900,0.74405625,0
103627,0.11065300,0.01068500,0.15742400,0.12283833,0.08150000,0.03554650,0.13770000,0.18280000,0.15283667,0.27440167,0.02390000,0.08800000,0.04500000,0.17947000,-0.08870000,-0.26990000,0.08581250,-0.09900000,0.17590000,0.02915750,0.16520000,0.29332917,0.30000000,0.18993833,-0.13010000,-0.07360000,0.14458750,-0.21160000,0.09930000,0.22316900,0.00265331,1
103633,0.10760200,0.18304500,0.13361800,0.38331167,0.41440000,0.21345450,-0.21300000,0.09080000,0.07217667,0.34729250,0.05230000,0.14140000,0.86900000,0.18523750,-0.12130000,-0.07950000,0.19367500,-0.09570000,-0.16660000,0.23140250,-0.12310000,0.46605667,0.20000000,0.34979500,-0.22520000,0.15710000,0.13827250,0.18920000,0.29300000,0.26518600,0.00150270,1
103635,0.08039500,0.04397500,0.10683000,0.06780500,0.44680000,0.13508900,-0.07435000,0.23390000,0.08257667,0.14208250,0.07155000,0.03600000,0.08800000,0.05695750,0.24050000,0.07150000,0.08152250,0.16130000,-0.14870000,0.05262750,-0.18240000,0.18487583,0.20000000,0.10342167,0.03620000,0.09060000,0.13263500,-0.41060000,0.28780000,0.11510700,0.07389913,0
103636,0.09617700,0.08825000,0.08819600,0.30378667,0.19930000,0.04556325,-0.04880000,0.11690000,0.06853000,0.20561250,0.06790000,0.12450000,0.00500000,0.07717250,-0.10260000,-0.07180000,0.10476250,-0.21450000,-0.03810000,0.27700750,-0.06410000,0.27243917,0.20000000,0.22530667,-0.08650000,0.27020000,0.09694250,0.11280000,0.18120000,0.17396100,0.01863612,1
103638,0.09051000,0.12315500,0.09754400,0.21544500,0.45950000,0.17828125,-0.25970000,0.14780000,0.02030333,0.17682333,0.08270000,0.14100000,0.90800000,0.06355250,0.00840000,0.26160000,0.10508750,-0.10040000,0.16170000,0.17417750,0.20760000,0.21872083,0.20000000,0.13178000,-0.25860000,-0.15110000,0.16416000,0.20080000,-0.05160000,0.14473200,0.00150270,1
103640,0.08507200,0.26938500,0.12759800,0.07535167,0.53130000,0.14523825,-0.31420000,0.22470000,0.12278333,0.16058250,0.13315000,0.08790000,0.22600000,0.05207250,0.17280000,-0.26750000,0.13866500,0.23610000,0.14520000,0.04025000,-0.25850000,0.17130833,0.30000000,0.08283667,0.17770000,-0.09140000,0.08371500,-0.35350000,0.04830000,0.11640400,0.07135714,0
103644,0.15395300,0.75428500,0.14474600,0.21937000,0.05890000,0.07368275,0.28570000,0.17000000,0.25612667,0.41123333,0.15785000,0.07720000,0.00000000,0.06774000,0.07100000,-0.17270000,0.21387750,0.07570000,0.28570000,0.25119500,-0.15260000,0.35546083,0.30000000,0.25256167,-0.21140000,0.14440000,0.37466000,-0.27030000,-0.09080000,0.38083300,0.00150270,1
103651,0.15968300,0.38499000,0.23862600,0.52697500,0.22680000,0.10045100,-0.04960000,0.19400000,0.08301000,0.54890833,0.56035000,0.13480000,0.19200000,0.05396500,0.09800000,-0.29380000,0.60477750,0.09140000,0.14060000,0.21896750,0.19410000,0.37215417,0.30000000,0.38327333,0.05920000,-0.13480000,0.22098500,-0.16760000,-0.17200000,0.39519300,1.11458662,0
103654,0.13160600,0.08144500,0.14778600,0.14657167,0.59100000,0.22189875,-0.34620000,0.21180000,0.00849667,0.14831333,0.04230000,0.12770000,0.94100000,0.11479750,0.18900000,-0.03170000,0.09713250,0.20710000,-0.24270000,0.13496250,-0.20700000,0.20463250,0.20000000,0.08625167,0.42990000,0.11130000,0.10363250,-0.16110000,0.17840000,0.09320400,0.00150270,1
103658,0.33096700,0.53869000,0.36328600,0.16678333,0.17780000,0.06005400,-0.03945000,0.31770000,0.19463333,0.26713083,0.11835000,0.08170000,0.64100000,0.07692500,0.20400000,-0.28160000,0.18208000,-0.06220000,-0.10820000,0.15088000,-0.29790000,0.30542917,0.30000000,0.19513500,-0.09180000,0.12190000,0.15331500,0.08600000,-0.22970000,0.21695500,0.74405625,0
103667,0.12587900,0.00566000,0.12658000,0.21963667,0.06290000,0.00974550,-0.00465000,0.15740000,0.10145333,0.15919500,0.02280000,0.10260000,0.57100000,0.15368500,-0.07540000,-0.01530000,0.07009000,0.01560000,0.11310000,0.17888750,0.11060000,0.21272000,0.20000000,0.10710500,-0.03930000,-0.25410000,0.09315000,0.02360000,-0.24590000,0.10152300,0.00265331,1
103673,0.13765700,0.28475000,0.17240800,0.14660833,0.08820000,0.02218650,-0.00680000,0.25980000,0.21403333,0.18387333,0.02215000,0.13950000,0.00000000,0.16478750,0.19100000,-0.02210000,0.07306750,0.14860000,-0.27840000,0.11331500,-0.09880000,0.25732333,0.30000000,0.08407000,-0.02000000,0.07850000,0.09417250,0.06830000,0.30220000,0.12550600,0.01863612,1
103675,0.18182400,0.00802000,0.19762800,0.21986667,0.26480000,0.06549225,0.03565000,0.21220000,0.11275667,0.20273167,0.04315000,0.10260000,0.97800000,0.13132250,-0.04970000,0.03290000,0.11338500,-0.17660000,-0.13720000,0.20440500,-0.13460000,0.24946417,0.20000000,0.16521667,-0.02460000,0.18440000,0.11566500,-0.28940000,-0.26730000,0.14539500,0.00150270,1
103693,0.10177500,0.03559000,0.12968200,0.31100500,0.19830000,0.06256575,-0.04460000,0.13170000,0.01920667,0.26196833,0.15590000,0.06860000,0.43700000,0.06515750,-0.00920000,-0.01150000,0.20316750,0.12060000,-0.03390000,0.20058000,-0.04280000,0.31011750,0.20000000,0.22555167,0.12950000,0.24310000,0.17925250,-0.06890000,-0.28400000,0.20703200,0.07389913,0
103700,0.10963000,0.17206500,0.11977200,0.26603167,0.14310000,0.02993550,0.06735000,0.13480000,0.25290000,0.20095167,0.06980000,0.14110000,0.92200000,0.09709000,-0.18740000,0.30080000,0.13553750,-0.11600000,-0.21310000,0.20249000,-0.26570000,0.26783250,0.30000000,0.12341000,-0.20790000,0.10280000,0.10454500,-0.06480000,-0.05770000,0.14809200,0.00150270,1
103705,0.08531500,0.19848500,0.11400000,0.15736500,0.27810000,0.06778975,-0.05650000,0.15800000,0.12884667,0.17063917,0.04860000,0.08780000,0.08400000,0.09024750,-0.24670000,0.24890000,0.08771750,-0.12900000,0.14350000,0.09345000,0.25950000,0.22649000,0.20000000,0.14247667,-0.04940000,-0.02520000,0.12023500,0.22860000,-0.27130000,0.13358000,0.30716952,0
103715,0.15084500,0.20636000,0.18737000,0.14491500,0.15830000,0.04535025,0.17950000,0.25290000,0.06905667,0.22879917,0.01965000,0.14140000,0.34700000,0.19228750,-0.08150000,-0.12280000,0.07551500,-0.12390000,0.25620000,0.10060500,-0.24550000,0.26511417,0.20000000,0.21253000,-0.28450000,0.14150000,0.09980000,-0.12620000,-0.08660000,0.16743800,0.30716952,0
103716,0.15795500,0.04251000,0.20242400,0.11608833,0.10290000,0.03256575,0.06915000,0.22880000,0.09474333,0.21801167,0.01485000,0.04910000,0.64300000,0.24831250,0.21360000,0.08140000,0.07382250,0.16250000,-0.14170000,0.08089500,-0.16930000,0.29281833,0.20000000,0.15228000,0.17980000,-0.21270000,0.10348000,0.07690000,0.18980000,0.13276000,0.00150187,1
103719,0.11743000,0.00514500,0.13865400,0.10202833,0.19950000,0.03165025,0.03960000,0.21870000,0.09909333,0.14659750,0.02710000,0.09630000,0.64300000,0.12334750,0.01890000,-0.20570000,0.06687250,-0.06740000,0.22170000,0.09336250,0.21840000,0.23828000,0.20000000,0.09796333,-0.03390000,0.00900000,0.10262750,-0.23350000,-0.09170000,0.09983000,0.07135714,0
103725,0.07887600,0.01650500,0.10903400,0.27473000,0.24080000,0.06270250,0.00235000,0.10000000,0.07588333,0.26618583,0.01345000,0.13010000,0.83600000,0.25501000,-0.08010000,-0.12780000,0.06849500,-0.17330000,-0.16400000,0.09331750,-0.15370000,0.32492167,0.20000000,0.26069000,-0.24270000,0.16490000,0.08401500,-0.00190000,-0.28270000,0.19002100,0.07135714,0
103727,0.10929800,0.02905500,0.13504200,0.16246167,0.36120000,0.09973525,-0.10780000,0.17020000,0.00924667,0.19395083,0.04375000,0.08650000,0.98200000,0.11904000,0.05140000,-0.28560000,0.10414500,0.08060000,-0.11790000,0.13067500,-0.10550000,0.20576083,0.20000000,0.17007000,-0.07550000,0.19460000,0.10356250,0.28580000,0.01260000,0.14346700,0.00150270,1
103729,0.12585000,0.05746000,0.14959600,0.20774833,0.02370000,0.01653450,0.00575000,0.15370000,0.05136667,0.20275917,0.01770000,0.07040000,0.95700000,0.21652250,-0.10310000,0.03800000,0.07666500,-0.03350000,0.17510000,0.14472000,0.20240000,0.28050083,0.20000000,0.14096667,-0.04780000,-0.16000000,0.10364250,-0.02410000,-0.26960000,0.12603600,1.63780465,0
103730,0.11151100,0.15605500,0.15659800,0.05645833,0.00270000,0.01708875,0.06560000,0.30110000,0.09431000,0.12454500,0.02505000,-0.14080000,0.00000000,0.13351000,0.04830000,0.08610000,0.06692250,-0.00760000,-0.24640000,0.02556500,0.00000000,0.22512333,0.20000000,0.06372667,0.11320000,-0.04820000,0.07761250,0.11590000,0.30720000,0.06928100,0.00150187,1
103731,0.06922700,0.28471500,0.11059800,0.08682833,0.24270000,0.05652250,-0.05630000,0.15390000,0.11409667,0.20986500,0.11090000,-0.13930000,0.96300000,0.06081250,-0.02000000,-0.17270000,0.13489000,0.08250000,-0.28750000,0.04236500,0.09540000,0.23593917,0.30000000,0.15928667,0.18020000,0.12540000,0.10608750,-0.06250000,-0.09130000,0.17355800,1.13729845,0
103735,0.11941300,0.20999000,0.17701800,0.25007667,0.51600000,0.24849400,-0.31595000,0.14570000,0.00511667,0.25362750,0.02000000,0.11080000,0.98800000,0.25538250,-0.02900000,0.15470000,0.10207000,-0.08610000,0.02070000,0.08097250,0.14380000,0.23266167,0.20000000,0.18135833,0.19990000,-0.16370000,0.13139250,-0.31610000,-0.24010000,0.16137200,0.00150270,1
103738,0.14865100,0.16306500,0.20174400,0.25595167,0.20880000,0.05673025,-0.01310000,0.15910000,0.18555333,0.29930000,0.05175000,0.04650000,0.11500000,0.15380000,0.05560000,-0.21170000,0.15922750,-0.06240000,-0.10500000,0.16754750,-0.05450000,0.35167667,0.30000000,0.20645333,0.19540000,0.19890000,0.13868750,-0.01340000,0.31010000,0.23394900,0.00150187,1
103741,0.21426000,0.08978000,0.30226600,0.02946500,0.12000000,0.01797125,0.53775000,0.30390000,0.14918333,0.17504000,0.04760000,-0.13670000,0.00000000,0.18040000,0.09160000,-0.29630000,0.17175500,0.17010000,0.03840000,0.05307500,-0.00900000,0.27881333,0.20000000,0.06205000,-0.39340000,0.00170000,0.07988750,-0.27340000,-0.19000000,0.06918600,2.00050157,0
103743,0.12421100,0.24307500,0.17318400,0.03667667,0.60510000,0.34525525,-0.38300000,0.29940000,0.00703333,0.17322083,0.07395000,0.11850000,0.93800000,0.07328750,-0.08900000,-0.23170000,0.10840750,0.04590000,0.03560000,0.03716750,-0.21990000,0.19481667,0.20000000,0.12920167,-0.18030000,0.16250000,0.14416750,0.42480000,-0.16840000,0.13518800,0.00150270,1
103745,0.18902000,0.32520500,0.23950000,0.24695000,0.08560000,0.02600350,0.01270000,0.21990000,0.03793333,0.24383000,0.12170000,0.14090000,0.00000000,0.09823500,-0.20590000,0.17660000,0.23905500,-0.10780000,-0.02020000,0.15876250,0.06590000,0.28823083,0.20000000,0.16567667,0.10890000,0.31370000,0.14568750,0.02330000,-0.20870000,0.15768100,1.14438794,0
103748,0.12868100,0.38841500,0.10470800,0.29154500,0.72510000,0.90603850,-0.64710000,0.14780000,0.02233333,0.26146833,0.05020000,0.12350000,0.95400000,0.09669250,0.14090000,0.02000000,0.09710000,0.12400000,0.16680000,0.30410500,0.04670000,0.38150167,0.20000000,0.31039167,-0.31760000,-0.22930000,0.12502500,0.40750000,0.20330000,0.23624500,0.00150270,1
103749,0.11326000,0.11992000,0.15773800,0.15887000,0.37210000,0.08805825,-0.17170000,0.23680000,0.07451333,0.16857417,0.16055000,0.13310000,0.31700000,0.05452000,0.08990000,0.00140000,0.17505250,0.18290000,0.21920000,0.08850750,0.17060000,0.18122167,0.20000000,0.10679000,0.16950000,-0.20450000,0.11596500,-0.20270000,-0.03260000,0.11046000,0.00150270,1
103750,0.15868400,0.37216500,0.25184200,0.21987000,0.12040000,0.04892850,-0.01790000,0.27310000,0.29991667,0.41108500,0.29785000,0.14120000,0.00300000,0.06317250,-0.07830000,0.10940000,0.37633250,-0.14000000,-0.15670000,0.04663000,-0.00090000,0.40398000,0.30000000,0.17610333,-0.05360000,0.16480000,0.15847000,0.06680000,-0.15240000,0.31749900,0.74405625,0
103752,0.08661900,0.09079000,0.07306800,0.24461500,0.50510000,0.24466900,-0.28135000,0.13250000,0.15291000,0.19952417,0.04145000,0.13100000,0.57800000,0.08091750,0.07240000,0.21460000,0.06704500,0.10040000,-0.28420000,0.25407500,0.30920000,0.34235250,0.20000000,0.22367500,0.16590000,-0.01170000,0.11510000,-0.33910000,0.07570000,0.18024500,0.07135714,0
103753,0.09300100,0.13112000,0.11174800,0.09130333,0.39950000,0.15209775,-0.18650000,0.24020000,0.09201000,0.18648583,0.04305000,0.14030000,0.88800000,0.08026000,-0.09640000,-0.19470000,0.06908250,-0.11990000,0.04430000,0.08542250,-0.04380000,0.24954083,0.20000000,0.15824167,-0.25060000,0.21270000,0.17275250,0.14880000,-0.11270000,0.16404600,0.07389913,0
103755,0.08621700,0.36664000,0.12927200,0.00735000,0.13300000,0.02126900,0.01940000,0.27070000,0.00456000,0.11065667,0.10195000,-0.13130000,0.04900000,0.05311000,-0.11640000,0.12720000,0.10830750,-0.20670000,-0.12800000,0.08007000,0.22170000,0.16486417,0.20000000,0.05955667,-0.02460000,-0.24240000,0.08121750,-0.15760000,0.06350000,0.06822100,2.21931726,0
103757,0.18318000,0.19010000,0.22496200,0.06301000,0.31630000,0.06410050,-0.06620000,0.25910000,0.10818000,0.17781167,0.01990000,-0.07490000,0.60100000,0.18200000,0.06300000,-0.14270000,0.07241000,0.22130000,0.06250000,0.16254000,0.15320000,0.24544167,0.20000000,0.13075833,-0.04970000,-0.19610000,0.08288750,0.26670000,0.19540000,0.11160900,0.74405625,0
103759,0.09690000,0.10151500,0.12806600,0.05710667,0.01000000,0.10302775,0.00010000,0.29440000,0.02670333,0.39836667,0.08435000,0.14090000,0.00000000,0.06144750,0.18950000,-0.06800000,0.10365750,0.16400000,0.22530000,0.04299250,0.14730000,0.43449833,0.20000000,0.36727333,-0.00200000,-0.09240000,0.47908500,-0.01200000,0.23440000,0.41199800,1.45484847,0
103762,0.11559600,0.00206000,0.15479600,0.08560333,0.04130000,0.03500275,-0.00180000,0.22960000,0.00626000,0.19824917,0.01970000,0.10310000,0.00000000,0.16880000,0.08840000,-0.04100000,0.06657750,0.08060000,-0.27050000,0.02728500,-0.26810000,0.20213750,0.20000000,0.16140667,-0.01250000,0.20280000,0.11725750,0.02870000,-0.12090000,0.14374800,1.45484847,0
103765,0.12674700,0.23626500,0.11533400,0.35197500,0.50340000,0.38279550,-0.31335000,0.11840000,0.02106667,0.30095833,0.08925000,0.13380000,0.99300000,0.09059000,0.13450000,-0.04400000,0.16173250,0.04720000,0.03610000,0.29845500,-0.01840000,0.31760833,0.20000000,0.28425000,-0.22550000,-0.27580000,0.22417750,0.27790000,0.21150000,0.26022100,0.00150270,1
103766,0.07559500,0.13340500,0.09819000,0.21988167,0.08490000,0.01552375,-0.00625000,0.11220000,0.01859333,0.18726667,0.08240000,0.14060000,0.17800000,0.08659000,-0.01370000,-0.31060000,0.14266500,-0.07930000,0.22670000,0.12356250,0.27750000,0.22642750,0.20000000,0.12110333,0.01890000,-0.04400000,0.15089000,-0.06600000,-0.04250000,0.13301800,1.37339095,0
103772,0.10411600,0.22290000,0.10628600,0.75794667,0.11020000,0.06786475,0.14275000,0.04740000,0.19673667,0.66307583,0.03415000,0.13610000,0.26200000,0.34245500,0.11430000,-0.24720000,0.23391000,0.11390000,-0.19980000,0.57614250,-0.23030000,0.67360917,0.30000000,0.82377167,0.12260000,0.10210000,0.09553000,0.23280000,-0.06050000,0.56514500,0.00150187,1
103773,0.08801100,0.05204000,0.11478200,0.14703333,0.15090000,0.02213275,-0.02405000,0.15260000,0.06466000,0.15429500,0.03955000,0.06950000,0.00000000,0.11207750,-0.17560000,0.06710000,0.08866750,-0.24280000,-0.07000000,0.09728250,-0.09810000,0.21934250,0.20000000,0.09786000,0.04580000,0.29870000,0.11535250,-0.10510000,0.28660000,0.10485600,0.07389913,0
103776,0.09366000,0.10354500,0.12866000,0.10283667,0.27150000,0.05212850,-0.09150000,0.19850000,0.11440000,0.18609000,0.06650000,0.00880000,0.15600000,0.08318500,0.18280000,-0.04280000,0.11061000,0.17350000,0.15550000,0.08566750,0.20940000,0.17322083,0.30000000,0.11221333,0.12430000,-0.13340000,0.11206250,-0.14720000,-0.24480000,0.14579000,0.07135714,0
103780,0.08507500,0.05324000,0.11069600,0.11723833,0.16170000,0.06076100,-0.00720000,0.20300000,0.10154333,0.21405333,0.09635000,0.06380000,0.20300000,0.05537500,0.10890000,-0.12780000,0.10669750,0.03070000,0.05950000,0.08655250,0.08730000,0.27718417,0.20000000,0.21012833,0.00950000,-0.18600000,0.16489750,-0.15220000,0.17910000,0.19203500,2.25746875,0
103781,0.14307600,0.17591500,0.19352000,0.15687167,0.56090000,0.18057825,-0.39110000,0.22400000,0.09169333,0.15098417,0.02595000,0.13170000,0.99000000,0.15254500,-0.19720000,0.11370000,0.07909750,-0.04890000,-0.05420000,0.07138500,0.07080000,0.25157500,0.20000000,0.08439667,0.25980000,0.31030000,0.09471500,-0.30110000,-0.21190000,0.08852400,0.00150270,1
103782,0.11463900,0.16480000,0.17484600,0.19834333,0.03700000,0.00929375,0.29555000,0.15500000,0.21174333,0.21070250,0.03005000,0.03860000,0.00000000,0.17056750,0.15940000,-0.10090000,0.10256750,0.01920000,-0.16690000,0.05124000,-0.04600000,0.21135167,0.20000000,0.14388000,-0.22540000,0.16580000,0.14315500,-0.26230000,0.13940000,0.14358900,0.01863612,1
103787,0.09826300,0.00086000,0.10814000,0.37983167,0.22080000,0.07602225,-0.05970000,0.09850000,0.00587667,0.34000417,0.08330000,0.09980000,0.94900000,0.11016250,-0.01770000,-0.07520000,0.18353000,-0.04120000,0.02050000,0.31569500,0.02060000,0.34124917,0.20000000,0.43100000,-0.12630000,0.31350000,0.07982000,0.09450000,-0.03470000,0.29052800,0.30979516,0
103789,0.06710800,0.42901000,0.10596400,0.06358667,0.05950000,0.04144275,0.05255000,0.22300000,0.16460667,0.23138917,0.06045000,-0.13180000,0.19400000,0.06700500,0.07480000,-0.09490000,0.08102250,0.06860000,0.12800000,0.14920750,-0.23050000,0.31771917,0.30000000,0.13200667,0.07700000,0.03430000,0.19239250,0.13650000,-0.25850000,0.21845600,0.74405625,0
103794,0.07912000,0.01374500,0.09796000,0.10217000,0.04490000,0.03749300,0.07310000,0.20140000,0.02190000,0.17820000,0.06665000,0.09040000,0.00000000,0.06265750,-0.21660000,-0.16380000,0.08351000,-0.22490000,0.03750000,0.08855500,0.04550000,0.23064333,0.20000000,0.17484833,-0.14540000,0.29700000,0.12616000,-0.10050000,-0.03430000,0.15537300,1.45484847,0
103798,0.12317600,0.02482000,0.14400200,0.10656667,0.44370000,0.10338250,-0.17395000,0.23180000,0.06505667,0.13586917,0.03265000,0.11440000,0.96500000,0.10885250,0.02860000,-0.01500000,0.07111250,-0.07800000,-0.22080000,0.09637750,-0.20580000,0.16549250,0.20000000,0.09050833,0.10170000,0.26360000,0.09188250,-0.34200000,0.05570000,0.09105700,0.00150270,1
103801,0.05680600,0.19033000,0.08951400,0.12383000,0.01470000,0.01875350,0.03440000,0.10640000,0.08401000,0.17163333,0.08040000,-0.10950000,0.00000000,0.08209750,-0.08100000,0.06350000,0.13198500,-0.16280000,0.13140000,0.01716750,-0.18860000,0.21570917,0.30000000,0.09324667,-0.07590000,-0.27730000,0.08104250,-0.09070000,-0.06990000,0.12032600,0.74405625,0
103807,0.07696300,0.08309000,0.10031200,0.21089500,0.07290000,0.03550975,0.13290000,0.12720000,0.43727000,0.28068500,0.09935000,0.06980000,0.83300000,0.07472750,0.13750000,0.12120000,0.14849500,0.15150000,0.24760000,0.14967750,0.27560000,0.28192917,0.30000000,0.24693000,0.20350000,-0.12140000,0.16736000,0.13060000,-0.24800000,0.24753400,1.45484847,0
103811,0.09454800,0.00611000,0.10574000,0.10665667,0.51450000,0.19996025,-0.19635000,0.21770000,0.00408667,0.15600667,0.04450000,0.09590000,0.77000000,0.07768000,-0.00980000,-0.21210000,0.06914500,0.03250000,0.20270000,0.12010750,0.19930000,0.17685250,0.20000000,0.14182167,-0.09320000,-0.01820000,0.10846250,0.42120000,-0.24860000,0.12847900,0.07389913,0
103813,0.08398500,0.03056000,0.10552400,0.43888667,0.41030000,0.21843050,-0.14340000,0.07210000,0.40442000,0.45524333,0.01100000,0.12460000,0.39100000,0.39070500,-0.03280000,0.08030000,0.08583000,-0.08300000,0.13200000,0.19770250,0.12030000,0.51370167,0.30000000,0.22894000,-0.08940000,-0.12190000,0.22933750,0.32090000,-0.27280000,0.35567800,0.06406078,0
103814,0.12208000,0.00699500,0.18241800,0.14292833,0.60250000,0.28403225,-0.41055000,0.23000000,0.00388000,0.15836333,0.12085000,0.09120000,0.99400000,0.05279500,-0.10760000,-0.24550000,0.12759250,0.11540000,-0.30170000,0.04057750,-0.30660000,0.13540500,0.20000000,0.12962167,-0.20830000,0.07180000,0.10027000,0.39420000,-0.08810000,0.11788100,0.00150270,1
103816,0.11419200,0.05317500,0.13587600,0.19458333,0.23930000,0.06318125,-0.01765000,0.16120000,0.09196333,0.20431417,0.02775000,0.12430000,0.34700000,0.14748000,0.10700000,0.31090000,0.08192250,0.01920000,-0.18220000,0.12303750,-0.20880000,0.21260000,0.20000000,0.14712833,-0.22360000,0.15430000,0.16284500,0.01580000,-0.00300000,0.15341600,0.00150270,1
103818,0.14668400,0.08295000,0.19428000,0.24294667,0.31280000,0.11408125,-0.00040000,0.21520000,0.01768333,0.23481750,0.16230000,0.06680000,0.98300000,0.05402500,-0.06690000,0.09630000,0.17533750,0.13580000,0.02380000,0.15351750,-0.00150000,0.32926167,0.20000000,0.16511333,0.31260000,-0.22450000,0.22742000,-0.00030000,0.26970000,0.19003600,0.00150270,1
103820,0.10488000,0.14820500,0.06058400,0.35014333,0.27660000,0.11788875,-0.07490000,0.10770000,0.13036667,0.27601667,0.05515000,0.14130000,0.91100000,0.06749000,-0.17520000,0.04740000,0.07443250,-0.10660000,0.13060000,0.39542500,0.08700000,0.37046083,0.20000000,0.34522167,0.07390000,-0.23960000,0.16829500,-0.20270000,-0.09090000,0.27445100,0.00150270,1
103823,0.12750600,0.08473000,0.11169000,0.27478167,0.37000000,0.12625700,0.06725000,0.16060000,0.01068000,0.18918333,0.05755000,0.10810000,0.99900000,0.07344750,-0.05580000,-0.26210000,0.08453250,-0.21340000,-0.29330000,0.25710250,-0.26450000,0.21499250,0.20000000,0.15708500,-0.03340000,0.05250000,0.17394250,-0.40330000,0.03710000,0.16382800,0.00150270,1
103824,0.09598600,0.28233500,0.15068400,0.10648333,0.03690000,0.00613650,0.00915000,0.21220000,0.10738667,0.11015500,0.09900000,-0.01420000,0.00000000,0.05387500,-0.08450000,0.27180000,0.10668750,0.11990000,-0.29950000,0.08933750,-0.13790000,0.17392583,0.20000000,0.05693333,-0.06510000,0.08040000,0.08450000,-0.02820000,0.12620000,0.06796100,0.74405625,0
103825,0.13914600,0.00246000,0.18591800,0.14733333,0.61790000,0.30286375,-0.47460000,0.19380000,0.00595667,0.19833417,0.02665000,0.09860000,0.80800000,0.18846250,-0.06850000,0.26040000,0.10037250,-0.11940000,0.07340000,0.08493000,0.07210000,0.22371417,0.20000000,0.14649500,0.33210000,-0.10520000,0.08642750,-0.28580000,-0.27860000,0.12246700,0.00150270,1
103827,0.12493400,0.01607000,0.11369000,0.41800500,0.39800000,0.25269675,-0.19135000,0.10380000,0.10047667,0.34772917,0.04035000,0.09550000,1.00000000,0.15643500,-0.08150000,-0.30780000,0.12620250,-0.03450000,0.22790000,0.39713250,0.22430000,0.34892917,0.20000000,0.35344667,0.16250000,-0.04450000,0.23038000,-0.23560000,-0.13100000,0.30422000,0.00150270,1
103830,0.10462800,0.10010500,0.14598000,0.02430833,0.03630000,0.01879175,0.33320000,0.25730000,0.00536000,0.12373000,0.03500000,-0.12100000,0.00000000,0.10942000,-0.02990000,-0.18010000,0.07658750,0.02970000,0.07030000,0.05160000,0.15210000,0.12211833,0.20000000,0.07241333,0.27690000,-0.28480000,0.07656000,0.24070000,0.04470000,0.07407300,0.01863612,1
This entry was posted in PyTorch. Bookmark the permalink.

Leave a comment