diff --git a/lessonOne/imgClassifierWeb/__pycache__/cnnModel.cpython-36.pyc b/lessonOne/imgClassifierWeb/__pycache__/cnnModel.cpython-36.pyc index 00d570a..9a6c049 100644 Binary files a/lessonOne/imgClassifierWeb/__pycache__/cnnModel.cpython-36.pyc and b/lessonOne/imgClassifierWeb/__pycache__/cnnModel.cpython-36.pyc differ diff --git a/lessonOne/imgClassifierWeb/cnnModel.py b/lessonOne/imgClassifierWeb/cnnModel.py index 1196aaf..bfbb165 100644 --- a/lessonOne/imgClassifierWeb/cnnModel.py +++ b/lessonOne/imgClassifierWeb/cnnModel.py @@ -45,52 +45,85 @@ def create_conv_layer(input_data, filter_size, num_filters): conv_layer = tf.nn.conv2d(input=input_data, filter=filters, strides=[1, 1, 1, 1], - padding="VALID") + padding="SAME") print("Size of conv result : ", conv_layer.shape) return filters, conv_layer def create_CNN(input_data, num_classes, keep_prop): - filters1, conv_layer1 = create_conv_layer(input_data=input_data, filter_size=5, num_filters=4) + filters1, conv_layer1 = create_conv_layer(input_data=input_data, filter_size=3, num_filters=64) relu_layer1 = tf.nn.relu(conv_layer1) print("Size of relu1 result : ", relu_layer1.shape) max_pooling_layer1 = tf.nn.max_pool(value=relu_layer1, ksize=[1, 2, 2, 1], strides=[1, 1, 1, 1], - padding="VALID") + padding="SAME") print("Size of maxpool1 result : ", max_pooling_layer1.shape) - filters2, conv_layer2 = create_conv_layer(input_data=max_pooling_layer1, filter_size=7, num_filters=3) + filters2, conv_layer2 = create_conv_layer(input_data=max_pooling_layer1, filter_size=3, num_filters=64) relu_layer2 = tf.nn.relu(conv_layer2) print("Size of relu2 result : ", relu_layer2.shape) max_pooling_layer2 = tf.nn.max_pool(value=relu_layer2, ksize=[1, 2, 2, 1], - strides=[1, 1, 1, 1], - padding="VALID") + strides=[1, 2, 2, 1], + padding="SAME") print("Size of maxpool2 result : ", max_pooling_layer2.shape) - # Conv layer with 2 filters and a filter sisze of 5x5. - filters3, conv_layer3 = create_conv_layer(input_data=max_pooling_layer2, filter_size=5, num_filters=2) + + filters3, conv_layer3 = create_conv_layer(input_data=max_pooling_layer2, filter_size=3, num_filters=64) relu_layer3 = tf.nn.relu(conv_layer3) print("Size of relu3 result : ", relu_layer3.shape) max_pooling_layer3 = tf.nn.max_pool(value=relu_layer3, ksize=[1, 2, 2, 1], - strides=[1, 1, 1, 1], + strides=[1, 2, 2, 1], padding="VALID") print("Size of maxpool3 result : ", max_pooling_layer3.shape) - # Adding dropout layer before the fully connected layers to avoid overfitting. - flattened_layer = dropout_flatten_layer(previous_layer=max_pooling_layer3, keep_prop=keep_prop) - # First fully connected (FC) layer. It accepts the result of the dropout layer after being flattened (1D). + + filters4, conv_layer4 = create_conv_layer(input_data=max_pooling_layer3, filter_size=3, num_filters=128) + relu_layer4 = tf.nn.relu(conv_layer4) + print("Size of relu4 result : ", relu_layer4.shape) + max_pooling_layer4 = tf.nn.max_pool(value=relu_layer4, + ksize=[1, 2, 2, 1], + strides=[1, 2, 2, 1], + padding="SAME") + print("Size of maxpool4 result : ", max_pooling_layer4.shape) + + + + filters5, conv_layer5 = create_conv_layer(input_data=max_pooling_layer4, filter_size=3, num_filters=128) + relu_layer5 = tf.nn.relu(conv_layer5) + print("Size of relu5 result : ", relu_layer5.shape) + max_pooling_layer5 = tf.nn.max_pool(value=relu_layer5, + ksize=[1, 2, 2, 1], + strides=[1, 2, 2, 1], + padding="SAME") + print("Size of maxpool5 result : ", max_pooling_layer5.shape) + + + + filters6, conv_layer6 = create_conv_layer(input_data=max_pooling_layer5, filter_size=3, num_filters=128) + relu_layer6 = tf.nn.relu(conv_layer6) + print("Size of relu6 result : ", relu_layer6.shape) + max_pooling_layer6 = tf.nn.max_pool(value=relu_layer6, + ksize=[1, 2, 2, 1], + strides=[1, 2, 2, 1], + padding="SAME") + print("Size of maxpool6 result : ", max_pooling_layer6.shape) + + # 将输出维度降为一维,并增加dropout防止过拟合 + flattened_layer = dropout_flatten_layer(previous_layer=max_pooling_layer6, keep_prop=keep_prop) + + # 全连接网络+dropout fc_resultl = fc_layer(flattened_layer=flattened_layer, num_inputs=flattened_layer.get_shape()[1:].num_elements(), num_outputs=200) - # Second fully connected layer accepting the output of the previous fully connected layer. Number of outputs is equal to the number of dataset classes. + # 全连接网络+dropout,这里的网络输出的数量要和标注的数量一致 fc_result2 = fc_layer(flattened_layer=fc_resultl, num_inputs=fc_resultl.get_shape()[1:].num_elements(), num_outputs=num_classes) print("Fully connected layer results : ", fc_result2) - return fc_result2 # Returning the result of the last FC layer. + return fc_result2 def dropout_flatten_layer(previous_layer, keep_prop): diff --git a/lessonOne/imgClassifierWeb/config.ini b/lessonOne/imgClassifierWeb/config.ini index a0c48d2..54f91a4 100644 --- a/lessonOne/imgClassifierWeb/config.ini +++ b/lessonOne/imgClassifierWeb/config.ini @@ -14,11 +14,11 @@ num_channels = 3 num_files=5 images_per_file=10000 max_gradient_norm=5 +percent=1 [floats] learning_rate = 0.01 keeps=0.5 -learning_rate_decay_factor = 0.9 -percent=1 +learning_rate_decay_factor = 0.5 end_learning_rate=0.0 diff --git a/lessonOne/imgClassifierWeb/execute.py b/lessonOne/imgClassifierWeb/execute.py index 807c50d..c722db5 100644 --- a/lessonOne/imgClassifierWeb/execute.py +++ b/lessonOne/imgClassifierWeb/execute.py @@ -57,11 +57,8 @@ def create_model(session,forward_only): if ckpt and ckpt.model_checkpoint_path: print("Reading model parameters from %s" % ckpt.model_checkpoint_path) model.saver.restore(session, ckpt.model_checkpoint_path) - session.run(tf.global_variables_initializer()) graph = tf.get_default_graph() - return model,graph - else: print("Created model with fresh parameters.") session.run(tf.global_variables_initializer()) @@ -130,8 +127,8 @@ def train(): # 达到一个训练模型保存点后,将模型保存下来,并打印出这个保存点的平均准确率 if current_step % gConfig['steps_per_checkpoint'] == 0: - #如果超过三次预测正确率没有升高则改变学习率 - if len(previous_correct) > 2 and accuracy < min(previous_correct[-3:]): + #如果超过5次预测正确率没有升高则改变学习率 + if len(previous_correct) > 2 and accuracy < min(previous_correct[-5:]): sess.run(model.learning_rate_decay_op) previous_correct.append(accuracy) checkpoint_path = os.path.join(gConfig['working_directory'], "cnn.ckpt") diff --git a/lessonThree/Anti-Fraud-App/VAE.py b/lessonThree/Anti-Fraud-App/VAE.py index 7cba1b2..13b08e7 100644 --- a/lessonThree/Anti-Fraud-App/VAE.py +++ b/lessonThree/Anti-Fraud-App/VAE.py @@ -4,17 +4,14 @@ import matplotlib.pyplot as plt from tensorflow.examples.tutorials.mnist import input_data import getConfig +import sys + +import os gConfig={} gConfig=getConfig.get_config(config_file='config.ini') #定义训练数据的维度 seq_len=gConfig['seqlen'] -#class vaeModel(object): - - # def __init__(self, learning_rate,learning_rate_decay_factor): - # self.learning_rate=tf.Variable(float(learning_rate), trainable=False) - # self.learning_rate_decay_op = self.learning_rate.assign(self.learning_rate * learning_rate_decay_factor) - # self.global_step = tf.Variable(0, trainable=False) #读取数据 def read_data(source_file): @@ -76,6 +73,7 @@ def decoder(sampled_z, keep_prob): decoder_set = tf.reshape(y_out, shape=[-1, seq_len, 1]) return decoder_set #定义计算loss以及进行优化器优化的一系列tensor +global_step = tf.Variable(0, trainable=False) sampled, mn, sd = encoder(X_in, keep_prob) dec = decoder(sampled, keep_prob) unreshaped = tf.reshape(dec, [-1, seq_len*1]) @@ -83,20 +81,55 @@ def decoder(sampled_z, keep_prob): latent_loss = -0.5 * tf.reduce_sum(1.0 + 2.0 * sd - tf.square(mn) - tf.exp(2.0 * sd), 1) dst_loss=img_loss+latent_loss loss = tf.reduce_mean(img_loss + latent_loss) -optimizer = tf.train.AdamOptimizer(gConfig['learning_rate']).minimize(loss) +optimizer = tf.train.AdamOptimizer(gConfig['learning_rate']).minimize(loss,global_step=global_step) sess = tf.Session() sess.run(tf.global_variables_initializer()) - +saver = tf.train.Saver(tf.all_variables()) + + +def vae_train(): #开始vae的训练 -for i in range(gConfig['vae_steps']): - batch=dataset - sess.run(optimizer, feed_dict = {X_in: batch, Y: batch, keep_prob: 0.8}) - if not i % 200: + for i in range(gConfig['vae_steps']): + batch=dataset +#通过循环训练来通过优化器进行BP计算,进而更新参数使网络进行拟合,这里使用的是fullbatch模式 + sess.run(optimizer, feed_dict = {X_in: batch, Y: batch, keep_prob: 0.8}) +#根据checkpoint点对网络的收敛情况进行监测并保存下来模型 + if not i % 200: ls, d, i_ls, d_ls, mu, sampled_data = sess.run([loss, dec, img_loss, dst_loss, mn, sampled], feed_dict = {X_in: batch, Y: batch, keep_prob: 1.0}) - print(i, ls, np.mean(i_ls), np.mean(d_ls)) + checkpoint_path = os.path.join(gConfig['working_directory'], "vae.ckpt") + saver=tf.train.Saver() + saver.save(sess,checkpoint_path,global_step=global_step) +#最后将训练集的所有的数据的encoder数据保存下来,用于接下来的kmeans训练 + sampled_data = sess.run(sampled, feed_dict = {X_in: batch, Y: batch, keep_prob: 1.0}) + sampled_data=pd.DataFrame(sampled_data) + sampled_data.to_csv(gConfig['sampled_path']) + +#定义 +def vae_encoder(sess,input_data): + + + ckpt=tf.train.get_checkpoint_state(gConfig['working_directory']) + if ckpt and ckpt.model_checkpoint_path: + print("Reading model parameters from %s" % ckpt.model_checkpoint_path) + saver.restore(sess, ckpt.model_checkpoint_path) + graph = tf.get_default_graph() + + sampled_data = sess.run(sampled, feed_dict = {X_in: input_data, Y: input_data, keep_prob: 1.0}) + + return sampled_data + + +if __name__=='__main__': + if len(sys.argv) - 1: + gConfig = getConfig(sys.argv[1]) + else: + # get configuration from config.ini + gConfig = getConfig.get_config() + if gConfig['mode']=='train': + vae_train() + elif gConfig['mode']=='server': + print('Sever Usage:python3 app.py') + -#保存训练的encode的结果,就是要进行特征压缩后的特征 -sampled_data=pd.DataFrame(sampled_data) -sampled_data.to_csv(gConfig['sampled_path']) \ No newline at end of file diff --git a/lessonThree/Anti-Fraud-App/app.py b/lessonThree/Anti-Fraud-App/app.py index 67daacf..036e6ec 100644 --- a/lessonThree/Anti-Fraud-App/app.py +++ b/lessonThree/Anti-Fraud-App/app.py @@ -12,8 +12,8 @@ import hashlib import threading import execute +import VAE -# app = Flask(__name__) #路由注解,我们这里使用的是path的形式进行传参 #示例url:http://0.0.0.0:8088/predict/1/2/3/4/5/6/7/8/9/10/11/12 这里的1...12换成需要进行聚类的值就可以了 @@ -26,6 +26,7 @@ def predict(a,b,c,d,e,f,g,h,i,j,k,l): lines=range(k) lines=[int(i) for i in line] lines=[lines] + lines=VAE.vae_encoder(VAE.sess,lines) predict_result=execute.predicts(lines) return jsonify( { 'result of cluster': str(predict_result) } ) diff --git a/lessonThree/Anti-Fraud-App/config.ini b/lessonThree/Anti-Fraud-App/config.ini index f00bc62..15cf98e 100644 --- a/lessonThree/Anti-Fraud-App/config.ini +++ b/lessonThree/Anti-Fraud-App/config.ini @@ -9,7 +9,7 @@ steps=10 #VAE训练步数 vae_steps=300 #需要聚类的序列的长度,如果要将vae和clustering串起来用这个值要和enc_out_len保持一致 -seqlen=12 +seqlen=8 #vae encoder输出的中间向量的长度 encoutlen=8 @@ -25,7 +25,7 @@ keeps=0.5 [strings] mode = train working_directory=working_directory/ -input_file=train_data/train_data.csv +input_file=train_data/sampled_data.csv #这里model的文件路径,要根据kmeansMode中的文件夹的来设置 model_path=kmeansMode/1542258970 sampled_path=train_data/sampled_data.csv diff --git a/lessonThree/Anti-Fraud-App/readme.md b/lessonThree/Anti-Fraud-App/readme.md new file mode 100644 index 0000000..5370df3 --- /dev/null +++ b/lessonThree/Anti-Fraud-App/readme.md @@ -0,0 +1 @@ +最新的代码将VAE和kmeans进行了结合,如果需要使用的话,需要先执行python3 VAE.py 然后执行python3 execute.py 最后再执行python3.py \ No newline at end of file diff --git a/lessonThree/Anti-Fraud-App/train_data/sampled_data.csv b/lessonThree/Anti-Fraud-App/train_data/sampled_data.csv index 94d4ffb..ab66a7d 100644 --- a/lessonThree/Anti-Fraud-App/train_data/sampled_data.csv +++ b/lessonThree/Anti-Fraud-App/train_data/sampled_data.csv @@ -1,10 +1,1303 @@ ,0,1,2,3,4,5,6,7 -0,0.38341895,-1.7428886,0.29892516,0.14158645,0.043346316,0.52457184,-0.51498866,-0.0033487156 -1,0.2401895,-1.6238832,-0.03735471,-0.32811102,0.85901475,0.61071527,1.7249069,0.19866326 -2,-2.120377,-0.7846775,-0.44127777,-2.8433104,1.7282515,1.3949893,0.006724566,1.5689514 -3,-0.24871545,-0.117795594,0.46943024,0.5850498,-1.8775313,0.5547079,1.5917208,-0.013330079 -4,0.048848335,-1.1120182,-1.05481,1.7671635,-0.8837705,-1.0044992,-0.6401813,1.51355 -5,0.23896244,1.2703017,0.56299645,-0.6899086,0.117588595,2.318331,0.55303776,-0.8386042 -6,0.42145008,1.4267052,0.037153464,1.5952226,0.32282645,-0.17458007,1.6561109,-0.68001455 -7,-1.9073356,0.4853596,-0.75159425,0.25134057,1.8075538,0.056467056,0.44442064,-1.3499131 -8,-0.7253678,-0.53390133,0.10448843,0.15717143,1.7451864,-0.6664468,1.6801159,0.1358863 +0,-0.17102812,-0.06948365,-1.504705,0.29184073,0.42408177,-0.19830036,-0.35379493,-1.374729 +1,0.5070267,-1.6961231,0.011919245,0.36634123,-0.7421433,1.8777112,0.41852915,-0.05459524 +2,-1.1663092,-0.96618474,-1.4412775,-1.802746,0.34613717,1.0289516,-1.7730539,2.0643308 +3,-0.010583878,-0.18315104,1.8021307,4.3264604,1.1717818,-0.03574712,-0.9699311,0.2585778 +4,0.01689586,-0.198656,1.564149,1.1423001,-0.7653878,1.3520827,0.45524967,1.1983645 +5,0.030876175,0.42356744,-1.332546,-0.032537766,-1.0903866,0.30105323,-1.1509812,-0.7859422 +6,2.1661928,0.854023,0.6440197,0.45907593,-0.7923683,1.5602086,-1.7397474,-0.52831006 +7,0.05382362,1.0001683,1.0493739,-1.2203926,-0.6320442,1.3189762,-0.044242367,-1.6162257 +8,1.0427848,-1.5486828,0.54960155,0.6065641,-0.24418777,0.58402795,-0.087894425,0.17605586 +9,-2.4164982,1.7568413,-0.85536927,1.784255,-0.80745625,-0.93496233,-0.75517726,1.9493119 +10,2.84784,-1.0837831,-0.65430725,-0.96078825,-0.041344866,1.2685963,-0.41349512,-0.034076557 +11,2.5752347,0.12280305,-0.5455677,-0.6136694,0.5027061,-1.2694796,0.056318104,-1.7013713 +12,-0.875131,0.73392063,0.6945857,-1.1555572,-0.14067261,-0.41160613,-0.38009688,-0.056796063 +13,-0.5411779,-0.35940373,0.9000842,1.2166439,-0.6470172,0.12309751,1.1941661,-1.5652038 +14,-0.17322132,1.3786557,-0.52142054,0.059446692,0.5449981,-0.9497282,1.6477079,-0.6652426 +15,0.10937528,0.12940396,0.11296755,-0.559806,1.1278515,-1.9066705,1.2590675,1.4750936 +16,-0.4267812,-0.58722806,-0.5066975,-0.3329095,-1.2846389,0.8479586,0.2511654,-0.058824003 +17,0.21888925,0.08935496,-0.96277946,-0.5034834,-0.98919463,1.0967909,0.12300499,0.43023553 +18,0.36900228,-1.0228196,0.9537459,0.5367973,-1.1742157,-0.6594245,-0.013059437,1.6061218 +19,0.63744235,-0.09846208,-1.3082416,0.63709205,1.259041,-0.54470634,0.5496525,0.30657896 +20,-1.0124223,-0.35337976,1.1968688,-0.0800048,-0.5334272,0.33500892,-0.21344922,0.90258634 +21,1.9587328,-2.2869475,-0.21682194,-1.2527107,-0.88447803,1.1168149,-1.784564,0.96118045 +22,1.9537232,-1.214792,0.97905374,-2.203788,2.0236387,0.2843895,0.25185108,-0.9874557 +23,2.9196131,0.53559035,-0.88766026,0.4073757,0.38274103,1.5143918,-0.8520384,0.47290996 +24,0.026716761,0.42518276,-0.95787466,0.49470294,-1.3182498,-0.5010278,-0.42653197,-0.1801355 +25,1.2363098,-0.5804702,0.47456592,-1.2686565,0.5996071,0.7138447,1.314473,0.11952703 +26,-0.101851106,1.8205898,0.18821856,-0.84854513,-0.31485385,-0.4953965,0.5624054,-0.3247087 +27,0.393993,-1.3340241,-0.37044948,0.6318576,1.6935458,0.6397846,0.016206698,-1.4817125 +28,0.22748664,0.28990728,0.5696794,0.9697793,0.18831256,-0.23746705,-0.3965972,-0.8974565 +29,-0.1513743,-0.22521406,1.0783634,-0.7361375,-0.3278928,-1.088499,-2.1379309,-0.020076275 +30,-0.4354884,0.9884427,-1.1584848,0.31252766,0.7621504,-0.26976648,0.3751051,-0.2886036 +31,-0.05235815,-0.71091276,0.39744198,-0.93441236,1.3310518,-0.42812455,-0.57376593,-0.5101516 +32,0.91738904,-1.6417547,-1.8245672,-0.21790476,1.0697086,0.47350633,0.29699045,1.725348 +33,0.53624046,-1.6034465,0.6511067,-1.7731488,-1.1136717,-1.5701535,0.55072135,0.4751749 +34,1.1777327,1.3509642,1.3713157,-0.97609437,0.21953313,-0.14327183,0.23532063,-1.2250661 +35,-0.18333772,0.05591446,1.7179875,-1.1673023,0.16553378,0.7029503,-0.14189628,1.1406262 +36,1.2918472,-1.1954877,-0.82553554,-1.1118572,0.063008115,1.5047913,0.6525124,-0.655115 +37,0.81624824,0.5473503,-0.97308725,-0.5676055,-1.6858418,-0.9442717,-0.6303515,-0.7792383 +38,1.6436869,0.12951371,-1.030453,-0.73704505,-0.42967469,1.2387342,0.80084425,-0.64509887 +39,-0.28899044,-1.1340363,-0.62724775,-1.3494642,0.5778253,1.1076692,-0.6307822,0.16563882 +40,0.006287381,0.70754445,0.12503363,0.40959388,-0.62628675,-1.361618,1.5238833,1.1141388 +41,-0.6296046,-0.6403011,-0.037217762,-0.93581134,-0.87127566,0.88605714,0.15542544,-0.008429684 +42,-0.8075131,0.16579989,-0.878376,0.18674284,-0.516355,0.44990566,-1.9936887,0.8416409 +43,-1.1972424,1.5456709,-0.5675199,1.832607,-0.004020661,-0.17582408,0.44934887,-0.30540773 +44,-1.1320975,0.1037003,-0.31591827,1.5820944,2.050827,1.2954333,1.4437183,0.53003716 +45,-0.49346083,-0.88088036,-0.3340876,0.04907976,0.869728,0.60357064,0.9281028,-1.9520657 +46,1.0575659,0.81393844,-1.9299675,0.058134086,1.6004156,-0.5522308,-0.616921,0.62798935 +47,0.79732364,1.8339316,-1.5731578,-1.4650677,2.0552652,-0.55518955,-0.21882068,0.9703056 +48,0.69610345,-0.06445105,-0.39226967,0.8703991,-0.8589846,1.0924197,0.098495595,-1.3030685 +49,1.8987856,0.10762959,0.5368855,-0.55061007,-1.1588374,3.0305831,-0.14362465,0.6397261 +50,-0.59988105,-0.56823325,0.68297446,1.1424898,-1.4571474,-0.869272,0.2455112,-0.67360306 +51,0.93616474,-0.73357344,-0.4328953,-0.86112374,0.040618807,0.5955696,-0.14488968,-0.11088595 +52,-1.354012,0.47529882,-0.50733614,-1.7577139,0.45677704,-0.106768906,-1.4551109,-1.2499561 +53,0.5505063,-0.27417547,0.48780543,-0.09235701,1.5488045,-0.29762155,0.59917814,0.72928107 +54,-0.83789134,0.9076105,-1.5952882,1.0611318,0.15315764,0.6344061,0.53085977,-0.4245882 +55,0.065098494,-0.79399437,0.16157156,0.40839687,0.30210474,-0.082301915,0.6126954,-1.1973206 +56,-0.35956323,0.48823762,-0.34557164,0.9888486,-0.25358236,-1.1107795,0.5530225,-0.10892269 +57,-1.4274147,-0.16377395,-1.4844487,0.53840804,-0.8131228,0.0806338,-0.09873651,-1.3362807 +58,-1.245192,1.8695873,-0.21559747,0.3544201,-1.6737659,1.3894176,0.5412363,0.0055006146 +59,-0.37438142,0.038814846,-1.3418189,-0.03143496,0.30717468,-0.6971322,1.4883146,-0.6255076 +60,-0.6433883,-0.02290685,1.1748397,-0.6564552,1.2806675,0.04422685,-1.4713231,-1.9563526 +61,1.7148408,0.39831507,0.0796172,-0.5339788,-0.3356191,1.2153755,-1.1363522,-0.9948382 +62,1.5688778,1.4477779,-0.08878331,-0.9314283,0.022489373,-0.15725899,1.0583279,0.6112488 +63,-1.8623562,0.45873475,-1.2536416,0.13854316,0.18339688,-1.446436,0.6916076,1.1201144 +64,-0.21226607,0.9911335,1.7631171,2.3236234,0.7693298,0.06292854,0.11023022,-1.1851707 +65,-0.29868728,-0.18360254,-0.48379198,0.45876104,1.0649153,-0.17272064,1.002505,0.9113608 +66,1.7734966,0.430363,-0.50845796,0.075278014,-1.0089574,0.902939,0.4793005,-0.30288678 +67,1.7124163,-0.814026,-0.14794236,-0.7364347,1.2944913,0.65007865,-0.34307134,0.5446312 +68,0.26205662,-0.6039507,1.946554,-0.02634161,1.3955792,-0.31312096,-0.20863739,-1.217848 +69,-1.0157344,1.6143817,-0.5403399,0.34997383,-1.2456803,-0.7713388,0.43368027,-1.4585787 +70,0.56986433,-0.34107363,0.50382745,0.77096176,-0.7428695,0.23137689,0.10851607,1.0081645 +71,0.8103399,0.047068305,2.520649,0.6825759,0.045697615,-0.74126136,0.7004508,0.7485405 +72,-0.6643053,1.315466,-1.8684603,-0.81309754,1.6955385,-0.11751895,-0.22508791,-0.30068922 +73,1.2212116,1.2446424,0.279246,0.11403971,-0.50348514,-0.7479626,0.23181942,0.28019547 +74,0.26190805,-2.3011837,0.0033961684,-0.6969305,0.21911813,0.39526385,0.33304662,1.5362478 +75,0.31698075,-0.08602463,-0.37701368,-0.7338142,-0.1130649,-0.43108246,0.05440969,1.3252938 +76,-0.03636068,0.64386314,0.14978388,-0.9181481,-0.6400928,-0.34645805,-0.35171658,-0.6255721 +77,0.36283803,-1.0350845,-0.95818686,0.23256811,-0.10294469,-0.2037921,-0.40224183,-0.8119658 +78,-0.8182683,0.2047231,0.10479284,1.4163302,0.17813966,0.96543825,0.30781797,0.055501513 +79,0.9836829,-1.101125,-0.1392664,-1.463402,2.2043848,1.3006743,0.053888135,-0.24758133 +80,1.5187215,1.0637425,-0.5100575,-0.30003086,-0.8699797,-0.7258026,0.19293854,1.0567989 +81,0.73785007,-0.4570962,0.30430862,1.3669851,0.85828906,0.26079583,-0.26541117,0.51472723 +82,-1.0459771,-1.6435552,0.5818778,-1.3672562,-1.0229386,-0.6938468,0.29232866,0.20813842 +83,0.72673965,-1.2302179,-1.3928261,0.010321587,0.37093425,-0.071951225,-1.8859634,0.25400993 +84,-1.8784246,1.282165,0.08794157,0.58337164,-1.3143841,0.39871132,0.38843244,0.6629231 +85,1.0644203,-0.44473106,-0.12338151,-1.5424075,-0.31429186,-1.400944,-0.6422486,0.61481553 +86,1.8054104,-0.6696329,-2.531368,1.4395524,0.71941924,-0.3441711,0.64706063,-0.4611979 +87,-1.1953665,0.26297933,-0.854403,-0.79346275,-0.10277597,-1.5958942,-1.5172981,-1.8027264 +88,0.88646835,-0.36612767,0.9627567,0.6284906,0.32630095,0.4813254,-0.70851755,0.68446106 +89,-0.35131913,-1.2213761,-0.38768739,-0.11731537,0.4314669,-1.4656085,-1.0591674,1.5441794 +90,1.3569964,-1.0709959,0.015259534,0.19282693,-0.036405772,-1.3876959,-0.5450205,-0.96934396 +91,1.2713121,-1.6577579,1.4100852,1.2212156,-0.06350147,-0.1467845,0.8181093,1.4343864 +92,-0.73833084,0.121656194,2.5471776,0.6805078,0.20243415,-0.5127165,0.6509075,1.0323669 +93,1.1070817,1.7015,-0.4901119,-0.03997024,1.1473372,-0.8300405,0.07505106,0.33923808 +94,0.24842978,-0.51897305,2.2457366,0.6145078,-0.17635289,1.1506035,-0.87632155,-0.4838847 +95,0.09052627,-0.73265463,-0.72126985,0.77393854,1.648096,0.49386916,-0.19346017,0.044415846 +96,0.116718054,0.0031405091,-0.9595388,-0.49618468,1.5801455,-0.5040272,-1.1743523,1.7910526 +97,-0.04622905,-2.2084877,-1.5943882,0.26701444,0.9045159,-0.8976263,-1.3091556,1.630012 +98,-0.35965538,-0.32263753,-0.11680391,-0.5199281,-0.88902646,0.4748797,-1.5765718,0.8906474 +99,-0.13533187,0.72066724,0.39290673,-0.2719186,1.0112892,0.9690803,-0.78214043,-0.445565 +100,1.186518,0.76165843,-0.8191043,-1.3176947,0.11080576,-0.023416737,-0.42754477,-0.41270626 +101,-0.49477178,0.4450658,-0.02841705,1.0992079,-0.86593246,-0.5869626,0.016876325,0.75063163 +102,-0.20137048,1.2980279,-1.0392088,-0.049602713,2.6753948,0.66484785,-1.2146945,0.4740824 +103,-0.11201978,-0.10170406,-0.07274035,0.07187949,-0.9859435,0.46382058,-1.0474701,-0.160707 +104,-1.4341831,1.4104062,-1.6455709,0.6402618,-0.2596404,0.314425,1.1245779,1.6575663 +105,-1.1200815,-0.5286671,-0.3083086,-1.2699411,-1.43119,-0.037800465,-0.27030766,-0.31190017 +106,-1.4666537,1.6098651,0.051021297,-0.18325973,0.29618543,-0.4186032,-0.6785143,-0.5835075 +107,1.00035,-0.5712724,-0.80157113,-0.041746683,1.0310059,-0.41470477,0.56017137,-0.6007571 +108,-2.0437143,0.719135,0.32654846,-0.35187548,1.2632607,-0.65835613,0.21736068,0.05168238 +109,2.1671336,-1.3551631,-1.692592,0.43850634,1.103009,-0.7309327,-1.7298652,0.24304026 +110,0.77403796,-0.6417464,-1.531658,0.49008116,0.26839983,-0.15285489,1.2035161,0.06243085 +111,0.6663811,-0.29519904,-0.05854246,0.40131155,0.0295486,-0.7913046,-1.3405926,-0.42514676 +112,0.736603,-0.734853,0.12532932,1.283199,0.31983793,0.16108602,0.6315307,0.018713795 +113,1.2949244,1.0738028,-0.45260638,-1.635837,0.19048893,0.99430335,-0.14970055,0.7265722 +114,-0.54664326,0.041370515,-1.0157037,-1.3332446,0.057619154,-1.0522377,-0.03278126,0.8925092 +115,0.37790787,-1.1636423,1.1379484,1.5038375,0.24179345,0.16392596,0.17512664,-0.77425385 +116,-1.3961766,-0.7075273,-1.1548401,-0.8938289,-0.37600204,-1.1023719,-1.4114989,-0.46394855 +117,0.0667167,0.28037542,-0.78316283,-0.3116254,-0.4021593,-0.7923058,0.05378045,-0.4729105 +118,0.83429146,2.0601573,-0.38165098,-1.0598993,-0.95291656,1.3222885,1.6729618,1.9820348 +119,1.7797378,1.4111886,0.033093657,0.0338626,-0.008826755,-0.40019077,-0.8847486,0.1268582 +120,-1.0177951,-0.3342981,-0.5173354,-1.443527,-1.2524816,0.06565937,0.08268331,0.6491286 +121,0.8841996,-1.869788,-0.36690965,-0.07462331,-0.33393648,0.77558297,1.8335627,1.9526322 +122,2.6476328,1.5838387,-0.10979114,-1.5353652,0.29475418,0.019743804,0.08170358,-2.691078 +123,0.40102303,-0.5777364,-0.5677448,-1.539947,-1.2428333,0.018428454,-0.5744693,0.85694474 +124,0.9848212,-0.25139946,0.015458602,-0.40320337,-0.23634475,-1.0412434,1.1040667,1.7576058 +125,-0.25262508,1.595484,0.1632519,0.11295325,0.2527687,-0.5442335,-1.0302643,-0.4290953 +126,-1.8701757,-1.7369881,0.24739115,-1.6234757,1.1534395,-1.5920691,0.67258453,-1.0776249 +127,1.9414591,-2.337289,0.20016097,-0.6334524,-0.03177061,0.16565132,0.41624507,-0.13863222 +128,0.74882126,-0.58878094,-1.7207162,-0.2937629,1.6581634,-0.12537865,-0.17554586,-0.8160429 +129,1.64396,-0.4214256,0.46035817,0.39943075,-0.6194772,0.18647914,-1.201617,0.115275376 +130,0.017879605,-1.3726332,2.1029568,-0.61230993,-1.3203257,-0.93347317,0.30607092,0.06572501 +131,1.9564757,0.4516544,-0.18099521,-1.2400993,-0.31895885,0.87629914,-0.17984986,-1.0009248 +132,0.56000257,-0.5270184,0.647038,1.0317334,2.1964943,0.11241948,0.28403878,2.1512883 +133,1.0469078,0.3137329,-0.49286544,0.3793526,-0.9784167,-0.40850535,0.0628434,0.2098193 +134,-0.2982955,1.505795,0.9224166,-0.3936585,0.1775962,0.04356814,1.0791726,1.9088633 +135,-0.34656608,-0.15709744,-0.41553646,-0.32935774,0.31689537,0.07445097,0.36260453,-1.4872414 +136,0.7576232,-1.7723631,-0.6473166,0.41554353,1.3016696,-0.27298862,-1.6327524,-0.26060492 +137,0.6617363,-0.762989,0.3580807,-0.101233035,0.45151561,1.5028743,-0.9495001,-0.60252756 +138,0.041253813,0.011935033,-0.8906158,-0.23245741,-1.3012679,0.50831944,-2.1959136,-0.9689827 +139,0.2830183,-0.78616625,0.7620593,-1.3714399,0.68593615,-0.89230794,0.2975974,-2.6779861 +140,-0.24179424,0.8698254,-0.5628535,-0.2847786,-1.1170658,-3.2221792,-0.64283866,0.310046 +141,1.5114086,-1.8408179,1.2591894,-0.5504484,-0.94331974,-1.0486926,-1.5842386,-0.2735334 +142,-0.23702924,-0.42925927,-0.81948096,-1.1965543,-0.74435335,-0.38466066,-0.74821335,1.03244 +143,-0.12063478,-0.9922775,1.5316079,-0.7526635,-0.7978705,0.16785663,-0.28700235,0.80424297 +144,-0.3017179,0.4499509,-0.7914705,1.3127495,-0.9619929,0.46486998,1.2809658,-2.3989487 +145,0.7556472,-0.9766296,-0.6223592,0.66597605,1.3621625,-0.5208386,-0.1272879,0.7797305 +146,0.785564,-0.5323839,-0.025660478,1.4877725,-0.28776672,0.20338348,-0.29961848,-1.0814586 +147,0.25497332,-0.98462224,-0.58901155,0.21446478,2.1109285,0.07095155,-0.34740958,0.8246331 +148,-0.14176488,0.39686614,0.85367334,-0.863133,-0.7782362,1.4077891,-1.6033914,1.0296242 +149,-0.62146765,0.4674973,-1.8354688,-0.5348538,-1.2355623,-1.4334208,-0.77602935,-0.48709863 +150,-0.1394499,-1.1412156,0.06741615,-1.9841084,-1.3292866,0.4002017,-0.48644325,1.5097084 +151,0.6135984,-2.2369506,-0.37548757,-1.1097845,-0.2457686,-0.48706713,0.44590226,-1.3535084 +152,0.38186806,0.36637232,-1.2555797,1.0448899,0.52911484,0.072616905,0.77417964,-0.47744122 +153,0.85636663,1.461215,-0.61866033,1.067183,2.0781863,0.6517006,-2.6622062,0.35279047 +154,-1.2611884,-0.45043355,-0.6990634,0.9864699,-1.098645,-1.3078862,-0.79856795,-0.022792995 +155,-0.7189982,-0.64872503,-1.6102525,-0.35445857,-0.83606243,0.42981553,0.21947345,-0.6407931 +156,-1.1630038,-1.3800226,1.0741013,-0.054124042,-0.7144724,1.3692951,-1.0195817,-0.3597 +157,0.18711147,2.8530302,0.34381497,0.19548972,0.044890158,0.34764856,-0.61294526,-1.2715719 +158,-0.0786272,0.8821512,0.48972493,0.4155013,0.024198994,-0.27853438,1.1668037,-0.018008225 +159,-1.26856,-1.1572055,-1.3176708,0.58769566,0.3705632,0.7250778,1.7667291,-1.1019281 +160,0.5740059,0.08901579,0.20647548,0.8213247,-0.4344374,1.2278721,-0.69877875,-0.39320308 +161,-0.8048948,-1.0591727,-0.5160982,-1.2620765,0.75143975,0.32088622,0.17811313,-1.5962404 +162,-0.05748017,-0.7452172,0.10967384,-2.7353246,0.8503438,-1.3724116,1.778718,-0.70565146 +163,-0.47830087,1.2136866,1.1646498,0.18606696,1.8653998,-0.48392853,-0.6271589,-1.1052234 +164,-1.0083802,-2.627045,-0.91083646,-0.2220975,-0.014980763,1.0549355,-2.338071,-0.31463724 +165,0.25326514,0.6796491,1.2709421,0.37416583,0.17589,1.8827997,-0.35667193,-0.66743404 +166,2.0834632,1.461899,0.42072317,0.11670108,1.207675,0.3393644,0.29084674,0.70435554 +167,-0.7187442,0.14427073,-0.41577995,0.20935129,0.6776646,-1.0049145,-0.21684971,0.8789564 +168,-1.0154442,0.16021092,0.49224764,-0.4446921,1.3461641,-1.7760743,-0.055850767,-0.018752515 +169,0.7806915,-0.9533297,1.0534699,-0.2588739,-0.57639056,-0.1259186,0.6614391,-1.2353142 +170,-0.1589988,1.3654182,0.73404247,-0.73322165,0.9590907,0.5317671,0.4466101,-0.085018255 +171,0.48778817,-0.6657203,0.4182222,0.7096004,0.34941208,0.6115143,0.34454384,-0.26918527 +172,0.38412368,-0.24079283,0.3530847,-0.37844896,-0.831077,-0.101955175,-0.11552984,-0.7054942 +173,-0.2015665,0.7524634,-0.885906,1.2780159,-1.5530481,0.25811937,0.10468995,0.44771975 +174,1.8874193,-0.66340095,-0.25743037,-1.0673493,0.0076901168,-0.51343226,0.10770315,-0.14841528 +175,0.563815,-0.7209357,2.1695852,-0.35257643,-0.019208416,0.31017038,1.5130268,0.48691982 +176,-0.836833,0.07596685,1.3651593,5.6304038e-05,0.71166664,1.7806102,0.41453004,0.6190853 +177,0.097605936,-0.980352,-1.1707147,0.0275779,-1.0585376,1.2496321,0.15922779,0.2564943 +178,1.5779998,-0.5143126,-0.22608152,-1.1843396,0.7308664,2.062503,0.6748994,0.44057307 +179,1.3049325,-1.9532974,0.54226375,1.1081318,0.11190409,-1.1038033,0.33463523,-1.0452783 +180,1.6718321,-0.692082,-0.0707301,-0.40456805,-0.0031737909,-0.57586366,-0.22806352,-1.0620495 +181,0.29655588,1.2041668,-0.9292041,0.10539239,1.2928915,-1.2976168,0.28628,-0.59170556 +182,-0.97145647,-0.8291226,0.78128844,0.3664119,1.6334414,0.46684098,-1.8426495,-1.2451277 +183,1.013289,-1.2966918,0.1513043,-0.2129833,-0.15191358,-0.20199336,-2.0262403,1.8317676 +184,1.14402,-0.58386207,0.09772709,-0.3562336,-0.5628129,0.18615305,2.8533943,1.3642654 +185,-0.23716962,0.3172137,-0.05876327,-0.7043478,-1.0114677,-2.0171247,-1.8063543,0.23547596 +186,-0.20311968,1.5227597,0.08004423,1.5019469,0.77400637,0.12344291,1.2544861,-2.1543105 +187,0.058912307,-0.90374094,0.5083847,0.94311255,0.11904965,1.126973,0.3973612,1.107726 +188,-1.0803754,0.42767212,-0.45517564,0.56627727,0.02918864,-0.19444238,1.2171285,0.600737 +189,2.1475072,-0.802899,1.9803425,0.6148415,0.8472253,-0.08921167,0.20570517,0.34196 +190,-0.12458742,0.86542714,-0.49080855,0.63048494,-0.31290314,0.8499157,-1.7814173,0.96615475 +191,0.1462917,-0.12525766,-0.2673183,0.8723671,-0.41238314,-0.6607379,2.4502285,-0.8542176 +192,1.2962723,0.63240933,-0.32358754,0.27202126,0.33382854,0.062046498,-0.6109528,0.39866874 +193,2.241024,-0.44790083,-0.9463419,-0.6806094,-1.3929396,-0.63254327,-0.18732652,-1.1198516 +194,0.5811296,-0.09267201,0.53598773,1.00398,1.2104149,1.517057,0.7006506,1.4648405 +195,1.0861635,-0.10028894,-0.22736323,-0.8009705,0.25210235,0.13395132,-0.8214737,-0.5713872 +196,-0.6822321,-0.29729208,-0.16573843,-0.14195564,0.5683894,1.1391985,-1.4049901,-0.4013533 +197,1.136423,-0.6917536,0.16629876,-0.62473786,0.7640556,1.7978555,-1.1221074,0.79254717 +198,0.87561834,0.3386158,0.8709083,-0.33336312,0.0043991283,-0.770572,0.9667373,1.4027145 +199,1.5925403,-1.5340114,0.7555742,-0.23188332,-0.39673823,1.7469078,1.6257854,1.5024178 +200,-0.31032968,0.17895243,0.4473208,-0.47890145,0.36046952,-0.56445205,1.0541329,0.26031756 +201,-1.4574293,-0.24064215,-2.4837954,-0.9804692,-1.2275242,0.2594572,1.2683018,0.8325145 +202,-0.37313712,1.8178893,0.5415073,0.36067998,-1.4440751,1.2659218,1.1097119,1.0122573 +203,-0.7917012,1.115466,0.71555877,0.9852071,0.85113084,1.0210849,0.6690772,-1.431298 +204,-1.1240414,-0.46216238,0.40242943,2.2072928,-0.7015471,-1.0071127,-0.7883385,-0.5958304 +205,0.83412546,1.5310882,-0.01926538,-0.96943444,-0.62606317,-1.1448991,-1.3654349,0.40181237 +206,0.9099072,-1.7671292,-1.2572579,-1.0180649,0.40687123,-0.56687516,0.13844357,-1.5549014 +207,-1.0641764,0.7260031,-0.36799476,0.21356267,0.65472394,-1.2853053,1.5497276,-1.927508 +208,1.5260729,0.30259928,0.37031564,2.111299,1.2475051,0.47549778,1.9089489,-0.06618996 +209,-0.013995275,0.3785023,-2.3498325,0.45922905,-0.21221879,-0.2577961,0.24919596,-0.1303362 +210,-1.7278309,0.08840975,-0.4143695,0.48726824,0.2371363,-0.7234432,-1.9607129,0.48244616 +211,-0.96312326,0.8020175,-0.12749332,-1.458639,0.2036381,-0.67505306,0.53853685,-0.09817521 +212,-0.64631367,-1.722522,1.0520164,-1.8685181,0.066008456,-0.8486275,0.94091386,-0.47004578 +213,0.6374423,-0.24659903,0.06273636,0.2599178,-0.3344624,0.9261152,-1.2604933,-0.5333768 +214,-0.50367975,0.058612145,-1.3838589,-0.8138117,0.4505823,0.260939,1.2245239,-0.46396446 +215,-1.4981844,0.33381468,-0.803515,-0.526005,-0.26385465,1.1178304,-0.2854875,-0.96235543 +216,-0.25848043,-0.1495046,-0.3876183,0.5511797,-0.63547593,0.25417393,-0.5270944,-1.2613719 +217,0.12994643,1.6344583,0.8290738,0.08022722,1.6245213,0.76311743,0.06812848,-0.85319686 +218,0.8966963,-1.2686945,-1.2467098,-0.5087143,1.1658256,1.411659,-0.75947326,-0.5448237 +219,-0.09207106,-0.48875305,-0.40953207,0.9413263,0.10231933,-0.5949849,-0.3335732,0.49694416 +220,-0.26762807,0.95376986,-2.6633692,-0.15769815,0.7910007,-1.4481322,0.16358373,2.441083 +221,0.23263723,0.63385636,-1.1115386,-1.5754647,1.3838925,-0.61019915,0.255208,-0.48170802 +222,1.5420984,0.6028918,-0.46492785,0.8636058,0.4530296,-0.40092936,-1.5369265,-0.89355034 +223,0.7338637,-0.48174953,-0.86124164,-0.9656888,1.5794364,-1.1465153,0.24357048,-0.42817122 +224,0.97913194,0.2978456,0.41079265,-0.5735463,-0.94662535,0.85830843,0.17886472,2.1103408 +225,-0.9535688,-1.1259314,0.5548328,0.64268774,-0.8239242,1.1718303,0.2664333,0.6867015 +226,-0.27897137,0.8926977,-0.87764853,0.8321034,2.0654147,-1.1768895,0.028072812,-0.16741925 +227,1.1155169,-0.62540305,-0.78004634,1.9720371,-0.034338772,-1.3140836,-0.43094495,0.13630289 +228,-2.2238717,0.866481,-0.9666794,0.2381315,-1.0511494,-0.04593999,-1.3944162,-0.095281914 +229,2.134433,0.90206915,0.9730713,-1.1703821,0.04393792,-3.0917816,1.5992421,1.574913 +230,-1.1456692,-0.2770619,-0.14196849,-0.7338188,2.125931,-1.8417355,-0.81619275,1.6676663 +231,1.4875964,-0.4271825,-0.33022287,-1.5151371,-0.823558,0.3320011,-0.63685983,0.18548171 +232,1.5278392,-1.3000431,-1.00006,-0.098376445,-1.274545,1.5719157,-0.3944352,1.2468122 +233,0.6897467,-1.2630868,-1.050208,-0.60021055,-0.9680356,0.30426598,-0.9792996,-0.72847784 +234,1.7358859,-1.4854332,-0.34841323,-1.0098981,0.37558573,-0.94540554,-1.2695804,-0.51214 +235,0.08026803,-1.2386962,1.068157,0.3227263,-0.8495578,0.11797978,0.19673555,1.3043453 +236,0.6167242,-1.5538793,-0.7577015,1.5350466,-1.8257935,0.4257118,0.18697399,0.15238982 +237,1.9458269,-0.68586737,1.0031676,-0.497571,0.7840536,-0.60005224,-0.43407184,0.54015857 +238,1.2398367,-0.06395224,-1.8828696,-1.2222035,-0.24129876,-0.2534383,1.2686118,-0.61451805 +239,-1.6088316,0.61313206,-0.6865489,-0.89297044,-0.05319141,0.77039856,0.39836213,0.37861186 +240,0.7901212,-0.6940822,0.5414418,-0.11911458,-0.12542698,0.16561761,-1.2805383,0.43413594 +241,0.4600259,-0.790113,0.2215325,0.43358782,0.98438495,-3.0325336,0.03452984,2.123116 +242,0.6619562,0.5280092,-0.07863764,-0.13319254,-0.036039375,0.29753712,-0.65265596,-1.3088864 +243,-0.094095245,0.70383894,-0.016965646,-2.655542,1.0786976,-1.7540071,1.9957813,0.7334301 +244,0.013485037,-0.8020103,0.46256015,-0.29021844,0.33419922,-0.5454129,1.768199,-0.87282383 +245,1.6293579,-0.8145708,1.4577429,0.19133005,0.6341139,-0.12422142,1.0363295,-0.100362465 +246,0.059027955,-0.24433985,-1.2100228,1.4128292,0.46769714,1.4574722,-0.057646103,-1.0473067 +247,0.9495605,0.63015604,0.34696537,-0.54954386,-0.22728951,0.22837606,-0.248823,-1.3934748 +248,-0.004468441,0.32155612,-0.5934601,-1.3516297,-0.2613582,0.30816227,1.5412861,-0.14468475 +249,1.4610069,-0.3680061,0.290301,-0.08069838,2.387185,1.2438834,-0.46140057,-0.5866594 +250,0.7140176,-0.45749032,0.038267925,-0.12452447,0.022520266,0.11260467,0.70051426,0.43568176 +251,-3.336409,-2.026105,-0.36522096,0.3766044,-0.91522247,0.10540176,0.6518852,-1.0845447 +252,0.041707344,-0.5369808,-0.014452059,0.77475876,0.3114076,-0.7809518,1.4355116,-1.0673264 +253,1.2482469,1.6039577,0.7354739,0.48389933,-1.2290394,0.30492464,0.516649,0.611461 +254,0.43080622,-0.58025163,-0.38657096,-0.9916788,0.08434264,-0.7978027,-1.1918707,-0.93072104 +255,0.19616343,-0.63962066,1.1250153,-0.030741133,2.037147,-0.3305979,0.4909627,-0.69605863 +256,1.196544,-0.21415818,-1.5376312,-1.3101933,0.42793608,-0.7423994,1.5573484,0.044416774 +257,-0.23109952,0.2922307,-1.1572453,0.3500347,-0.19797206,1.0434768,-0.89931357,-1.049322 +258,0.77659184,-2.1462648,-0.0620883,-0.11427833,-0.28792658,0.26242688,-0.030208055,-0.9534368 +259,0.66340566,-1.09132,0.18061021,1.5002017,-1.7189476,0.2509375,0.70300984,-1.2659911 +260,1.4098226,0.8095198,1.3207809,-0.6317627,1.8781486,-1.7665746,0.055865932,0.43555996 +261,0.3965788,0.27885064,0.062433228,-0.43424135,0.49363154,0.005684294,-1.6588905,0.46871433 +262,0.29854953,0.041084994,-0.37789077,0.10058903,0.43864465,0.20893778,-0.79364324,-0.45957705 +263,-0.16489317,0.34068096,0.7161469,-0.24118215,1.0794734,1.1683764,-1.7645556,-1.4093373 +264,0.006759148,1.3516521,-1.1100332,-0.9386302,-0.04331269,0.25983727,0.22259733,-1.2374744 +265,-0.518689,-0.8005401,0.56679565,-0.59854174,0.106211364,0.02448732,0.090076186,-1.4625373 +266,1.1243207,0.2358085,1.272068,-1.3691311,0.060789548,-1.8222511,-0.049107663,0.24738696 +267,0.68478286,-0.5721009,0.31498167,0.7737667,1.7418725,-0.9729742,0.9793289,-0.41386685 +268,0.83144563,-0.090142705,0.10099928,1.1626341,-0.32109767,-0.9682586,0.40412056,-1.7399818 +269,-0.37804878,0.24647784,1.069236,-0.37707233,0.52777666,1.1063668,0.5514925,2.0902462 +270,1.5961722,1.0027866,0.21680385,-1.3368937,-0.08388381,0.8673671,1.1763256,-1.0576118 +271,-0.18162607,-0.8696819,2.1715782,0.6320219,-0.31100482,0.7851236,0.88339925,0.66803974 +272,0.6058408,0.8108023,-1.3277594,1.6689515,-0.29412982,-1.8712438,-0.4369205,0.0063362196 +273,0.6615771,-0.049735278,-1.3741326,-0.9323017,0.6816718,-0.3751607,-1.2696358,-0.40426934 +274,-0.5818985,2.0981767,1.9125255,0.043472327,1.2967302,0.47982457,1.2978743,1.3465858 +275,-1.1200302,0.16760069,-1.5628463,-0.80321836,-0.70046943,-0.32778138,0.083251595,0.9877899 +276,1.4028571,-0.15681352,0.5571143,-0.8920993,1.4786577,-0.22732863,0.6115807,-0.69219077 +277,1.9678291,-0.6713793,-0.14171878,-1.9974093,-1.9734935,-1.6506904,2.5322924,-0.71302694 +278,0.6196818,0.5930097,0.80417573,-0.61696213,1.013295,-0.061954074,-0.1935,-0.44134673 +279,0.95314324,-0.9749012,0.08973494,0.9874356,1.7543645,-0.15310746,-1.0068548,-1.8236927 +280,0.8524226,0.12181299,-1.1855136,-0.2803854,1.6077908,-0.121294215,-0.3189264,0.93812525 +281,-0.16888802,-1.2317566,0.37039307,0.7733566,-1.3605288,0.17950922,-0.2599048,0.5825057 +282,-1.4207617,0.28807536,0.08739759,-0.29197156,0.3747557,-0.41372,0.41761872,-0.42018616 +283,-0.83100295,-0.15459728,0.6839696,-0.6822686,-0.43170688,0.30816892,-0.014528087,0.9047961 +284,1.5676711,2.0392358,0.21200219,1.3448362,0.6038671,-1.344401,0.02608651,-0.86614907 +285,-0.6217215,-0.5543883,-0.3339102,0.2063475,-0.3439483,-0.2543511,0.4392147,0.5646352 +286,-0.68947464,-0.9103837,0.46500534,-1.5186086,0.8395706,0.11714448,-0.053554457,-2.7735171 +287,0.8181086,1.2519848,-1.3045797,-0.068208896,-0.10138101,1.8396602,1.2258509,-0.44684407 +288,1.0180025,-1.4284041,1.5112883,-1.8872302,0.45660993,1.9070609,-0.81293255,-1.1949714 +289,0.11160863,1.1035037,-0.6437329,0.8833351,0.9775701,-0.81965953,0.95167404,0.35180047 +290,0.8228142,1.5155439,1.6255627,-0.8996901,-0.74899757,-0.40090066,0.6379905,-1.4152659 +291,-0.56532526,-0.9420786,0.48313823,0.8463638,-0.75730646,-0.6408929,-0.022566626,1.2394257 +292,1.0706016,0.7442275,-1.006798,0.7530774,0.058553606,-0.45180672,-1.8165462,-1.1216902 +293,0.44241124,0.31844044,1.4656184,-1.7896808,-0.61147,1.2930197,-0.81398207,-0.9912251 +294,1.4981604,0.9524488,-0.53194934,0.81029844,0.52879596,-1.8254093,0.84626603,1.4610927 +295,-0.22509664,1.4123222,0.023850039,-1.0494779,0.3703684,0.7970818,0.55678004,0.16849291 +296,0.8754854,-0.61675423,0.70094717,-0.90856147,1.1263224,-0.48074138,-0.43658036,-0.97405523 +297,-0.4654125,-1.396584,1.1216354,-0.22713068,-0.48611328,-1.7946689,0.018546693,-2.4522157 +298,-0.36660376,-0.29295468,-0.902876,-1.5958173,-1.1255866,1.2519555,0.73930013,-1.3328835 +299,1.6777931,0.095243186,0.089793995,-1.0484353,-2.6584468,-1.9650763,0.51601344,1.2712531 +300,1.3199236,-1.1980716,0.99304134,-0.6472494,-0.680998,1.1564614,0.72681385,-0.06987062 +301,0.5456015,-0.6816447,-1.694076,-2.2492313,-0.083631665,-1.4512812,-0.48775104,1.0248116 +302,-0.015581273,0.4918897,-1.0763496,-0.60969067,-0.13902667,1.053772,-1.3837656,0.5183713 +303,1.3927636,-0.41858244,-1.0999458,-0.66555834,-0.76657516,1.5599864,-1.688644,-0.64659894 +304,-0.26180476,0.9600459,-0.29145637,-0.8639363,1.6613178,-1.2529908,-1.2218615,0.89405304 +305,-0.025090352,1.6036035,-0.8060225,0.46256346,1.3537936,1.6441692,0.02877749,-0.6644508 +306,0.07111388,-1.3157773,-1.8806946,-0.22372895,0.73570377,-1.1261374,-0.63986236,0.27884126 +307,0.6019361,1.6367289,1.7177113,0.70069146,-1.3922933,-1.0271223,1.2436031,-1.6362233 +308,1.026689,1.0935849,-0.92168766,-0.15467086,0.68321955,-1.2624971,-0.22320415,-0.026058203 +309,-0.15888259,-0.9142286,-0.2579502,0.35530794,-0.26414487,1.6688671,-0.40022206,-0.06427063 +310,-1.2293082,-1.0180469,0.36653492,0.68743527,1.1985065,1.134165,-0.906965,-0.44858807 +311,-1.9262393,-0.75485855,-1.0165495,-0.5428365,1.9887528,-0.2122179,-1.2536582,-0.4902597 +312,0.47664982,0.6582889,-2.3940852,-0.040828526,-1.286474,0.38948315,0.31065845,-0.1502942 +313,0.93384063,-1.0249158,-1.2558302,0.09666847,0.8424575,0.07182669,-1.6919639,-0.33596572 +314,-0.21607776,1.1281154,-1.0495639,0.13158666,0.62685096,1.6117742,-0.48550525,-1.7095217 +315,0.8329388,-0.7593211,-0.9482321,1.4233302,-1.6043557,2.8171363,-0.22566329,0.8173834 +316,0.47557345,0.09095928,-0.221119,1.0536866,0.8734715,-0.13378356,-0.8894481,0.6592825 +317,1.5936176,0.18290615,-0.57840633,0.43213627,-0.9842476,0.19854873,0.33604342,-1.3000531 +318,0.6987277,0.4650348,-1.9346312,1.4137405,-0.117586814,0.08248977,-1.4680103,-1.715046 +319,0.5021115,1.8387864,-1.0615892,1.636735,0.077148095,-0.7274102,1.3217617,1.3635541 +320,-1.1030945,-0.35228333,-0.54149747,1.0715706,0.05438128,0.43210694,0.29850748,-0.34763655 +321,0.45066404,-0.5336515,0.17820702,-2.269594,-0.37049568,0.72931135,0.9563268,0.29091135 +322,0.3518818,-0.44685858,0.3437001,1.2806065,-0.19807233,0.8509225,0.26510078,1.4142158 +323,0.51928174,0.40060204,0.011962041,-0.8298786,1.3773754,0.10691213,2.5038607,-0.27105838 +324,-0.60055983,-1.8544388,0.58726424,-0.548982,1.558963,-0.10517881,-0.711651,-0.80403847 +325,-0.79813755,-1.3031471,0.45145485,-0.5329362,-0.88625556,0.24621083,0.006053483,1.1442871 +326,0.16743483,-1.32737,-1.607426,-1.3930374,-1.1521597,0.33360028,-0.17211498,0.21170713 +327,-1.8604528,1.4391373,-1.5229607,0.87403715,-0.06119384,-0.24823329,0.8367765,0.21469487 +328,1.2171515,-0.31679612,0.5572426,1.7448728,-0.9811351,-0.9378253,0.50967646,-0.68093336 +329,1.4496819,-0.4025007,0.8514855,-1.135428,-1.181033,0.69958216,1.2186909,0.91909677 +330,-1.2452509,-0.4297832,-1.5390211,0.7854692,0.8742565,-0.38419086,0.25004414,-0.47862196 +331,1.3885045,-0.23672383,-0.33971483,-0.24049118,-0.96574867,0.6361683,0.5757048,0.6399382 +332,2.7356312,-0.45351163,-1.1356748,0.5160007,-0.43053937,-1.5003575,0.68037355,-1.291991 +333,-1.8310915,-1.6904837,-0.87512624,-0.70437735,-0.9690145,0.9861235,1.6086906,-0.9567673 +334,-1.0969917,-0.4172222,-0.12537201,-0.74019307,-0.36204764,0.42862698,-0.3126956,2.0615652 +335,-1.9666692,-0.6106028,0.30525225,0.69710857,-0.37695983,-0.64301413,0.39014596,-0.15634432 +336,1.5349854,0.12948075,1.1953707,-0.29505146,-0.24891761,-0.12780857,-0.03342775,0.12668917 +337,-2.5022097,-0.031042956,-0.6155654,0.20686173,0.9849218,-1.5633805,0.7231082,0.2842924 +338,0.8662623,-0.79170614,-0.02974414,-1.1577332,1.8640763,-0.72199255,0.31960532,1.5780364 +339,1.5695845,-0.19846085,1.1758035,-2.9683273,0.9504576,1.5590457,2.0169,-1.1962173 +340,-1.1696415,0.45471427,-0.9299133,-0.61275494,1.3453871,-2.240105,-1.7400749,0.38558662 +341,0.77749646,1.0773047,0.5119381,-1.1507068,-0.4169931,-2.1335754,-1.0449297,-1.0898434 +342,0.7684418,0.41778085,1.2632167,0.50285244,-0.6275821,0.28421527,-0.38260478,0.13629152 +343,1.1506346,-0.58318067,-1.7501161,0.06574712,2.1002622,-0.109148085,-0.19524007,-2.1459699 +344,-1.0535971,-1.0183741,1.1758839,0.6699631,0.37831253,0.5522147,0.55663663,-0.1033318 +345,-0.22886449,-1.0881976,-1.2624305,-0.24542817,0.44641167,-1.8359385,-0.636953,-1.5505247 +346,-1.5361153,-1.1418855,-0.2597219,1.1347852,-0.1523791,-2.5723255,0.7287543,-1.5611445 +347,0.7739875,0.44032967,0.05074265,1.4612485,0.45609227,0.34135953,0.5812415,-1.7516708 +348,-0.15109004,-0.57146466,0.049812004,2.060446,-1.1493402,0.5220743,0.27139735,1.6588496 +349,0.4178801,0.5111344,-0.78228676,-1.415469,-1.4441624,-0.06192161,-0.6813438,-1.0960402 +350,1.2221029,-0.39791727,0.8062766,-0.51386696,-0.9682523,0.68315995,-0.7258715,-1.3745841 +351,0.22837394,-1.3416092,1.4936335,0.12831086,-1.9881071,-1.2812754,0.19213106,0.6950529 +352,-0.76751614,2.283274,0.39009762,0.3970544,-0.7869911,-0.5033866,0.6700983,0.012233183 +353,1.2646031,-0.9025718,0.71988475,-1.9362559,0.84739316,-2.5691729,1.0511371,-0.7381811 +354,1.103465,-1.0713321,-1.4016097,-0.31322128,-1.4441202,1.518843,-0.04637845,0.18125056 +355,0.27383482,-0.34283334,-0.41818002,-0.8285861,1.5649023,0.13788939,1.2857975,0.0764305 +356,-1.1571629,1.115549,-2.4410572,1.486242,-1.9609455,-0.5329644,0.21955745,-0.6632873 +357,2.5352118,-0.82784975,0.016610377,0.13560662,0.53805923,1.4054555,-0.24934544,-0.23530872 +358,-0.43329823,0.45624307,-2.2835383,-0.9099215,-0.6437046,0.44922835,-1.4192822,-0.2167679 +359,-0.40331924,-1.6924893,-0.28343695,-0.4392037,-0.5157931,-0.20339862,0.25209728,-0.6160246 +360,-0.79145956,-1.1770971,-1.8958905,-0.78039575,-0.94254476,1.0000349,1.6964154,-1.0447465 +361,-1.3306459,-1.6469436,1.490837,0.7770339,-0.31393462,-1.7824229,-1.6117374,0.030856777 +362,0.052440308,-0.75552833,-0.8653021,0.41950133,0.015958756,0.0007439498,-2.5172453,-0.5700003 +363,0.3957709,0.94131166,-0.46960834,-0.2981877,1.3440198,1.7143958,0.53598404,-1.3422605 +364,0.10583388,0.46856514,0.75033045,1.1190419,-0.7894908,-0.6821008,-0.91250587,0.03684807 +365,0.4394212,0.44516352,-0.0622215,-1.491892,-1.3027458,-0.081074014,-0.4807064,1.1319516 +366,-0.30730528,0.73615503,1.3441828,1.0133934,-0.8693747,0.0637742,-0.16414149,-1.2582698 +367,2.0447912,0.52797425,-0.49436077,1.301329,0.27530986,1.8058697,-1.4150077,2.5129619 +368,-0.18932669,1.2376065,0.9234806,0.8245712,1.225284,-0.5792374,-2.25386,0.58205575 +369,-0.29324436,0.40013552,0.34788707,1.2716442,0.27352512,0.7608749,1.0815003,0.6232558 +370,-0.7435618,1.2736607,1.6384854,-1.6342438,0.502725,-0.7110519,0.63036853,1.5416461 +371,-0.8995577,0.8080869,0.4892562,-0.75606585,-1.0110719,-1.4195967,-1.5179652,-1.2503996 +372,0.7938634,0.3695643,0.743199,-0.6807834,1.9172508,0.7543022,0.72064084,0.7266503 +373,-0.03591411,-0.66891485,0.11541723,0.9103549,1.8360395,-0.7797671,-0.88017213,-0.5239167 +374,-2.4675548,1.1924435,0.37413684,0.54294914,-2.1664991,0.78949714,0.03941279,0.28072083 +375,-0.1675044,0.7453064,-0.5748595,-0.44395798,-0.39002776,0.39945486,-1.4197049,-0.9396056 +376,-0.89616525,-0.4300247,-0.34675065,0.8385066,-0.19874927,-0.43553993,0.0503195,-0.7199727 +377,0.21118529,-1.2753328,-1.1849355,0.8509067,-0.79855895,1.6885738,0.4637988,-0.51718277 +378,-1.5444067,0.36045194,0.47577617,-0.05976116,-0.13368788,0.7622117,-0.91405684,1.9494795 +379,-0.659811,-0.2318032,-0.10771208,0.33007365,-1.1198577,2.0950015,-0.13943967,-0.495725 +380,1.0393724,-0.56012446,0.60095483,-0.3508146,-0.34299037,-0.7106755,-0.62846375,0.023909234 +381,0.5584834,-1.9266063,0.6006403,0.05877246,0.66734153,-0.7306262,-0.06405174,-2.7981832 +382,-0.22537014,-0.58739364,1.0776056,0.9467293,-1.024001,1.3070929,-1.1544372,0.6856934 +383,-0.56004035,0.34267455,-0.04779273,-0.14063469,-1.3234999,-0.6835307,0.36224657,-1.3096694 +384,0.6036052,-0.1916078,0.31370166,-1.5152807,-1.9477042,-1.763189,0.75717294,-0.4878804 +385,-0.72497,-1.2751656,-1.016498,1.3383018,-0.77081877,1.102229,-0.548177,-0.0032728296 +386,1.643675,-0.23064773,-0.062182173,-0.38007677,-0.54241663,0.7035116,1.7248393,-2.1440425 +387,0.07641631,-0.3052699,0.6470943,0.4882234,-1.3085036,1.3927174,0.060859747,0.27725613 +388,-0.19770396,-1.0161871,0.48539823,-0.4972825,2.185274,1.0439808,-0.59854215,-0.87394446 +389,0.74585176,-0.22291994,1.8356705,-1.1390159,1.044807,0.19801015,1.0374851,-0.14173447 +390,2.6285105,-1.0110332,-1.010569,0.58345526,-0.3641732,-0.8106131,0.20037764,-1.185762 +391,-0.039434522,-1.192106,-0.07476583,-0.278732,1.3141152,0.5806193,0.967198,1.5239106 +392,-4.07303,1.3479273,-0.5698566,1.4208055,0.655179,0.018408246,1.0669163,1.3176277 +393,0.4799428,-0.07425703,-0.114786655,-0.18893501,0.579836,-0.12533675,-1.2594866,-1.422246 +394,0.13330373,0.033325423,0.12870866,0.8781573,0.35848263,-0.11214198,0.21078703,1.8126992 +395,-0.3537007,-1.0790489,-0.51947063,-0.27249664,0.58687,-1.0829482,-0.95233303,-0.92805916 +396,0.23956612,-1.3707151,-0.3241205,0.252007,0.45796618,-0.6710411,-1.174072,0.22599116 +397,-0.031524837,1.225414,0.06029664,-0.7046205,-1.5146365,-0.66502845,-0.66111076,-0.5741804 +398,0.45346355,0.8948633,0.3792946,0.14147966,0.057740655,-1.126756,-1.3126988,-1.0513202 +399,0.19178885,-0.65408754,0.36541575,0.14312251,-1.6868014,-1.6851995,-0.13911971,-0.8407036 +400,0.56330854,-0.43543756,0.035953183,0.18988258,-0.12722202,-1.8448771,-0.5763198,-1.035153 +401,-0.4584812,-0.08473714,0.68961877,-1.6595259,-1.0677459,0.81386757,-0.3493538,-0.31451875 +402,-1.0643277,0.76813424,-0.13586159,1.5383235,-0.47715524,1.2946948,-0.19195917,0.42370883 +403,0.19943926,-1.3668362,-0.5944184,0.25327092,1.1305891,-1.3731639,0.5003512,0.19309708 +404,-0.33467847,-2.4428406,-0.39414662,-0.2728458,1.3231226,1.5136745,0.63912183,0.09260109 +405,0.8634913,-1.8002756,1.461393,-0.52941513,-0.43063986,-0.33325198,0.45066884,0.66912407 +406,-0.4525655,-0.03182467,-1.2759875,1.8090765,0.43068224,0.05588638,-0.29887784,1.2894238 +407,-0.038396455,-0.08983146,-1.1487819,2.12669,1.9072757,-0.7287414,-0.13174863,0.7761209 +408,1.6564463,-0.20117098,-1.1644696,-0.19520117,1.8345697,0.5922743,0.32404897,0.7073699 +409,-0.23471338,-0.021905452,-0.031741247,-0.030382968,-1.0656961,-1.0959021,-0.55063987,-0.87682796 +410,0.7014496,-0.071293786,-0.26824751,0.12657171,-0.26795784,-1.8973972,-0.5477383,1.027827 +411,-1.1562121,0.8198295,0.44353753,-1.0152417,-0.80949706,0.92075324,-0.08624867,1.3804377 +412,1.3056027,-0.6749226,0.9166125,0.039981924,0.5095467,-0.373946,-0.014301337,-1.2080033 +413,1.0742143,-0.1962176,-0.5665023,0.46929464,-0.71096146,0.9041201,0.7742269,-0.16840431 +414,0.8989111,-0.10284746,-0.20087467,2.2703593,0.52420694,0.88335043,0.20725429,0.25268027 +415,0.20351955,0.6011229,-2.510556,0.6473811,0.08980377,-1.0417149,-1.0113178,0.20717797 +416,-0.83915603,0.06669776,-1.5779636,-0.78410447,0.84700006,1.3116276,-0.14827651,1.3529681 +417,0.3599726,-1.3010266,-1.4893469,-1.4688566,-0.83346045,0.7907925,0.017361525,-1.4498911 +418,0.22755705,-0.1916979,-0.65766734,-1.2662307,0.7009213,-0.03314162,1.8295386,-2.4815369 +419,-0.8297329,0.7711969,-1.7556921,-0.90366644,-0.49114567,-0.7939764,0.34637678,0.06393409 +420,-2.5057018,-0.6560181,-1.2738224,-1.3392276,0.2277272,0.36689535,0.8686727,-0.088161014 +421,0.38053355,-0.24632804,-0.4031334,-0.7867613,1.6480392,-0.93169254,-0.80453974,-0.33612505 +422,0.05482379,0.16755934,-0.42920032,0.150336,1.1536517,-1.2045816,0.3440991,-0.21192847 +423,1.5456163,-0.9078728,-0.9978081,0.59336954,-1.1548275,0.98085415,0.46331924,-1.8357214 +424,1.2254345,-1.0362163,0.69562817,-0.3680827,0.42531437,0.21428025,-0.40748104,-0.782244 +425,0.35169232,1.0854121,-2.1394877,-1.4632733,0.5216844,-0.96907485,0.031311784,1.4367678 +426,0.72429067,-1.1560174,-0.036993913,0.52280015,-0.4363841,0.07948342,0.29360306,-0.495089 +427,-1.5129764,0.42953953,-0.13828176,0.17124006,-1.3888357,0.22361153,-0.7867242,-0.18899892 +428,-1.3845277,-0.6661861,0.11746438,0.36071974,0.9340562,-0.18321387,-1.4093546,0.9360651 +429,-1.1917852,-0.5875491,-1.6400259,1.9039139,0.56213343,-0.5199658,-0.90831447,-2.9096925 +430,0.2455059,0.1424078,0.064255245,0.77169776,2.7771325,0.077170394,1.5865084,-1.4202849 +431,-0.8738653,0.41334283,-0.98502004,0.2633126,0.33440623,0.16108036,-0.6401718,-0.97684354 +432,0.11428289,-0.9850216,1.4915421,0.6410785,1.1245394,-0.19325136,0.059316684,0.07525875 +433,0.086052194,0.48271555,0.65064955,-0.45332575,0.8940917,-0.4608589,-0.96560204,-0.5888121 +434,-0.22655727,-0.49637482,-0.093637615,1.2831526,1.1554878,-0.92234737,0.9406606,0.45827878 +435,-1.3643587,0.53999424,-1.7319574,0.63861996,0.10960393,1.4430137,1.4302938,-0.17267561 +436,-1.4948328,0.6358214,0.83223504,0.3171196,-1.6400828,-0.68032724,-0.038994282,1.0443271 +437,-1.3488712,1.0952315,-1.4846799,1.1821932,-0.8677125,-1.6439524,1.456498,0.60757554 +438,-0.8545605,-0.085293956,-1.2721959,-2.1973782,0.4486275,0.72727543,2.643029,-0.86361957 +439,0.6302624,0.24737285,-0.7262545,0.25910106,-1.8407106,-0.6936567,0.09892263,-0.91305393 +440,1.3034397,0.60386604,-0.22332963,-1.238141,0.55179244,1.158482,1.8742696,0.041396774 +441,1.6634276,-1.5687723,-0.95862854,-1.0816762,-0.34242833,-1.0255566,1.2155781,0.28167504 +442,-0.49161077,0.29296032,-1.538355,0.31879532,1.0783081,-0.52961946,-0.5998985,0.26816848 +443,0.9320337,0.9907572,-2.242195,1.0977975,-0.94954354,0.07749428,1.1489393,-0.18836614 +444,-0.6128398,2.5311143,0.14130545,-0.91450983,-0.3710395,0.37236273,0.17236221,-1.1044164 +445,-1.6822056,0.7528796,1.1705993,0.2528658,-0.35513595,-0.33638993,-0.9656754,-0.9161057 +446,0.5581665,0.46659204,-0.2778079,-0.09866738,-0.50182825,0.15652421,-0.6268362,1.968335 +447,0.35179794,1.4453375,-0.77667487,1.2985164,-0.3349889,0.35492882,0.20545727,-0.8613128 +448,0.63940394,1.4222255,-0.43311763,1.0141174,1.3690277,0.3883782,1.6897479,1.2166606 +449,-0.3999052,0.77722126,0.15685593,1.2074933,0.33594996,0.013419509,0.6032531,-0.18801746 +450,-0.9536554,-0.31884995,-0.7914046,2.503617,-1.0614636,0.76236004,0.87706876,-1.0597801 +451,-0.39746928,0.53891194,-1.3174232,0.80914146,-0.36948258,-0.16153477,0.9428998,-0.35256523 +452,0.95767957,1.3043163,-1.0002042,-0.06142328,0.39742598,0.5548886,0.5319931,-0.08964552 +453,0.02317506,1.1394546,-1.12562,-0.62658125,0.4503922,0.17434204,0.2787189,-1.051203 +454,1.0722561,-2.6658611,-0.5492252,0.31626216,-1.8831081,-0.34836775,-2.0011432,0.054476872 +455,0.047523998,0.1632955,-0.35317764,-0.5586176,0.038244445,-0.021659244,-1.0088851,-0.84721035 +456,-0.1426468,0.26253408,1.213863,-0.7094761,0.03980144,-1.1745356,0.9331194,0.4956834 +457,1.2765543,-0.2408199,0.25685653,0.52693623,0.75052303,-0.00407055,-0.23034126,-1.2044451 +458,0.71623707,-0.06519744,-2.208538,-1.1851184,-0.026664943,0.70332074,0.85710514,-0.3758372 +459,1.2566137,0.1315161,0.8588821,1.3443321,-1.0354643,-1.2989448,-0.7460943,0.82030797 +460,0.5292133,-1.46654,-0.22155833,-0.37985465,-1.1711204,-0.8842548,0.89524823,0.5053353 +461,0.23118901,-2.1378534,0.24593264,-0.9659476,-0.25332075,-0.59382355,2.1804702,0.18614051 +462,-0.3044417,-0.6764951,0.5221884,-0.6306539,-0.5628172,1.5702825,2.391907,0.21040066 +463,1.8988798,-0.4128377,0.53007865,0.6756442,-0.89252466,-1.016473,1.948452,-0.71394247 +464,-0.3420674,-0.77700526,-0.33733618,-0.69438815,0.7212423,-0.25492308,0.015608805,0.27310985 +465,0.6803453,0.25962913,-1.8339072,-0.68873113,-0.9838054,0.4789731,3.1029758,1.2591417 +466,-1.1293626,0.5562924,-1.4042095,0.3755525,-2.027718,0.7552971,-1.4190493,-1.1161616 +467,0.33965886,1.248926,0.5202902,-0.24290201,0.87509704,-0.23267046,1.0910244,-1.299085 +468,1.8689798,1.998346,-0.9148805,0.70478296,0.069726825,0.7215097,-1.8296585,-1.1824718 +469,1.480332,1.3855903,-1.4568093,-0.6961591,0.7390965,1.9267168,-1.1149013,-1.1460334 +470,-0.3126394,1.8801721,-1.3421478,-1.1300685,0.83532035,-0.4091456,-0.98484206,-0.13664474 +471,-0.017218776,0.48016432,-0.22199106,-0.702744,-1.1072588,0.17583185,-1.0986366,1.2612482 +472,-0.1774686,0.5347413,-0.8720791,-0.21134412,-0.4078903,-0.2306185,-2.3204489,-1.2067491 +473,-0.22523604,-0.51648855,-1.5460669,-0.7072972,0.90847635,-0.32416433,0.03994776,-0.13993639 +474,2.2897785,-1.0353018,0.40352702,0.9930475,0.6158803,0.09001784,2.4290419,0.71569 +475,1.6231736,-1.8239118,0.1678704,-0.48057997,-1.2910205,0.23838654,-0.30063975,0.9043854 +476,-0.7671604,-1.1864109,-0.37433046,-0.6027835,-0.3395661,0.69123435,-0.05015266,0.26656547 +477,-0.23788936,-1.1664989,1.1719649,0.68323165,-1.5577285,-0.073767155,-0.067565754,0.54557365 +478,1.3212923,1.2858572,-0.4314906,0.3794617,-0.9697501,0.4684542,-0.06255996,-0.79279995 +479,-0.016798258,1.2784296,0.8877715,-0.6429982,0.18325254,0.10693283,1.459812,1.2130364 +480,0.12985496,-0.22057575,-1.077707,1.253341,0.5366659,-0.9397386,0.9548949,-1.6976213 +481,-0.04546596,0.750407,-0.26447606,2.3399677,0.35349226,-1.2892584,0.37857872,0.32001495 +482,0.41020608,0.024789527,0.016596973,1.0420074,-0.6225692,2.203126,0.12869738,-0.12973757 +483,1.0193367,0.024377622,0.5959569,0.27594492,1.2667526,0.14022101,-0.744526,-1.6170533 +484,1.9684154,-0.820222,-0.72227824,0.20851816,0.6387924,0.36403498,-0.33844364,-0.61223763 +485,1.2330436,1.6668099,1.0595336,-1.0579213,0.47881633,-1.074279,1.5764885,0.16108136 +486,-0.45503724,-1.7261627,1.0340799,1.259817,-1.5870788,0.46259624,0.15689465,-1.2360117 +487,0.14056133,0.44641608,-2.1071322,0.39160448,-0.037652,-0.42043406,-0.097760886,0.59093004 +488,-1.0321804,-1.360511,0.37570506,0.76622856,1.3582169,0.107928276,1.7217965,2.1188264 +489,-0.64714396,0.20285463,-0.49004912,-1.5139096,-1.2869031,-0.22783847,0.17224213,0.80867106 +490,0.19761339,-0.7756209,1.3071777,1.2686752,0.6030623,0.21757345,-0.9682608,0.39421797 +491,-1.7123736,0.9029071,-1.4509206,1.0557722,-0.024781968,-1.3706957,-0.020247582,-0.19459112 +492,-1.4399774,0.28360903,-0.14939225,0.8664626,1.5305755,-0.33073476,-1.0784059,0.9087903 +493,1.1689925,0.3901651,-1.3243586,-0.38875857,-0.7026985,-0.64480966,0.7424116,-1.2303598 +494,-2.0537844,-1.1538111,-1.0801151,0.27738413,0.4200243,1.5525719,0.8732024,1.000104 +495,0.23626718,0.6423452,0.6726351,2.6306047,0.8735582,-0.72964406,-0.7460791,0.008399274 +496,-0.18346934,1.4985261,-1.1427606,0.11837979,0.58646727,0.3453703,-0.70557755,1.9022193 +497,0.025402844,-0.80634034,-0.38479742,0.36326283,-0.26599208,0.94097555,0.41197035,0.9022422 +498,0.019903366,-0.3810168,-0.27419338,0.8840096,1.685245,1.4141288,2.640529,-0.17235526 +499,-0.17459078,2.2640617,-1.0075843,0.4050067,-1.00922,0.5556661,0.5931825,1.9697614 +500,0.7545312,0.017707609,-0.0060343295,0.17550406,-0.99150354,0.16707855,0.4056985,-1.3214288 +501,0.81766653,-0.1798861,-1.2270322,-0.30251905,1.4062334,-2.0837579,0.59929824,-0.27274492 +502,1.2984653,1.0770046,-0.56501997,-0.040941663,1.389868,-1.1376948,-0.9030856,0.9686104 +503,-1.1540514,-0.6408531,1.2556512,0.8638848,-0.080921195,0.31485936,1.3829572,-1.1532828 +504,0.66070646,0.5601887,-1.4471663,1.5769733,-1.2457359,0.5088403,-0.18423307,0.79687804 +505,2.0672925,-0.09164065,-1.2972434,-1.2910812,0.5624213,-0.89009565,1.3305237,0.9026435 +506,-0.43946934,0.35882255,-0.25216088,1.7961025,0.2822279,0.08875266,0.47524515,0.878872 +507,-0.030223787,-0.3004099,0.50224036,1.0072627,1.3476105,-1.3153651,0.16958493,-0.4032348 +508,-0.9272657,0.6493705,1.5406679,-2.02656,-0.27257806,1.5905819,1.3332849,1.4847766 +509,-0.008398443,1.6372609,-0.80401665,0.34350488,0.090490796,0.3960428,-1.2848791,0.6272868 +510,-1.3988769,-0.5069278,-0.4761663,-0.3973909,1.6143024,0.80357105,0.59163547,0.9753778 +511,0.5538583,-0.86660343,0.06848118,-0.35763478,-0.78074086,0.8346194,0.31291807,0.22660421 +512,-0.9701333,0.6311801,0.7645917,-0.6847898,0.28421426,-0.19292861,2.8167815,-1.2225451 +513,-1.9153019,1.2025875,0.20192252,-0.13596077,-1.0903429,1.955871,-0.7075334,-0.5707956 +514,-0.045268133,-0.12072193,0.13457412,-0.089842625,0.5132071,-0.6454251,-0.23928057,1.6298856 +515,-1.719512,0.8141835,0.5955585,-0.5671632,0.70036995,-0.7535167,0.013345912,-0.10903433 +516,1.7416085,-1.0663482,0.022628672,2.0118022,0.34124786,0.26085028,1.4255311,0.1791768 +517,0.10932523,-0.95554566,1.0791444,0.1969895,-1.0511848,-1.3242087,-0.22881335,2.1883614 +518,1.3173888,2.4200811,-0.4097183,0.12972307,-0.0499603,1.0648139,1.3742188,0.58971703 +519,1.0813018,0.44702098,0.20782879,0.58801526,0.92460644,-0.628854,0.6666817,-0.5492247 +520,0.2618095,-1.0356569,0.56957984,0.33417204,1.3732398,0.54838073,0.50247085,-0.06163284 +521,-0.3504969,-0.49474624,0.5164044,1.4434875,-0.12861812,-0.5328761,0.016011223,-0.074679196 +522,-0.5894995,1.5664681,0.18177485,0.6923381,0.8437107,1.2602293,0.39730987,-0.80232996 +523,-0.40524334,-0.0090055615,0.42358083,-0.060128607,-0.74999666,1.3178942,-1.3394744,-0.6077572 +524,-0.0185332,-1.5901997,-0.22133489,-0.64037526,-0.57654417,0.2302753,0.11956894,0.4801519 +525,-0.5213156,0.31935626,0.34225664,1.4802654,-1.1024694,0.29149047,-0.21351852,-0.54144716 +526,-0.0438987,-2.246339,-0.33136004,1.5947806,0.140241,0.16056947,0.13197447,0.3883976 +527,-0.56277746,-1.285072,0.004448533,-0.16170628,-0.30524975,-1.7354372,-1.4659245,-0.16286129 +528,-0.031468302,1.9671186,0.34231353,-1.9944819,0.552292,-1.1830353,-0.30568758,1.3882537 +529,1.2462353,-0.32517558,-0.45266676,0.6105289,1.8238354,0.2803655,-0.1399642,-0.36109787 +530,-0.42630988,-1.1375952,-0.33978915,0.63445854,-0.5776054,-1.3198711,-1.9148402,-0.28691214 +531,1.2205,-1.907442,0.47425863,-1.4822531,0.044544447,-1.5324655,-1.650533,0.43278638 +532,-1.1683061,0.35678673,0.13619107,0.73306334,-0.37359804,-1.5788766,0.014568191,0.042977538 +533,0.32466128,0.29612976,0.11982154,-1.6025996,1.1012043,-1.0773335,-1.4078534,0.13061625 +534,-0.030616835,-0.5533528,0.4261192,-0.5500644,-1.8128451,-0.84382504,1.5089858,-1.2325822 +535,-0.054478765,2.7362838,1.5272756,-0.12272203,-0.31604755,0.98451245,0.20944168,-0.4482825 +536,-0.84766144,-0.70419675,0.26633155,-0.73304856,-0.81078094,-0.50209343,0.6551976,1.2088528 +537,0.9328109,0.66965413,-0.6071895,2.1317506,-0.41643706,1.2407156,-0.58830345,0.24072787 +538,1.0943387,-0.8452865,-1.7499663,0.7722718,-0.14832918,-1.0935097,-1.8140924,-0.6609932 +539,0.63488317,-0.3514221,-0.7239198,-0.5914414,0.9563498,-2.0137413,-0.7068064,-2.2236397 +540,-0.54492575,0.8733123,0.76638925,-0.61047363,0.4154973,-0.12444233,-0.81041944,-0.8559326 +541,1.475675,-0.6337563,-0.058953524,-1.4331425,0.08674367,-0.8003766,0.7760247,-0.48222727 +542,0.6314455,0.18801087,0.08983934,0.6504767,-0.044352263,-0.61629844,-0.39100584,0.16743368 +543,0.34851795,-0.55592304,0.35013038,0.03624802,-0.016595185,0.12053314,0.40122676,-0.060925484 +544,0.2447526,-0.49838287,0.053240743,0.42657828,2.9167857,-0.31251147,0.6411352,0.5481338 +545,-1.1552879,-0.5829155,-0.99823874,0.23074272,-1.431479,-0.80856735,0.8250319,0.615775 +546,-1.7425902,1.3053411,0.58051467,0.22708827,-0.2847882,1.0993484,-0.07364394,0.1106139 +547,-0.95941013,0.39413154,0.20776609,0.29362643,-1.527168,0.22807269,-0.5185628,-1.4077026 +548,-1.9799179,1.4940999,-0.9962923,-0.58146054,0.5791596,-0.5692275,0.80333316,-0.8545984 +549,-0.57490957,0.09103193,0.3661141,-0.6625031,-1.0169481,0.7901213,0.5582373,0.41710997 +550,3.1017702,-2.3144102,0.068306714,1.5218233,0.12565358,-1.4452252,0.16776447,-0.5559254 +551,-1.8454041,1.8220406,2.0141697,-1.4336501,-0.26462957,-0.10487588,-0.47581115,1.4125663 +552,-0.99640536,0.59559107,0.9128531,-1.2698557,-1.0406677,0.5603807,-0.121057816,0.4068103 +553,0.16301718,0.5742005,1.1120021,-1.2935176,1.2943403,-0.3439946,-0.4962572,-0.30551678 +554,1.308314,1.7547724,-0.7017156,-0.76318985,-1.9024038,1.6853571,-0.28684357,0.3003134 +555,-0.2109612,0.31510153,0.18560858,1.3913277,1.229771,1.2764744,0.6567735,-0.51788396 +556,-1.1531665,-0.90338117,-0.56835526,-0.57936233,-1.1346653,-2.7514555,-0.68888146,0.8289535 +557,-1.1880985,-0.03430129,1.0990373,-0.24680483,-1.2660881,1.0191747,0.64128965,0.14915866 +558,0.5141526,0.870774,0.5327867,-0.07587639,-0.37115097,-0.030848205,0.41944465,0.10217172 +559,0.97969484,1.0248059,-0.48022133,1.0829163,1.1783828,0.47694367,-2.398058,0.5071712 +560,-1.3807838,-0.43062538,1.0769426,1.1296089,-0.5289516,-2.854662,-1.9777744,0.25566617 +561,-0.14097898,-0.10036707,0.80799264,-0.001980517,1.0682776,1.2643576,-0.19969198,0.8345348 +562,0.5205204,0.05498827,-0.44946808,-0.4058993,1.228888,-0.32128227,0.355641,0.19952893 +563,0.23591655,-0.25012875,-0.2599467,0.07271585,0.96558803,1.1520482,-0.3995866,-0.51679605 +564,-1.0707839,0.6571529,0.69142795,-1.0169756,1.4417272,0.20968255,0.9164935,-0.9710043 +565,1.8051919,0.071830526,-0.6788788,1.6372349,1.0179507,-1.1182667,0.27727926,-0.3398443 +566,0.55154234,-0.88162434,-0.2948,0.018397518,1.3916837,-0.79435796,0.5211581,0.3344787 +567,0.72553104,-0.13008437,1.6414397,1.280446,-0.909057,1.6506743,1.8602167,0.8055114 +568,0.08353947,-0.083186716,-0.5315605,0.41962034,-1.6041454,-1.9219464,1.5059339,0.5195893 +569,0.07552302,-1.8008672,0.12779686,-0.93752843,0.8107784,1.117079,-0.4851503,-0.15960841 +570,0.74203146,-0.038168468,-1.0403578,1.7363278,0.67818296,1.0534387,-0.10793483,-0.7174394 +571,0.48368216,-1.0830364,2.3890116,0.08170504,0.7355387,-0.3764916,-1.1007217,-0.39657843 +572,-0.4471938,-0.85766,-0.25710642,-0.6299831,1.0527862,-0.8909937,1.4095144,0.2538222 +573,-2.0860188,-0.6406326,0.7754335,-0.26140413,-0.235497,1.0289302,-1.2843447,-1.9093167 +574,-0.56467426,0.13609444,-0.12804,-0.321159,2.0502372,2.1904297,0.832927,0.2834483 +575,2.4360437,-0.9486229,-0.827484,1.652861,-0.7200785,0.97840255,0.52621365,0.83056885 +576,1.0976309,0.36568314,0.23044902,-0.9530655,-0.53506637,-0.56276417,0.8656565,0.7720966 +577,0.93470097,0.4707216,0.27429244,1.4361756,1.0209658,-0.24830411,-0.81080264,-0.13523099 +578,-0.32316998,-1.1503103,-1.1089919,2.0329387,-0.018888228,-0.13427809,0.99046457,0.097878605 +579,-0.4015711,-1.4265835,-0.4158669,-0.7391756,0.131442,-0.8741244,-0.80206513,0.9628427 +580,-0.5692458,1.8195889,-1.469743,-0.31154948,0.21807125,-0.76064086,-0.9445138,-1.9555672 +581,0.3706274,0.4806923,-0.4185342,1.5527782,0.5610717,-0.23423623,0.016543753,-1.3326591 +582,0.2870363,-0.60764253,-1.0818202,0.963492,-0.7234707,-0.4518201,-0.41986343,0.07344021 +583,-0.18716873,-1.2086543,2.1279237,-0.7679754,-0.7449701,-0.4836243,0.18257777,-0.117634974 +584,-0.30743083,0.12163272,-0.30088034,-0.9523706,-0.30732977,0.78352475,0.52373505,-0.5942031 +585,1.3489394,0.19331172,-2.851149,-0.8404708,1.7896981,-0.16744573,1.4219635,-0.8252125 +586,-2.7076726,-0.8909902,2.2405705,-0.49972516,-0.13977769,1.0280513,2.1425066,0.29886913 +587,-2.570556,-0.94619745,0.635104,-0.40758544,0.6734807,0.28133357,-0.8395397,2.2463496 +588,0.41130066,-0.48211744,-0.8892015,1.7277147,-0.7636266,1.2780089,0.257155,0.80729854 +589,1.3096839,-0.759827,0.749206,-0.52239746,-0.72004604,-0.2534336,-0.3320232,0.70929635 +590,-2.8897746,-0.90821755,-0.14401762,0.14364383,0.57091445,-0.39518222,0.4414583,-0.3729051 +591,0.7863337,0.09231754,0.6066507,0.9005429,2.055267,0.11602474,0.101595536,-1.3511043 +592,0.8370255,0.24608159,-0.15306565,-1.0206474,-0.6269039,1.4686526,0.9156827,-0.62124795 +593,0.65525347,1.6976069,-1.3282655,0.4012811,0.5104882,-0.31825706,-0.5447794,1.8283229 +594,-0.3492338,-1.4636551,-0.21764247,-1.4859011,-0.47507632,-1.1632159,0.22534697,0.4843731 +595,-1.1988564,1.7209909,-0.5170712,-0.5601281,-1.6249961,1.6464742,-0.10587315,0.42631266 +596,0.37036547,-2.0908957,2.0456827,-0.2792051,-0.08852802,-1.3134712,0.9161494,0.96756035 +597,0.09223166,-0.27167025,0.40324378,-1.2089171,-0.5226141,-0.033842858,0.9021001,-0.7260363 +598,-0.2372342,2.2102094,2.355393,-0.0006875098,-0.7726454,0.9276053,-0.45006907,-1.5248092 +599,-0.37205422,-0.29920697,-1.3094963,-0.6149671,0.0099843,1.2076306,-0.29835907,1.1497638 +600,-0.4448723,1.4358066,1.180121,2.6343176,-1.5122195,-0.21054997,-1.6157496,2.6196103 +601,0.36783153,-0.18641585,-0.28838986,-0.10358694,2.0729156,-1.7536376,0.49229926,-0.3732533 +602,1.0353227,2.0356588,0.20840779,-1.1401815,0.43696824,0.010312743,0.61163145,-1.5441828 +603,0.46393144,0.65922624,-1.35225,0.19475345,0.14812711,0.81525755,0.5359078,0.5492027 +604,1.0288453,-1.5122204,0.30040458,0.46863016,1.6001258,-0.49997175,-0.56056005,1.2422537 +605,-0.6064122,0.24568838,-1.4554038,-0.7242749,1.3859833,1.1310196,1.2890588,0.14911924 +606,-0.14762531,0.9639762,-0.05058348,0.37446252,1.5375875,1.6633015,1.3950894,0.40795925 +607,-0.005936086,0.7800166,-1.3914151,1.1012043,1.2443172,0.56852525,0.34010133,-0.8733983 +608,0.3974408,0.84496313,1.3259217,-1.4996107,-0.4817848,1.3226105,-0.51733756,-0.6425594 +609,0.7559043,-0.8324664,0.9925428,-1.4020426,0.7733607,1.104227,2.8534234,-1.8783054 +610,1.9422225,-0.34855226,-1.8069677,-0.79608816,0.9677519,0.303493,0.09344607,0.043504395 +611,0.054025494,0.30874443,1.6453433,0.3253629,-1.4228268,-0.6928431,0.8278388,0.72178596 +612,-0.7784307,-0.20043837,-1.6261706,-0.40722102,0.03047535,-0.7610191,0.9544621,1.8336647 +613,-1.6497836,-0.35861778,2.328512,1.75418,0.3560812,0.63254285,-1.8100024,0.2961635 +614,0.9060093,2.015021,-0.23743838,-0.1698517,-0.19313632,1.0061277,-0.083928876,-0.99792683 +615,-0.91706073,-1.6972561,0.15110715,-1.4437325,-0.21430634,-1.1140405,0.30845672,-0.56149 +616,-0.045566104,-0.90936947,-1.3638713,1.1245438,0.91823983,-0.9197874,0.13936466,0.2603005 +617,-1.3413193,-0.35579196,1.9780209,0.5953138,0.46605083,0.08176358,-0.27034822,0.48503596 +618,1.6903641,-0.97749597,0.7988875,-0.46334684,-0.9982536,-0.93622833,-0.32336044,-0.011031389 +619,0.38125166,-0.8788732,-0.32379526,0.3570459,0.5074871,0.076560825,1.2014126,0.5324737 +620,0.6508626,-0.035842195,1.9223617,0.7170507,-0.163759,-1.313481,-1.2613492,-0.3240827 +621,-0.16180173,0.88195133,1.2289401,-0.8357765,0.5730677,-0.23599309,-0.31191054,0.42629036 +622,0.41559148,0.25806352,1.4967893,-0.5059156,0.018026847,0.84535176,0.5678282,-0.7079987 +623,-0.42245138,-0.22626522,-0.9796249,-1.0570241,-1.731676,-0.3092837,-0.086880475,1.1781306 +624,-0.68901855,1.5101964,-0.17755039,-0.82221675,0.21817228,0.17306556,-0.5456964,0.41352203 +625,-1.7589153,-0.22876276,-0.5126482,-0.010790326,0.31828517,-2.016503,0.6004947,2.4477885 +626,0.7095592,-0.10687502,-0.31803447,-2.050914,-1.1559331,-3.31203,-0.102810405,1.846867 +627,0.59628814,-0.66461307,0.1163135,1.7581457,1.6420082,-0.5968574,0.06306849,0.028125286 +628,-0.09923792,-0.36581683,1.4572104,2.1988614,-0.12471196,1.1282907,-2.3784204,-0.8574481 +629,1.3406856,2.4288504,-1.3196237,0.9422818,1.5108056,-0.6344509,0.23087296,0.13918635 +630,1.6178403,0.49026167,-1.7994956,0.6077268,0.41785502,-0.17653221,0.21495228,-2.1700182 +631,0.16622314,-1.1214838,-1.0279368,-2.1062417,1.0557448,0.3456182,1.41279,-0.08786378 +632,0.77131397,-1.590171,2.1317093,1.1871921,1.4676784,1.2179245,1.0736153,-0.061848655 +633,-1.1920435,1.3671676,-1.2836968,0.28048718,0.9669899,0.26708144,-1.0340015,0.2983917 +634,-0.9032998,-0.372981,0.7337026,1.1968315,-0.9526364,0.4089778,0.37838668,-0.76870644 +635,0.26151273,0.76847863,-1.2293924,0.10709577,0.17542219,-0.2621479,-1.2277744,0.3438142 +636,-1.03798,0.35484034,1.065241,0.0010201707,-1.062342,-1.6124806,-0.9366684,-3.5565233 +637,1.2520934,1.0533451,-2.067282,-1.1579007,0.8457656,0.8370481,-1.1359133,-1.1272163 +638,-0.19469747,0.56451535,0.4276592,0.7181846,1.1600537,0.43983948,0.30464283,-0.56133014 +639,-1.1995211,1.7478418,1.1231848,-0.5072919,0.46931309,-0.42392087,-0.4341552,-0.4705565 +640,0.46072954,0.4898973,-0.6433467,-0.42724743,2.0391536,1.5602696,-0.2063384,0.44099808 +641,1.4037493,-0.29929426,-0.82753783,1.0100843,-0.007649645,-0.95584595,-1.0884615,1.2424655 +642,0.1857001,-0.44331878,1.1696327,-1.7662232,0.42728192,1.2015661,1.187797,0.8328477 +643,0.265208,0.37993118,1.459338,-1.6344357,1.3544302,-0.8955821,1.9311187,1.4129255 +644,-0.7877084,1.1923791,0.08110691,0.51836455,-0.20112942,-0.67244,-1.063901,2.6164575 +645,-0.38438782,1.7837954,0.86667514,-0.05641177,0.40887874,-0.38939503,-0.95679885,-0.28858107 +646,2.1621892,0.3571674,-0.5948819,0.1514085,0.85879683,0.2233208,2.16649,1.6341809 +647,0.5134679,0.21752867,0.53513455,-0.8022231,-1.3694679,0.64555144,0.75826097,-1.9821882 +648,1.1106105,-0.6602872,-2.125237,0.103677325,0.027393997,-0.45740595,-0.580645,-0.23177469 +649,0.7544881,0.40250567,-0.68121886,-0.13365695,-0.05784023,1.6166384,0.109583475,-0.08731329 +650,0.78768903,-0.36605856,-0.52388924,-0.6177168,0.6377057,-2.019719,-0.5268176,0.686268 +651,1.8804287,1.570774,-1.001742,-0.63590336,1.3159859,0.48711956,-0.846049,0.42022207 +652,-0.74454826,-0.3297332,0.1313044,-0.04662596,0.81078184,0.6673686,0.92260206,-0.6416439 +653,1.0411963,-0.2797306,-1.6868988,-0.11332535,1.2217311,-0.19371548,0.6585675,0.50227517 +654,1.3409944,1.6085732,0.10023315,0.19052067,1.4337589,-0.2454885,-0.6786859,0.700547 +655,0.4949233,-0.42470264,1.2118219,0.124713324,0.5402315,-2.6598637,-0.12852435,1.2032182 +656,0.7971906,-0.75939476,1.505764,-0.63904554,0.5156754,-0.19219245,0.026103064,2.142869 +657,-0.9356487,-0.12856236,-2.83402,1.2625744,-0.32307813,0.7405476,-0.88622963,-0.04181826 +658,0.048637755,0.53393143,-0.39413637,-0.4867502,-1.0910109,-0.074341714,1.20154,2.1534605 +659,-0.6396095,0.5499409,-0.45240363,0.8816289,0.6258755,-0.4157754,1.3185214,-0.23172276 +660,-0.22129865,-1.7955077,1.8526962,-2.2881825,-0.52124774,0.41190904,1.0128219,-2.597366 +661,-0.79782695,0.30045116,-0.81061745,0.8902184,0.25146693,-1.4487971,-1.7507924,-0.8882183 +662,0.510706,0.61303705,-0.6583613,-0.09220445,1.9500724,-1.9058995,0.62325805,-2.0559423 +663,0.47279093,-1.1270131,0.29762745,-1.0663288,0.37720072,0.84343696,0.81033605,-0.93214315 +664,-0.6391771,-0.619349,-0.6054704,0.51654994,1.2721343,0.18906714,0.7551573,0.9113915 +665,0.34591442,1.0229304,0.74595183,-1.771125,0.5624938,-0.16888967,0.5410203,0.6337484 +666,0.39661032,-0.38758,0.6307008,-0.61565083,1.6680555,-0.2611187,-0.00039752573,1.3772275 +667,-0.21728012,-0.87370545,-0.8815361,0.46151063,-0.7682474,-0.93855375,-1.5270104,-1.9692006 +668,-0.29631916,-0.436595,-0.5557736,0.58777416,-0.65604496,-0.45013985,0.3298459,0.5109168 +669,-0.44779092,-1.5096589,0.4769991,-0.18799725,-0.53368044,-0.8463198,-0.21009931,1.5923779 +670,-0.031147823,0.68405783,-0.33943874,0.73924714,1.4099739,1.7182959,2.101441,-0.7980295 +671,0.077350184,0.3409374,-0.38815305,-0.30797464,-0.536411,1.3079387,0.39744347,-1.0666906 +672,-0.633319,0.93597335,1.5306695,1.1415707,-0.64634746,1.3837414,1.3690304,1.0653957 +673,-1.3342683,0.50654,0.9639984,-0.7881837,-0.24135695,-1.4944873,-0.33672115,-0.8449736 +674,0.70551986,-0.5703987,0.67367655,0.021752588,1.3439407,-0.41582197,-0.5701802,-0.7535006 +675,-0.12801039,0.039627388,0.88738054,-1.4037362,-0.48179764,0.3013438,-0.70833004,-0.16307473 +676,0.62802213,-0.5449395,-1.1610581,1.1378348,0.2902724,-0.7275101,0.14052023,0.35352194 +677,-0.3824967,1.9724933,-0.43132538,-0.33132735,0.5418395,-1.9959215,-0.6218951,0.29806542 +678,-0.025806203,0.39464444,-0.38263074,-0.95594704,1.7350637,1.5962322,-0.4289569,0.43842843 +679,1.2156818,0.79591113,0.47324383,1.4918125,-1.7448229,-0.5602557,-0.99018466,0.16595802 +680,0.08592986,-0.5273476,-2.0230222,0.5464664,-1.6464418,-0.07212817,-0.97473216,1.2223412 +681,-0.51727885,-0.774387,-1.1564322,-0.5155369,2.2012308,0.19596392,-1.1962354,-0.459136 +682,1.1962291,-0.41471875,2.2521343,-0.091868475,0.01753398,0.2656844,1.2469763,-0.085199036 +683,1.3128815,0.16459084,0.5754253,-0.7112591,-0.18636471,-0.30144408,0.8840817,0.93727803 +684,-0.7848532,-0.47981244,-0.9807576,0.39907756,-1.4754535,-0.7018128,-0.47732183,1.3993008 +685,0.69132245,0.92491734,0.08612351,-0.1343774,-0.7570751,-0.58819664,0.19163883,1.514232 +686,-0.5780326,-1.1274725,0.69874936,0.9796529,-1.1400511,-1.0290228,0.14718974,0.10713123 +687,-0.7487912,-0.4430754,0.0049690492,0.63758457,-1.3154256,1.4679846,-0.60582125,-1.3172684 +688,0.23211113,0.5402055,-0.62163246,-0.7957487,0.0004525222,0.7931189,-0.1286146,1.1046015 +689,0.047483973,-0.3923444,-1.0977943,-0.091375545,-1.4529384,-1.945908,-1.1315824,1.2450941 +690,-0.10857174,0.20198852,0.637638,-0.43035343,-1.2631054,1.3069205,1.3459319,-0.29980263 +691,0.87006223,-0.3316074,-1.1483243,-0.3788115,0.62628186,-0.45796302,0.73315936,-1.1254561 +692,-0.12327043,1.3651608,-1.4316162,-0.4963629,-0.10188653,-1.4750466,0.004476563,1.5059199 +693,-0.5835185,-1.5560354,-1.001156,1.1071395,-0.21958484,-1.1769115,-0.79505724,1.4863985 +694,0.9274679,0.623695,-0.91529185,0.5343714,1.4100162,0.31979868,0.7968536,0.33976358 +695,-0.9830573,-0.46927434,-0.7772863,0.19561651,-0.56544167,1.1459627,0.6654564,-1.621176 +696,0.8874159,-0.1205974,-0.33990815,-0.37277174,-0.090622194,-0.27196652,1.1836029,-0.28812298 +697,-0.4644598,0.008711721,1.2177646,-0.57417786,1.8012938,0.5874946,0.88484085,1.6169204 +698,1.187853,0.53075194,0.54156786,1.0235624,0.74449885,-0.20148978,-3.0234962,0.61532426 +699,2.3725107,1.2070287,0.69005036,0.6463372,0.028720248,0.23182917,1.126286,0.32487977 +700,-0.65051156,0.20707008,0.31774512,0.66251314,0.8546955,-0.04395996,1.6980466,-0.54968786 +701,0.9665767,-1.22786,1.0517061,0.84402543,-0.62716985,0.3289786,0.27397832,0.2380384 +702,0.21769373,-1.5356636,0.74152505,1.0104918,0.26449707,0.4596268,0.64789414,1.0510155 +703,-0.8664799,1.5283571,-2.2624292,-1.5377815,-0.22231208,1.8039452,-0.498753,-0.247572 +704,1.9439172,-0.20822339,0.71113145,0.9781638,1.0179012,0.7755337,0.510677,-1.6624352 +705,0.36957693,0.42120302,-1.1005977,-0.2485618,-0.21713835,1.0609943,0.7264013,0.7466915 +706,1.2162505,0.557196,0.0843608,0.38387105,1.709297,-1.3407191,-0.04002174,-1.9797015 +707,-1.8184729,-1.9815469,-0.34005842,0.0023899563,2.2596364,-0.75759137,-1.0769778,1.1673756 +708,-0.8355815,-1.3755001,0.9184916,0.55791205,-1.4698875,-0.68654066,1.3910079,0.6338957 +709,1.3299439,0.29739773,0.11650925,-1.7616631,1.8463748,0.6454161,2.3211741,0.26180464 +710,0.48749328,-0.34105605,0.51037055,-0.90844715,-0.66584194,-1.1428717,-0.5568653,-0.13701034 +711,0.6357274,-0.59882265,0.05205401,-1.1155922,-0.17800832,-2.0431159,1.1243445,-0.9857851 +712,0.1384231,-0.24544807,-0.4461692,0.6619401,1.3191086,-1.1590134,0.09877229,0.5988222 +713,1.9144573,0.0102136545,0.33514127,-0.69164103,0.5926096,0.7682673,0.9831166,-0.5063329 +714,1.5317184,-0.5210193,-0.1873077,-0.6837182,-0.50268704,0.25365937,0.5243615,0.55204964 +715,-0.106289774,0.2895353,0.08409938,0.9905646,0.9304563,-0.97314554,0.6282041,-0.76922774 +716,2.915445,-1.9116094,1.0306349,-0.95899355,-0.22893544,0.40217483,-0.10824031,0.6694065 +717,-1.2393254,0.33036378,-0.11202264,-0.7097408,0.2149333,0.186925,-1.1601279,1.0723369 +718,0.60479903,-0.48899135,-0.6589912,0.9292485,0.34517246,0.045597874,-0.29345948,-0.96527153 +719,2.2690308,1.3317475,0.65825737,0.37614116,0.51999307,-0.9885297,-0.0019591963,0.5287718 +720,0.7523804,-0.31946734,-1.7987162,0.060580947,-0.33354974,-0.2995442,-0.17644134,-1.4914933 +721,-0.57861084,-0.4506139,0.59826195,-1.3136171,0.4543814,-0.089784026,-0.88489616,1.2352527 +722,-0.9670844,1.054121,0.5566204,-1.0889983,0.075679906,-1.2023972,1.9969178,0.7920637 +723,-0.0016657412,-0.36379018,0.099109784,-0.17230508,-0.87917036,-0.5292948,-0.4064129,1.5082806 +724,0.21677868,1.3431997,-0.62804127,-0.34646225,1.3054744,0.4558586,-0.91785455,0.9421843 +725,0.77923083,-0.7682827,0.056397833,-0.09622669,-2.7812936,2.8641422,0.58206755,0.18535244 +726,-1.4859204,0.09708667,0.20841105,-0.17589834,0.9082208,0.19222017,-0.90873206,-0.09766331 +727,1.3071222,-0.7982163,0.7235429,-0.95897967,1.0526817,0.3827666,0.43323097,-0.13075614 +728,0.10632369,0.8656769,-0.6585519,-0.3069334,-1.5867395,-0.9980582,0.37537992,-0.024579134 +729,-0.08147235,1.4655256,0.46252403,1.5612657,-0.20034157,1.3215897,-1.254286,-1.2217014 +730,1.5450345,-0.5305169,-0.58174735,-1.4783207,0.5082153,0.7063793,0.54647094,-0.50068 +731,-0.059671186,2.1567693,-1.571443,0.4935472,-0.1705024,-0.6766012,0.959483,0.55026144 +732,0.8062932,0.51513296,0.82128394,-1.7956647,0.6749361,0.44162503,-0.39671388,-0.27152678 +733,-1.0394518,0.24897078,-1.1741843,1.6190289,-0.45194307,-1.555483,-1.1692578,-1.6230123 +734,1.1548116,-1.4124682,1.1430273,-0.42330784,0.11610163,0.050526455,-0.7829246,-1.0398725 +735,0.093966395,0.6723622,1.307055,1.2532315,0.64838606,-1.3158047,0.7431123,-0.50713813 +736,-0.8249915,-0.28205538,-0.69775873,-1.7707748,0.8055474,-1.2774229,2.4150128,-1.7096812 +737,-0.9711806,0.9670254,-0.48685586,0.62612766,1.2061384,-0.83641607,-1.2374798,-0.64964795 +738,-1.2376162,-0.9433201,-1.5699332,-0.43687037,-0.51989955,1.2373924,1.0964652,0.3522084 +739,-0.09766354,-0.09348547,0.31248772,-1.4264977,-0.026901435,1.0614239,2.0922933,-1.2119956 +740,0.24946338,-0.16876489,1.147122,0.5841878,0.046376657,-0.25894862,-1.5844203,-0.0030094301 +741,-0.43597716,1.2908115,-1.044187,0.41172883,-1.9192309,0.92101085,0.7344902,-0.8583071 +742,-1.7257072,1.7088798,1.0226372,1.010389,1.3327518,1.5663229,0.27953476,-1.475882 +743,0.39931086,-0.10158572,0.53913873,0.4889615,0.49762708,0.04684921,-0.53817946,1.7208437 +744,0.0128149,0.76068234,0.6755772,-0.16942167,0.088949,0.22000585,-1.0030109,-0.6320986 +745,1.156796,-0.6012425,-0.10560306,1.8942153,0.4930659,-0.02198151,-1.3787282,-0.29458654 +746,1.0794418,-0.45806184,-1.4547417,-1.7205936,2.3260577,-1.7810073,-0.83249205,-0.6789042 +747,-0.9763769,-1.5663211,1.2479079,0.59014153,-1.4565954,1.1510053,1.8190708,1.3210896 +748,-0.38152772,-1.620637,1.6643798,0.36767966,-0.17229256,0.010102943,-0.5560907,1.2511023 +749,-0.34460407,0.05959881,-0.5025908,-0.9910828,0.8123514,-1.062673,1.2642107,0.1981074 +750,-0.5102214,0.6792001,0.30588585,-1.0272899,0.15429498,1.9607103,-0.21050054,-0.13568658 +751,-0.76103616,1.212358,0.25121096,-0.7510985,-0.5078322,-0.08319461,-1.2052113,-1.263191 +752,-0.56592786,0.8842555,-0.8149189,-0.964536,2.2554054,0.6716697,-0.2883289,-0.6548914 +753,-0.53527313,2.4389508,0.11435568,0.5934499,0.522825,-0.8413484,0.044489913,-1.128597 +754,-0.63698554,1.5454131,-1.2529838,0.9312667,0.3303898,1.0471308,2.0402856,-0.0026684515 +755,1.0923345,0.7727784,0.14171867,-0.7635484,1.1499283,1.6800101,0.9318742,-0.27840316 +756,0.4322377,0.4506038,1.0048044,-0.5663222,1.2818563,0.291364,1.0661958,0.2069246 +757,1.3157536,0.3227092,-0.24307173,-0.18584844,-0.5066914,-2.6532178,-1.6720657,-1.7332699 +758,1.0546749,0.3504001,-1.2594217,-1.139683,-0.44606996,-0.8617772,-0.7677808,0.48959383 +759,-1.5953326,0.26723564,-1.7094,0.8944547,1.8222922,0.23730817,-0.6488251,0.27919817 +760,-0.14630288,0.10819269,-0.79271954,-0.55578136,-0.033914715,-1.1483992,-0.7676219,-0.5512009 +761,-1.4166582,0.36137152,0.7205652,-0.26088148,0.44547603,-1.2592868,0.5647017,-0.42261106 +762,-1.857435,-0.35345307,-0.19035935,-1.017036,1.1156584,0.43289074,1.1632402,0.1648911 +763,0.46972355,1.0565277,-0.45575854,1.7852036,0.8970636,-0.105190605,0.6531478,-1.0133379 +764,0.6888334,1.395533,-0.23431185,-0.6184978,0.73910004,-1.122192,0.21417248,-0.015939675 +765,0.98080003,-0.8369112,-0.35204533,-0.047046814,-0.90315646,-1.882135,0.19352026,0.0022532735 +766,0.79472286,1.5263958,1.081403,-0.36605552,1.475993,-0.14201662,0.93859094,-0.20647985 +767,-0.4469914,1.0937214,-0.22263846,-0.11484736,-0.6347792,-0.26916927,1.2283503,1.0391439 +768,-0.43194297,-0.3865835,0.16668448,-0.69242376,-0.13555798,-1.1549397,-0.3128416,1.1540745 +769,-0.32298085,-0.49673644,1.0336573,-0.82870924,0.54424775,-0.5682124,-0.6033063,-1.2248411 +770,-0.35721436,-0.547178,0.21449722,-0.99933517,-0.38142517,0.3381803,0.39048675,-0.7520076 +771,0.9692836,0.18065092,-0.35015404,0.67698276,-1.2058761,0.065645695,0.7577892,1.539704 +772,-0.3613822,0.98589915,0.66367245,-1.2321352,1.0456452,-1.2964678,-0.07440401,0.37750357 +773,-0.044831604,-0.7779853,0.6356158,-1.8953083,0.946306,1.0275472,-0.063174546,-1.9922045 +774,1.224711,-0.70572984,-0.41507772,-0.29505217,0.3652166,1.362515,0.66968167,-0.8658668 +775,0.38212547,-0.40737572,-1.1388149,0.1876046,0.3028232,-0.0994928,0.66139144,0.086719394 +776,0.9704281,-0.3475453,-0.5503927,-0.5868187,0.9528403,-0.8582781,0.99021703,-0.09305672 +777,1.5032548,0.26869243,-1.8712401,1.2579153,-0.15894997,0.5884196,-0.3011325,1.2655025 +778,0.44629085,1.9269183,0.8331918,-2.2182992,1.1636707,-1.1297796,0.57849133,1.065284 +779,1.1654235,0.37305138,-1.3659421,-1.056833,0.4917007,-0.9900026,0.46441,1.2620201 +780,-0.85364425,-0.5654031,1.3943263,2.0776482,0.9023672,-1.2386022,-0.8011276,-0.5930373 +781,-0.060064323,0.1097431,-0.6021311,-0.9337198,-0.11544359,-2.4393263,0.58311236,-1.6523889 +782,0.9237215,1.0580596,0.6891442,0.7786659,-0.50438595,1.9601482,1.4094245,-1.4176128 +783,-0.7482742,0.900839,-1.4107925,0.48987162,-0.48400298,-0.6257535,-0.64287734,0.9592348 +784,-1.0210708,-0.88239354,1.8150972,-0.79129976,0.3838925,0.9798558,1.9695117,0.5106439 +785,-0.87636167,-1.3574831,1.3413925,0.85521644,0.2916723,2.1556678,-0.025744602,-2.5520573 +786,-1.608284,1.037731,-0.74875593,0.4473821,0.33467075,-0.97476417,0.18885714,-1.7563332 +787,-0.62046444,1.8126667,-0.1632804,1.0642334,-0.65544444,-2.234705,-1.9756303,1.7260497 +788,-1.3988866,0.2976656,0.32770914,0.93015116,-1.0729954,-0.1429429,-1.430393,-0.598543 +789,0.25150144,0.069929406,0.20611773,0.4259369,-0.2403017,-1.078545,0.096483946,-0.0937441 +790,0.2716772,0.03925728,-0.19278774,0.717815,1.0630074,0.04983465,1.9635408,-1.5020213 +791,0.0062617064,-0.5236014,-0.97905695,-1.8935449,0.49767685,-0.8639857,1.3954148,-0.6436663 +792,0.2585608,-0.08730206,0.5662007,2.8585498,-0.50186676,-1.3127669,-0.6537462,-0.55792826 +793,-0.5191966,1.1129351,-0.20078936,-1.2939796,1.4902767,-0.2738695,2.12198,1.600779 +794,0.9628215,0.8625394,1.4955162,1.781273,-0.06801228,2.0308595,-0.62467617,-0.5209827 +795,0.9641118,1.093404,0.74446815,0.35473692,1.3319458,1.0937556,0.19485903,0.31716555 +796,0.8818277,-0.0666641,-1.2922082,-0.33250192,0.62975466,-1.8763509,0.13770913,-1.0947393 +797,-0.82723606,-0.0035259575,0.6575399,0.4150376,0.6174545,0.5455935,1.2351801,-0.06466488 +798,-1.4800144,-1.0547717,-0.45216978,0.133262,-0.20813057,-1.4792676,-1.1257449,1.3109376 +799,0.037514836,-1.5475426,0.90203893,0.1430547,0.16608134,-0.5732517,-0.46274155,0.0844152 +800,-0.42843378,0.21317586,0.8038961,-2.8232162,-0.9873388,-1.4526982,-1.0235646,0.30874225 +801,1.7448708,-0.015985249,0.3440007,1.1665077,-1.1935319,-0.7159789,-1.2703358,0.8668279 +802,0.9778325,1.3272747,1.5706731,0.8563254,-0.8870219,-0.225054,0.15557726,-1.033824 +803,-0.388376,-0.17557518,0.05590244,1.4843566,-0.57911605,-1.2587647,0.7518277,-0.8063057 +804,1.4083998,-0.5661089,0.32649815,3.036428,0.7549908,-0.105081975,0.56795514,-1.6153613 +805,-0.75494754,0.9626352,-0.9898756,-0.4033979,-1.1974295,-1.1100227,-0.39822873,-0.11408799 +806,0.31016743,-1.3457643,1.6988747,-0.075243175,1.1556091,0.22926019,1.6831545,0.49667343 +807,2.2668273,-0.20035042,-0.5326375,-0.069762245,-1.0672107,-0.07021228,-0.30433705,-1.870865 +808,-0.099623755,-0.11789538,0.43095618,0.41566712,0.8781968,1.0087937,0.296563,0.33529663 +809,-0.24167848,-0.09199399,0.55959064,0.6639802,0.3532575,0.44673538,0.3851538,0.08547326 +810,2.7746027,-0.26818424,-0.25310093,-2.195026,1.2151734,1.4738132,0.6124887,-0.7172198 +811,0.1779083,1.1250646,0.35069472,0.35603166,0.08228909,0.4995361,-1.423045,0.31599537 +812,0.3631375,-1.6175414,-0.8637427,-0.36845854,1.0279677,-1.5993953,1.1101359,0.6175422 +813,0.80197036,-2.923274,-0.08759284,1.5403621,1.1265261,0.49782813,0.09753987,0.55681515 +814,1.7099253,-0.03063944,0.05415866,0.61398804,0.10364221,1.0121639,0.7412857,-1.4030566 +815,-0.8855816,2.0964801,-0.07301527,2.8838782,1.058133,0.7177452,-0.01215636,0.90707725 +816,0.61531454,1.0227828,-0.04823598,0.7940582,0.06319256,-0.8710922,-1.0879675,0.5847522 +817,0.70589495,0.75958186,-0.8632474,0.23370925,1.6586045,0.11154582,-0.66240686,-0.5996522 +818,-0.8789272,0.70059913,0.06790809,-1.7922467,0.80987483,-0.094019294,0.5789644,-1.3415594 +819,0.64528614,-2.966123,0.76936126,-1.753882,0.75577027,-0.5924462,0.15441203,-0.77655846 +820,-0.5026956,-1.5555991,-0.399514,0.68330926,1.0454707,-1.0076892,0.6422963,0.73643506 +821,-0.8521844,0.8657337,-2.0287158,0.5947568,-0.14970241,-0.099937595,-1.3997028,-0.2008998 +822,0.19807866,-0.021819547,1.0731181,0.5734386,-1.1888775,0.30171964,0.056178324,-0.65711373 +823,1.6282656,-0.7969394,-0.35468352,-1.7879227,-0.10042484,1.7268103,-0.28333023,-0.98433584 +824,0.39634544,0.25197312,0.23474531,0.040700022,1.1912777,0.30764544,-1.4828948,-0.34542635 +825,1.1596268,1.9581281,-0.6940885,1.1727325,-0.9890382,1.2535747,-0.5671857,-0.2813533 +826,1.6068058,-0.82925016,-0.35691196,0.84187573,-0.5615192,0.578377,0.93411994,-0.43897808 +827,-0.37053356,1.2457173,-0.31361383,-1.0393772,0.48175356,1.4735675,-1.6193416,0.5611335 +828,-0.522767,1.0670531,1.0595739,0.6884378,-0.58456504,0.1453022,-0.14309819,-0.62209606 +829,0.9144587,0.81012565,-0.8217672,-0.8221885,1.4313222,0.3238672,0.37493956,-0.07413535 +830,1.9131818,-1.5305504,1.0890957,1.2096304,0.44986123,-2.041293,0.465392,0.27110052 +831,-0.5282707,1.1455754,-2.6140647,0.56549144,-0.11284383,0.6436998,-0.94071424,-0.6801754 +832,0.08235629,0.02880437,-1.5403361,-0.10395297,-1.5209237,0.17770433,1.6404738,-0.3160648 +833,-1.7226244,-0.10558909,-1.4953717,0.6438323,1.0963223,-1.6275293,1.2247264,1.2819233 +834,1.6137394,-0.19017455,-1.4320871,-0.040894687,-0.6755791,0.7400323,-0.6442243,-0.3436026 +835,0.9498558,-0.0015000552,1.8967427,-0.8946668,0.92313313,0.7901131,-0.83886117,-1.1737806 +836,0.14299537,0.50225866,-1.3149426,-2.5032842,0.56397367,-0.3149165,1.1704352,0.1650819 +837,-2.1145694,-1.0343922,-1.0450134,1.8724842,1.8113561,-1.4792068,-0.6510459,1.0613068 +838,-0.710531,-0.76968586,1.4843299,-0.6004958,-0.17786007,0.24362828,1.2173712,-0.07909526 +839,-0.092892304,-0.7263831,2.0235884,-1.3959429,0.08490172,-0.8653292,-1.7594655,1.4662281 +840,-2.5488014,-1.1865228,0.31009158,0.029412359,0.7486259,-1.0502476,0.6604878,-0.7209433 +841,2.20379,-1.6312512,1.2082732,-1.9572995,-1.6112092,-0.9097176,0.4855402,-2.294942 +842,1.0515628,1.9275525,-0.27177218,-0.5147364,-0.71410835,-1.848048,0.5392909,1.1575818 +843,1.0114605,-0.21422847,-1.0468836,-0.07206972,1.2836301,0.5799602,-1.0199602,1.1042262 +844,0.34403247,0.9113241,-1.2657083,0.48138502,1.1733838,-0.65083987,0.5633317,2.762843 +845,0.791426,0.80552256,-0.7654135,-0.6501093,0.6313222,1.4980435,-1.7862493,1.2523708 +846,1.1398084,-0.7863365,-0.058437333,0.29799855,-1.531026,0.852026,-0.3781048,-0.11989248 +847,0.011460438,1.1556007,-0.5100226,-0.87680924,-0.45700666,-1.3791544,-0.0966247,0.62895197 +848,1.2516346,-0.8142089,-1.1343049,-0.70128006,-0.29026914,1.3353645,-0.0025087148,-0.6453515 +849,3.2901292,-1.3954148,-0.096479036,-1.1708333,-2.0591834,-0.18361369,1.1555527,-0.709847 +850,-1.133759,1.087816,0.2728853,-0.15800396,0.05525297,0.27502182,-1.0035026,-1.0813605 +851,1.0915908,0.68893963,0.9138312,0.28315228,-0.14979146,-0.52020985,1.5617263,-1.1775262 +852,-0.04336311,-1.1079029,-1.7495134,-1.7146745,-1.4245573,0.18246807,-1.1070098,0.6487612 +853,-0.91154724,0.2786048,-0.606524,0.43149492,1.170904,0.62526155,-1.3710108,0.012431666 +854,-0.20926274,0.41119117,-0.66574985,-2.0489516,-0.48921248,0.3173505,0.61628866,-0.020815141 +855,-1.1740686,0.17391342,-0.49875522,0.7795149,0.8483088,-0.848364,0.21400312,-1.2327915 +856,0.3217348,0.38094783,-1.4312006,-0.2814998,-1.1580493,-1.075234,-1.3106171,0.72419643 +857,2.4761782,0.96718717,-1.8330163,-1.3275756,1.539912,-0.7302163,1.4644423,-0.24373119 +858,-0.53581816,-1.565658,0.710238,-1.9070418,-0.08954868,-0.67143416,0.9013779,-0.3694543 +859,-0.7993902,1.2710346,1.433509,0.36108705,1.5936319,-0.55179375,0.9497419,-0.5382981 +860,-2.1454358,1.7043992,0.68895364,0.22012456,-1.7953421,0.53106195,0.167317,1.2575059 +861,-1.5146247,-0.05456254,-1.8422325,0.15056124,1.5552174,1.038941,-0.44149628,0.34750113 +862,-0.6287448,-0.8368544,2.6617522,0.35143375,0.013330184,-0.32066813,-1.0677706,0.23462093 +863,-1.3627665,-0.063415244,-1.3758391,-0.17996512,1.05201,-0.004112046,-1.0580378,1.8192182 +864,-0.44809732,-1.7585069,0.13614768,-0.9336532,1.2148513,0.68289167,0.6270377,1.700197 +865,-1.3032564,-1.3455935,-1.2332084,1.4359316,-0.63476694,0.049170196,-1.0372828,-0.38548464 +866,1.0690655,-1.7141651,0.13132158,-0.5284669,-1.0606104,0.64075464,0.80787855,1.6408114 +867,1.6502271,-1.344598,0.63610727,1.8163236,-0.55775017,-0.016185619,1.4358603,-1.5051059 +868,0.34193528,-0.9569132,0.7606396,-0.848224,0.9597529,1.0238484,-0.5338121,0.23237658 +869,-0.34263295,0.49000654,0.09808571,0.24752286,-1.667244,0.20957616,1.7674088,0.98962545 +870,0.86673856,1.0259081,-0.906922,0.8322817,-0.50441366,0.18355766,-2.4432783,-0.68572176 +871,-0.85670173,-0.9121564,-0.33170307,-0.1969957,0.3449589,-1.0605748,-0.52870804,-0.6971396 +872,0.1610248,-1.1982025,0.8506285,-1.416103,0.10354607,1.1579466,0.7531211,-0.2467243 +873,0.61987543,-1.004885,-1.5666192,-0.5570979,0.7798654,0.2053563,-1.1732621,-1.0404701 +874,1.8621724,-0.41872886,-0.29589745,0.22479449,0.16782896,0.67807865,0.46110106,-0.2990178 +875,2.47018,-0.47184756,0.24296993,1.1593014,-0.09330465,1.0263833,-1.1165179,-0.2565712 +876,-0.04332933,-0.34352997,0.2329375,-0.88954127,0.73732,0.12930092,-0.122831084,1.1711466 +877,0.063085824,0.45916763,2.418411,1.1442846,-0.80841464,0.8235259,0.89672685,-1.0801499 +878,-0.5428602,1.4865333,0.98755294,-0.35934526,-0.22174482,-0.024270888,-1.3772732,0.6648756 +879,0.08931331,-2.318966,-0.05610143,-2.2271934,1.0428244,0.8077937,1.354122,1.0288867 +880,-0.8664669,-0.9961189,0.32750776,-0.68251604,0.45608574,0.760417,-0.016320094,0.2906742 +881,1.3673241,-1.3336505,-0.7216686,-0.38105574,-2.1330597,-0.4722603,-0.16858815,0.13830887 +882,0.1202728,1.3761389,0.041010365,1.3961505,-0.7813554,-1.4409243,-0.36623245,-0.106560916 +883,1.4336025,-0.28372264,-1.1671268,0.50857764,-1.0939927,0.59588355,1.3119489,0.9725497 +884,0.51557416,0.039378416,1.1452619,0.25769457,0.62872505,0.0574712,0.15917179,-1.2458695 +885,1.0374792,-2.4292288,-0.50577855,0.45906058,-0.37304878,0.92789024,-0.11688979,-1.686767 +886,-1.0457736,-1.0890565,0.61255723,-0.50342613,-0.5711777,-0.19843955,-0.7686079,0.8376447 +887,-0.9959838,-1.6167932,-1.6515427,0.25512648,0.081556134,-0.26014963,-0.37850228,-0.5121414 +888,-0.08102453,-0.5678452,0.9862074,-0.9186858,0.87668073,0.41751787,-1.0566846,-2.4988818 +889,0.8894345,0.37735996,-0.84220225,1.1061549,-1.6653643,0.5167451,0.42775726,-0.9239756 +890,-0.37593794,-0.03841538,0.15897113,-0.000865221,-1.0011778,0.72919846,-0.027129486,-0.5434537 +891,0.4822021,-0.24684961,1.1522686,-0.006505942,0.7813604,-1.3872592,0.24200673,-0.7645927 +892,0.5132578,0.09327975,0.99959946,0.14200884,0.17180394,-1.857541,-0.41521612,-0.32148057 +893,0.37688357,0.27990574,0.069488965,-1.2109362,-0.68883824,-0.49758595,1.0026027,0.39247644 +894,0.44170782,-0.03530564,0.7410507,-0.030668098,0.18637696,0.95659184,-0.8535063,0.6718888 +895,0.18038109,-1.4405631,0.4819032,-0.5614486,0.6567409,-0.56067115,-0.30622664,1.4492589 +896,0.15847565,1.5474286,-0.38337728,0.23118846,1.4273901,0.23012996,1.4691758,1.5784165 +897,0.7595087,0.00022066385,-0.6583616,-0.54510355,-0.15459007,0.9202645,0.5318272,0.21462819 +898,-0.14448804,0.3641533,0.09564932,0.37619862,0.58681345,-0.30714595,1.0638525,-0.27976975 +899,-0.34280562,-0.3864254,-0.18970148,-1.3079969,-1.0903599,1.3299956,1.852687,-1.5444276 +900,-1.1746218,-0.2831072,1.0295599,0.14575015,0.8384591,-1.0436894,-0.7255355,-0.63711584 +901,0.7062978,-0.6125351,0.5278287,-1.3617342,0.67122895,-1.3429137,-0.3977458,-0.8860791 +902,0.7216555,-1.9597574,0.85115373,-1.1802914,0.64574414,-0.87278193,-1.7271149,-0.11470937 +903,-0.77545583,0.4836491,-0.4666615,1.2620281,0.83813936,-1.3738577,0.75050527,-0.018803611 +904,0.5154527,-0.93203807,-0.38034782,-0.59489554,-0.9053132,-0.21024275,0.33226478,0.109627776 +905,-0.82867664,0.10079269,0.12724659,-2.112772,0.98925364,0.8019522,-0.36429262,0.052941054 +906,0.98542315,-1.8784603,0.104892634,-0.15022647,-1.1520826,-1.5018862,-0.6614512,-0.22462551 +907,0.08697938,-0.8106169,-0.33127567,0.9128939,-0.18061846,0.08561975,-0.498866,0.6983399 +908,-0.94345963,0.38137037,1.0408775,-1.5548071,-0.014899807,-0.8031076,-1.2185535,0.13635086 +909,1.9958601,-1.0655262,0.33701694,0.046899274,1.1902009,-0.11489416,1.49598,1.6109432 +910,-0.6428945,-0.4427154,0.29208133,-0.038146645,0.5652498,-0.21988776,-0.43830797,1.2629457 +911,-0.15905175,-0.87162673,-1.1402854,1.1575247,2.3210814,-0.13072339,1.6292946,0.9689175 +912,0.11392273,-0.46556956,0.20665857,-0.45204708,-0.15308982,0.25606978,-1.2756371,0.22704974 +913,0.5267079,0.80313265,-0.34164625,-0.045487348,1.8586359,-0.6819561,0.25952905,1.7862078 +914,2.314652,-0.7499488,-1.2138035,-0.7282581,-0.3054064,-0.37576744,-0.59852153,-0.83686525 +915,-0.07009442,-0.28856796,-0.059577465,-0.6879209,0.7931132,1.2547675,-0.44518074,-0.9625634 +916,0.88351685,-0.6384119,-0.88021487,0.032134824,-0.03315171,0.18148413,-0.3429441,-1.4046959 +917,-0.4517085,1.0959698,-1.3338585,-1.8097088,-0.78366137,0.04826363,0.05496392,0.44517112 +918,0.2505415,1.4416087,1.4205279,0.32705188,-0.7889447,0.4502877,-0.7183392,0.2163755 +919,-0.32181245,1.0085998,0.14204226,-0.5593506,0.018410243,0.27937806,-0.94936085,0.22224599 +920,-0.06345032,0.7965678,0.14602928,0.29251406,0.83033407,2.310834,0.20049906,0.53687197 +921,-1.3717701,-0.5877659,-2.1796255,-0.88211095,-0.22589765,-0.4683006,1.4778116,-0.24182442 +922,0.35731894,-0.6928998,-0.6450313,-0.035367265,-0.24906687,0.7831608,-1.3322589,0.01998923 +923,0.79471195,-0.16119556,2.5736594,-0.12339131,0.5108386,-0.6050182,-1.2736641,-0.0861637 +924,-1.3897895,1.224624,1.7120388,-1.7146039,2.068868,0.26153934,1.2298719,0.3483279 +925,0.007857844,-2.0802126,1.0466541,-2.1785002,-0.70036685,-2.0721786,0.05677907,-1.0048555 +926,-0.16767673,0.55130064,0.19665568,0.53701496,1.4557812,0.23121907,0.52597815,-0.50455755 +927,1.2540681,-0.96127045,1.3116219,-1.1284317,-0.41913426,-0.7381003,0.24634361,-2.2059088 +928,1.6001651,-1.9374846,-0.92318183,-0.45202357,0.24365403,0.7334566,0.5424808,-0.5587088 +929,0.87462103,-0.11394395,1.2227523,-0.61610657,2.2519176,-0.47514945,0.9537322,0.11695187 +930,1.6207335,0.15469709,0.8675537,-0.16663197,1.4243195,0.7223314,0.6673414,-0.64267015 +931,0.22055951,0.13491634,-1.5758677,-0.88972175,-0.88892484,-0.6467987,-0.028100833,0.64501566 +932,0.55873513,0.660361,-0.118029244,-0.62406206,1.0400367,0.5240563,0.94414806,-0.7584965 +933,-1.0724549,-0.5234536,1.9004267,0.23378894,-0.19961222,0.6151634,0.062297434,-0.5406515 +934,1.623963,-0.08913392,0.57527065,1.0225434,-3.3538895,0.13946486,0.13766396,-0.33156982 +935,0.67765266,-1.2465749,-1.7013998,-0.14344998,0.52151227,1.146893,1.3907527,0.7567643 +936,0.41936937,1.0363984,0.42848977,0.63104767,-0.13267547,-0.59742296,0.05990261,0.02580804 +937,0.43706036,-1.1528032,-0.8164162,0.17453386,0.46002278,-0.18871997,-0.8145617,-0.2111659 +938,0.8546215,1.672053,1.5610776,-0.6920634,0.9830229,0.24509484,-0.5792245,1.0561285 +939,-0.41331118,-1.2751169,0.74561,-0.042648584,0.25107026,0.33393073,-0.5674948,1.1436993 +940,0.59809005,-1.460729,-1.3718259,-0.90443474,-0.17689034,-1.1282351,-1.2914448,1.5287409 +941,-1.3169594,0.13806568,0.7143198,0.33338234,0.18249993,-0.7350625,0.45492846,0.10783869 +942,-0.12604827,1.0970113,-1.2911395,-0.851914,-0.96309936,-1.6891968,1.0018661,-0.33465612 +943,-0.3252088,1.2464122,0.9653985,-0.44144642,-0.99087197,-0.57684314,0.58274096,-0.2619606 +944,0.2783196,1.1141357,0.22788745,-1.5294006,-0.747904,-0.18332705,2.129057,-0.023621518 +945,0.12653118,-0.33245027,-0.941447,-1.3678931,-0.6247175,-0.10783821,1.2902265,-1.0214393 +946,-0.26825973,1.8121356,1.1498888,1.358343,-1.9602549,-1.0622787,-0.26807293,-1.4045413 +947,-0.43772835,3.6936548,-1.7050155,-0.75237846,-1.0572306,-0.259477,0.4795121,0.7287965 +948,-0.2061423,0.40552872,0.997336,-0.97447157,-2.0275743,1.043846,-1.0715104,1.555542 +949,1.7815045,0.06083779,-1.396909,-0.6411902,-0.2994135,-1.1073111,-0.23649195,-1.5869186 +950,0.5582856,-0.62474656,-0.12608665,-0.94930184,0.2527567,0.017352043,0.31783348,-0.44713277 +951,0.72685075,-0.3225518,-0.02714903,-0.45005175,1.8321483,-0.18543932,-0.1650285,1.3148309 +952,-0.8935803,0.72589386,0.48050523,0.9837388,-0.9817333,0.637739,0.6873388,-2.4790323 +953,1.0548589,-0.32328776,-0.13637832,-0.51031065,1.8186418,0.5090816,1.4685812,-1.0072151 +954,1.854105,1.0766163,-0.2875375,2.36472,-1.1880155,-2.0483418,0.51937735,-2.0535176 +955,-0.38232288,0.874382,0.75753933,1.5748341,-0.36996505,-0.5784445,-1.1770096,0.1408433 +956,-1.406061,0.5029924,-1.0043302,-1.821016,-1.2378107,-0.0546643,0.04768783,2.3448648 +957,0.11715329,-0.5556575,1.7649906,-0.63963634,0.24463785,-0.50267565,-0.4669377,0.51059526 +958,0.07710979,0.2093994,-0.55376655,-0.1611902,0.21594861,-0.98952097,-0.879936,-0.5313075 +959,0.40445346,-0.13687679,1.3364239,0.060693577,0.065065935,-0.30598634,1.5639238,0.93541723 +960,0.4366957,-1.6948587,-2.3851085,-0.6601493,-0.5565131,1.3797848,-0.3162974,-2.5576682 +961,1.8174313,-1.4705431,-0.36873344,2.2861907,-0.8032666,0.5189414,-1.4835391,0.15992989 +962,-0.16659704,0.4242234,1.4225315,-1.100345,0.20431957,-0.21939446,1.2794921,0.70457685 +963,2.287757,-1.0021969,0.20736974,-0.12263612,-0.92361724,-0.92382765,-0.1831657,-0.5176044 +964,-0.36723214,0.05519814,-0.52376187,0.20984128,-2.6064231,-0.09306,-0.3934311,0.95492256 +965,-1.2238147,0.68660855,-1.4553547,0.6060377,-0.5342583,0.07549991,0.5619939,-0.363399 +966,0.65156925,0.77486545,0.9158415,-0.072420225,0.26458436,0.32321334,1.0561006,-1.5983872 +967,-1.0471671,-1.1269765,1.2227892,0.3321512,-0.41978908,-1.041851,-0.3543426,-0.75611126 +968,0.87359893,1.182626,0.5288368,-0.73955977,-1.0665872,-0.9301997,-1.1327708,0.5302742 +969,-0.49133748,0.3709663,0.57025117,0.61667967,-0.3675516,-0.75433093,1.3266543,-0.5224655 +970,0.4145553,-1.1084888,1.0087867,-0.11734079,-0.43953732,0.79003644,0.37940386,-1.3028148 +971,1.234476,0.59769243,-0.07312897,0.052982807,-0.91910154,-1.9691843,0.07684569,0.68664134 +972,0.6160232,-0.62174326,0.35264304,-1.0568668,-0.04550135,1.7764852,1.0290855,-0.49762714 +973,0.3329386,0.49045363,0.5670886,-1.0440965,0.13177285,-1.3880798,-0.8381863,0.21240896 +974,1.5660285,-1.6542069,1.1501974,-1.8688759,-1.1492026,-0.052689686,-0.49502188,0.91899663 +975,-1.1894894,-1.3389642,-0.6089848,0.87756604,0.8416185,-0.8827768,0.9732047,-2.0447035 +976,0.89578176,-0.3823182,0.27423936,0.83773446,-1.4948882,0.9513221,0.8021826,-1.2082068 +977,0.41650474,-0.3985801,-0.055724304,0.665718,1.2741785,-0.094664745,-0.679284,-0.98501396 +978,1.3088299,0.07192299,-0.63146305,-0.20073244,-0.5376787,-0.5878691,-0.38678986,-0.08961537 +979,0.78557116,-1.2536638,-0.5800822,0.35946774,-0.16948369,1.2131523,0.28242576,0.746811 +980,0.99615186,-0.18575042,-1.4238971,0.64072305,0.114341766,0.75436664,1.9770129,-0.5467727 +981,2.1263864,-1.8595926,1.6239535,1.1972308,-0.15880445,0.43622285,2.5079362,0.54206294 +982,-0.72814095,0.8362816,0.32714844,-0.55266285,-0.3468672,1.6124328,-0.13191202,-0.8372301 +983,1.7364616,-1.4962482,2.1076303,0.27222183,-1.8547983,1.053781,0.8307954,2.0333583 +984,0.47418627,0.63199586,-2.2500691,-0.45868608,-1.8454977,-0.59162486,-0.35450268,-0.3621847 +985,-1.0972526,-1.5657529,-1.8187891,0.50960517,-0.46430403,-0.87702084,-0.35518876,-0.087039486 +986,-0.46375155,-2.070122,-0.5923954,-0.3438716,-2.4946086,2.6029825,-1.0970536,-0.65791047 +987,-0.39600372,0.84202516,-1.7201805,-0.9219608,3.0066986,-1.6667413,0.6316567,-1.4358022 +988,0.22674124,-0.2392484,-0.7471726,0.60895747,0.90625405,2.502183,0.079872206,0.44663888 +989,0.6221483,0.07446613,1.1486294,0.018658489,0.6736002,-0.4647913,-1.2003926,0.039784938 +990,0.5695715,0.9619424,0.4852438,0.26483327,-0.99624634,0.9602169,-0.0133067705,-0.94353235 +991,0.54701525,0.29438993,-2.1607797,-2.4619787,0.51711667,1.2300159,0.57800424,0.7682059 +992,0.82671195,0.67312735,0.92267156,0.22636217,-0.42074078,-0.4178049,0.18913437,-0.6402638 +993,0.86767316,0.27483487,-0.73660225,0.80689454,0.42389327,-1.648166,-0.43864483,1.733238 +994,1.1706303,0.92664194,-0.4392354,-1.3543941,0.08506389,0.29534832,1.9048083,-0.14924552 +995,0.70257837,-1.3727512,-0.8749417,-0.24291976,-1.1749616,-1.2113575,0.65224683,0.22194043 +996,0.5792101,1.0543567,-1.1054432,2.5692346,0.32169658,0.67299896,1.3142838,0.23121747 +997,0.46595177,1.0010034,0.1648359,-0.84251934,1.0697486,-1.7038426,0.1510076,-0.31670016 +998,-0.79719806,1.9671583,-0.44913846,-1.4620205,0.14856887,0.6138775,-0.43031275,1.101671 +999,-0.30980185,1.0075369,-0.03193675,-0.049329028,1.3988086,0.5930052,0.60705966,-0.68218935 +1000,0.02201584,-0.3238053,-1.1933576,-0.68304133,1.2993562,-1.2898055,-0.530646,-0.6117148 +1001,-0.31842697,-1.5878857,-0.36427206,-0.08053416,0.11387954,1.2934549,1.0987374,-1.5702893 +1002,2.6755805,-1.1126803,-0.813189,-0.20969713,0.24188405,0.08292064,0.048203066,0.41496837 +1003,1.7656658,1.3491373,-0.42764422,-1.5604622,0.57133144,2.7914147,-0.36319193,-0.078798264 +1004,-1.0616767,0.5424933,-1.7378871,0.7689206,0.76879114,1.1220598,-0.39108458,-0.61021525 +1005,-0.889327,-0.67536116,0.7866877,0.8044808,-2.3237493,0.009956552,1.3080229,-0.046157587 +1006,-1.5314292,0.07064105,0.39235708,0.87375724,0.56336695,-0.4037652,-1.096916,0.9467683 +1007,0.23019357,-0.09900209,-2.4113004,-1.0352391,0.4678687,1.0861257,0.8492366,-0.9175527 +1008,1.0408849,-0.54233694,0.33904755,-0.27457315,1.0355124,-0.6608543,-1.5945318,0.9110329 +1009,-0.35031828,0.12028741,0.008269135,-0.7380224,-0.4034328,2.5686991,0.82272816,0.26881662 +1010,1.0811322,-0.18941209,0.42970675,1.4962934,1.6135925,-0.92449474,0.1079204,0.7569872 +1011,-0.3750475,0.015156375,0.7615348,0.8943805,-0.36926323,-1.9294701,-0.062363684,0.63387036 +1012,-0.5471152,-1.508177,0.40545055,0.37057668,-0.61098313,-0.19520742,-1.6589538,-0.52715576 +1013,0.34132123,-0.5788573,0.23381616,-0.98138106,-2.081642,1.3248363,2.01411,-1.236823 +1014,-0.052097157,0.29968557,-0.48220134,-0.29574636,-3.0126798,-0.5100119,1.2159408,0.38776135 +1015,-0.3451494,-0.17401224,-0.20135507,0.68699896,0.64453685,-0.054569088,-0.16391182,-0.7708237 +1016,-0.8888893,2.0909746,1.512934,-0.94576854,-0.41334933,1.0396627,-1.6860315,-1.4710381 +1017,-2.319026,1.5996662,0.36381572,-1.2682669,-0.8233576,0.7444637,0.03809542,0.69015634 +1018,0.68822324,1.6500318,-1.5883088,0.5442536,-0.69744414,-0.82241,0.31261212,-0.9826645 +1019,-0.7734661,-1.3844076,-0.9644004,0.43816316,1.0582876,-0.3860916,1.3753232,0.26157796 +1020,0.011031151,0.9484764,-0.9195115,-1.1063002,0.7085269,-1.1906731,-0.70115286,-1.0903287 +1021,2.0555594,0.017272566,-0.01624798,0.02014684,0.38203695,1.3674306,1.1624272,-0.56005764 +1022,-0.13009664,1.1447895,0.344724,-0.796828,-0.38955063,-1.3717228,1.4455408,0.14102805 +1023,-0.99524045,-0.09093456,0.5637129,-1.9388185,0.06638802,0.66129816,0.36003178,-0.7986013 +1024,0.3643986,2.2075238,0.84870225,1.9466861,-0.9516306,-1.4519181,-0.98640406,-0.013258256 +1025,0.014467195,-0.02057049,-1.1671675,0.631081,0.5033892,-0.5605027,-1.5312152,0.6853447 +1026,-1.4579881,-0.69876236,-0.52889055,0.11494562,-0.36894035,-1.9276385,-0.2670814,-1.2740183 +1027,1.0714589,-1.4142596,-0.81964463,0.30774713,1.9227858,0.24722365,-0.6646792,0.9769382 +1028,0.5184818,0.61474216,-0.10259107,-0.08272595,1.0487673,-0.029182948,1.4329096,0.4232033 +1029,2.1473792,-0.9136963,0.6105881,2.2560031,-0.22390237,-0.10814513,-0.45717892,0.30976617 +1030,0.74331224,0.14639978,1.569697,0.21536204,-0.8407993,0.6265082,0.873838,1.13252 +1031,0.55383325,-1.7393533,-0.2366966,0.1863326,-0.71107644,2.301606,-0.53509295,0.2810459 +1032,0.36029652,1.5730888,-1.0739387,1.8138112,0.25600457,-0.25348413,-0.66296977,-0.30503654 +1033,0.74562144,-0.14065522,0.062743604,0.81668884,0.6727675,-0.13056502,0.8305672,-0.08296949 +1034,-0.9444727,-0.12884949,-0.56085116,0.7049186,0.77763665,-0.037464228,0.49977788,0.24808563 +1035,0.4941906,-0.30713353,0.8299531,0.5489144,-0.68301475,1.5593264,1.6258829,-1.2104032 +1036,2.291503,1.3044227,-2.7238588,0.72006303,1.9431896,-1.6968992,0.7770007,-0.034774233 +1037,1.349911,0.5287597,-2.3613527,-0.5671974,1.2588589,-0.2144898,0.37024802,-0.3762823 +1038,0.27279997,-0.9442075,-0.1294966,-0.85410845,-0.7685322,0.15146536,0.7725793,0.113642626 +1039,1.0981393,-0.063036054,0.2814638,0.5097009,0.34591794,0.8844512,-1.3943048,0.5217385 +1040,-0.6867479,0.28388128,-1.4724841,1.7381115,-0.31499106,0.50065434,0.61617243,-0.52025384 +1041,0.22646323,0.5421583,-2.343989,0.035231553,0.9786793,-0.5415355,-0.2742623,-0.817362 +1042,1.8235439,-0.8260469,-1.1691498,-0.32697102,-0.8721224,1.3602426,-1.3005413,0.66804236 +1043,-0.637633,0.78189594,0.9712788,-0.6511442,-0.18785593,0.73255795,1.2446238,-1.1714085 +1044,1.5604811,-0.49391624,1.4881881,0.748808,-1.4102112,-0.4645793,-1.2125182,0.8670224 +1045,0.29481024,0.7294611,-1.2519051,0.24961218,-1.3536233,-0.5703615,0.5597304,0.81375825 +1046,1.203232,2.0592883,-0.75920963,0.71886355,0.56404257,0.2988804,1.4214237,1.585778 +1047,-0.47973514,0.5426258,-0.057681687,-1.0836289,1.8388814,-1.0159626,-0.21627945,-2.704319 +1048,-0.9034475,0.6041332,-1.5784497,-0.48503315,-1.49138,-1.1747183,-2.4206655,-0.29045123 +1049,1.9127069,-0.43844396,0.38841915,0.50499845,0.28256863,-0.38852048,-2.2394001,-0.80530804 +1050,-0.09095502,-1.8700216,-0.47576624,1.6299669,0.2953494,-0.40299627,-0.5390142,-0.9867599 +1051,2.3113933,0.8900912,-1.8606366,-0.015243504,0.4206399,-0.6878332,-0.0072426125,-2.029942 +1052,-0.024699017,-1.2819192,-1.8441312,-0.88873196,-0.83404565,1.2382984,-0.8490281,0.6756689 +1053,-0.31211913,-0.38370547,1.806853,-0.6430106,-0.6916347,0.7319356,0.41581696,0.11911771 +1054,-0.74542475,0.99705523,2.7677884,1.0634389,0.85900384,0.8290814,1.5052481,-0.35666883 +1055,2.221757,-0.7823746,-0.6888542,-0.26800284,-2.0982547,0.9968103,-0.161163,-0.5138076 +1056,1.0791122,0.70424217,0.18653561,-0.86920637,-0.51426375,-0.94960046,-0.58275056,0.25230166 +1057,0.5148889,-0.59049034,1.0716949,0.31031513,-0.05170244,-0.5244551,-0.3304935,-0.8478577 +1058,0.2685735,0.09343384,0.33150592,-1.5814303,0.7973596,1.0122907,1.0615677,-1.5550227 +1059,0.94142467,-0.44646823,-1.7145474,0.9632805,-1.0844064,-0.7391568,1.1290371,-0.10392091 +1060,0.0654181,-0.10905225,-0.08262297,1.6721433,-1.122998,-0.8268099,0.47159335,-1.8276116 +1061,0.95184237,-0.5092316,1.3793324,1.1773349,2.133964,-0.0008001067,-0.8750002,-0.8318228 +1062,-0.20788392,-1.475358,-0.6222481,1.0478857,1.0409626,1.7417573,0.5013936,-0.35041967 +1063,1.9192392,-1.3450797,-1.5258448,-0.46496093,-0.4592373,-0.77583855,-0.077616096,-0.61516577 +1064,3.1054418,0.31752512,-0.9759191,1.2675794,-0.30135185,-0.3745093,1.273916,1.1642451 +1065,-2.0003626,-0.30265084,0.4580686,0.8025128,1.1646833,-1.6817174,-0.597042,0.19341797 +1066,0.79492956,-0.26509416,1.5058851,0.7245718,-0.72147554,-0.5361157,1.079559,0.7761986 +1067,0.10241479,-0.8540847,1.5708958,-0.597545,-1.3122029,-1.0521913,-0.26349756,1.2096323 +1068,-0.2530328,-0.8555568,-0.81651145,0.51456517,-0.100555666,0.86881375,-0.35871568,0.21501526 +1069,0.005051434,-1.4172915,2.4549084,0.0374116,0.4354658,0.55420667,0.4962539,1.1728996 +1070,-0.036733836,0.778287,0.27799237,-1.5429202,-0.39053136,-2.7932272,-1.8017622,1.3844017 +1071,1.1670562,0.12384759,-0.063847,-0.13828418,-1.44192,-0.58033997,0.16300187,-1.4498891 +1072,0.5082612,-2.355574,-0.60998744,-1.2203112,-0.24273026,-0.5798612,-0.030568128,0.17458767 +1073,0.2870796,-0.05053158,-1.6181955,0.05679997,1.8015066,-1.6799525,-1.00957,-1.3781804 +1074,0.7409945,0.027251102,0.010766193,-0.7730119,-0.48150754,0.9617042,-0.31789023,-0.9042511 +1075,0.80585676,-0.9207432,0.8245503,-0.47987705,1.581062,-1.3133816,0.32371587,-0.18841727 +1076,0.9342394,-0.53712946,-0.024454284,-2.9012284,-0.29481402,1.1535976,0.35422817,-1.3586372 +1077,-1.6000205,0.13161755,0.11597367,-1.0653893,-0.48272914,1.7928178,0.38226184,0.2544733 +1078,0.33809438,0.19297333,-1.1788858,0.115509376,0.33557245,-0.17045845,-1.1922991,0.7871337 +1079,0.5184002,1.5464644,-0.6745818,0.13981274,1.3068272,0.5798249,-1.4274969,0.95350254 +1080,-0.50446534,0.765026,0.73409814,0.69087946,0.26619774,0.22963409,1.0290467,0.022077903 +1081,0.012619048,-0.9580115,0.39972514,0.7762346,-0.092276946,-1.919705,-0.7243338,0.6293281 +1082,-0.20689273,-0.6018747,0.8494763,0.6876281,0.50543725,0.3789455,0.7574195,-1.0102718 +1083,0.3846171,0.04508827,-0.207407,-0.19184864,0.2658552,-0.0139696915,-0.59631974,0.9023017 +1084,-0.16069533,0.69308007,1.0136443,-1.641204,1.9581678,-0.076226115,-0.48114502,0.8263957 +1085,0.5705019,0.27245718,-0.06677541,0.0047778264,-1.3556604,-1.7797579,0.5794064,0.18111274 +1086,0.1660029,-2.0463407,0.025478467,0.3653366,-0.4018527,0.098952025,0.48365164,0.72917414 +1087,0.34952193,-0.9491864,-0.3061829,0.857858,1.1429636,-2.1364787,1.0129306,-0.13951741 +1088,1.5720167,-0.2140558,-0.5542022,-1.0147866,1.5623319,-0.2886973,0.33054647,0.32063907 +1089,0.4761489,0.23647958,0.95481503,-0.5702824,0.23331293,0.25981343,-0.6562095,-1.13471 +1090,0.9461801,0.3070249,-1.0066481,0.37505147,1.670293,0.845435,-0.059226543,0.39821297 +1091,1.4173082,-0.80299324,-0.44344884,-0.27593958,-0.35564244,0.8140918,-0.8698972,-0.32629088 +1092,0.22547159,-1.877542,1.1812003,1.2498299,1.2045991,1.3155098,-0.53983843,0.12170008 +1093,2.0321054,0.42302626,0.5403585,1.6668776,1.7235706,-1.992537,-0.95953274,-0.8478932 +1094,-1.4515097,0.14458796,-0.27086705,0.4799841,0.4926871,-1.2395611,0.75015104,0.47171697 +1095,0.5376121,1.5748054,0.340883,-1.1693935,1.5153792,1.7778298,-0.99931985,-1.9264653 +1096,-1.4058546,-0.40759856,-0.34996957,0.98233604,0.0642818,-0.054485105,-1.3565264,-2.2462907 +1097,1.8992172,-0.3703351,-0.30518475,0.22264615,-2.041136,0.1507842,-1.1011046,-0.27183157 +1098,-1.2261165,1.2701906,-0.029089957,0.35416734,0.34857067,0.22618641,1.5077634,-1.713999 +1099,1.4804243,0.42918822,-1.1465919,-0.20363478,-0.62497926,0.6660397,-1.7648479,-1.054848 +1100,-0.7522244,2.3135529,0.9071146,0.60564464,-1.0536958,-0.031997323,0.63850105,-1.7291533 +1101,-0.44226483,-0.33911335,0.945904,-1.9875234,0.8804467,2.2139735,-0.28463328,0.4286484 +1102,1.1668038,-0.4403458,-0.19155228,0.27532947,0.30989206,-0.40789986,-0.3976154,-0.25139362 +1103,-0.56625235,-1.2114406,0.49409494,-0.39240932,-0.13782993,1.0842861,-0.33941013,0.31763273 +1104,0.60629743,-0.94182634,0.39822435,-0.19125168,1.1406479,-1.4037446,-0.6928657,-0.38164002 +1105,0.31325418,1.7678487,0.4647269,-0.8111875,1.0749941,-1.8307228,0.104746215,0.54514426 +1106,0.0004080683,0.706722,-0.9945699,-0.45645198,-0.28515303,0.43785495,1.5331339,-0.19321322 +1107,1.0612419,-1.0208781,-0.6243861,-0.6729436,0.10699489,-0.22844404,-0.25748315,-1.7020667 +1108,0.45658308,-0.83711994,-0.24574332,-0.8213435,1.6929141,-0.7369181,0.32237875,0.50601804 +1109,0.6210269,2.0212903,1.1475177,1.1570137,0.0992642,0.354626,0.7920387,-0.23413923 +1110,1.1105287,1.0414518,-0.87658834,-0.5531492,0.04394862,-0.96677375,-0.7251798,0.81587696 +1111,0.40595025,1.038761,0.41055644,-1.1436028,0.9572052,-0.7578952,2.1983976,0.2308955 +1112,-0.36722958,-0.13177358,0.73147154,0.035905667,0.29559517,0.13047345,-1.4720048,-0.22902018 +1113,1.9464039,-0.8924022,0.79337907,0.76336336,1.0773253,0.07795459,0.87580365,0.027541526 +1114,-0.19844568,-0.36940342,0.6766518,-1.3741463,-2.18259,-0.6256541,0.5135208,2.3541203 +1115,-1.9429356,0.93310773,0.3454631,0.4426627,1.0853264,-0.12589414,1.1230081,-0.2787122 +1116,0.43548393,1.7784926,-0.7960626,-2.105798,-1.2814044,0.1415377,0.3921436,-0.8790007 +1117,-0.30740654,0.13648191,0.37576485,0.06101857,-1.2890084,0.19778888,0.6023847,-1.2329977 +1118,0.24014792,0.36131483,-1.1264715,0.27158713,-0.562731,0.39448538,-0.9991462,0.45981273 +1119,-2.5398395,-0.37277043,-0.15880154,-0.8028334,0.98659647,-0.87029576,-0.3515501,-0.5214793 +1120,-0.84448236,-0.047438215,-1.1416328,-0.76494896,-0.5050542,-0.6897137,-0.48512614,-0.40103036 +1121,0.82850283,0.31182748,0.6230877,0.60555583,0.6815161,1.2301158,0.76951355,-0.44149822 +1122,0.40235925,1.9712929,-0.7032764,-1.6070508,-0.08811501,-0.57872057,0.47462845,-0.2663775 +1123,0.44931108,2.2403517,-0.6124904,0.3737944,0.2828321,0.9230335,-1.2130877,0.35912043 +1124,-0.755731,0.68146735,-0.5869081,0.029296596,-1.3041555,-1.4420226,-0.5384525,1.965266 +1125,0.6307772,0.20772159,-0.9179741,-0.7947337,1.6232178,-2.765473,-0.109855235,0.42311782 +1126,-0.690699,0.5796147,-0.99259317,-1.0951005,-0.5382211,-1.5547885,-0.7074825,0.7558204 +1127,-0.68128586,-0.15518977,1.043966,-0.587395,-0.26458988,0.8754028,1.1044399,-0.27362648 +1128,-0.8861684,1.6532419,-0.21074393,0.8047504,-0.45854113,0.016064592,-0.8970003,-0.9725777 +1129,0.43219486,0.41401884,0.08891477,0.5245732,0.9348146,-0.218196,2.1872697,-1.0463251 +1130,-0.20994559,-1.3347725,-0.34420878,-0.7628774,0.04630865,-0.6468217,-0.8315193,-0.16656412 +1131,0.5215558,2.1750162,0.903288,-0.327217,-0.083962955,0.08694124,1.5156384,-0.4633007 +1132,1.6030926,-0.4147129,-0.33269596,-0.071513504,-1.9988611,-0.44591445,-0.1285389,-1.19806 +1133,-1.3360976,-0.7639943,-1.7878258,1.1121262,0.42329824,-1.286904,0.8838055,1.2851505 +1134,-0.8885932,-0.08175132,0.51667774,0.824476,-1.002429,1.7378701,-0.38239375,-0.72425926 +1135,-3.0122259,-0.11484017,0.42544815,-0.39020887,-0.67955214,-1.8421865,0.12363746,0.49210513 +1136,0.23379369,1.2748947,0.0629237,1.8206396,-0.331554,-0.73342913,-0.91782314,-0.20205572 +1137,0.7285961,0.97109824,0.92855525,-0.56346905,-0.99814844,-0.3968336,0.9226559,0.11943445 +1138,-1.8723419,-0.18591768,0.14917414,-0.033493396,-0.07643702,0.8871642,-0.7119495,0.17744753 +1139,-1.327458,0.8684523,-2.63655,-0.03784984,-0.44827488,-0.44275054,-0.7948801,0.49058658 +1140,-0.33713034,0.992553,-1.4781529,-0.7518261,0.66030693,-0.10077516,-0.17617425,-1.1002177 +1141,0.4373025,1.2173505,-1.3328916,0.22991812,-0.23369059,0.07393406,0.5659883,1.7907658 +1142,0.5512847,0.15640637,-1.3700459,2.0932846,0.41396227,-0.28149214,0.830897,-1.3554071 +1143,1.0436659,-0.09417074,-1.8488111,-0.62518233,-0.069171324,0.73342276,-0.91604465,0.25196683 +1144,-0.097372584,-0.452928,0.8796687,-2.0750632,-0.015740003,-0.16511413,-1.4884298,-1.6037996 +1145,-0.47928715,-0.07265328,-0.10018542,-0.6008585,0.42394945,0.6954506,-0.14958125,-1.9949274 +1146,0.5869416,-0.5461221,0.24636291,-1.1288905,-0.48656118,0.47298908,1.0692922,-0.013560981 +1147,0.7812005,0.48313537,1.2652065,-1.4599319,-2.1462262,0.6756251,-0.13162279,-1.76995 +1148,0.88544476,-1.1707101,0.39423394,-0.27509478,1.5375689,0.6247749,-0.11546439,0.5817421 +1149,0.9131929,-1.0822049,0.81088233,-0.04463979,-1.9957794,0.641063,0.16413829,0.7794502 +1150,0.2377389,0.2996988,0.5022014,0.71280706,0.3982103,1.0475658,-1.5082246,-1.8533769 +1151,-0.32771856,0.20193061,-0.044794574,-1.6327662,0.1646325,-1.2367578,-1.1551284,-0.31330875 +1152,1.8592491,0.6388277,-0.156628,-0.12524748,-1.0050776,-0.11187842,-1.1699309,-0.689907 +1153,-0.4957801,-0.37162733,-2.4459872,-1.38084,1.3533764,-0.85076237,0.13540816,-0.31743225 +1154,-0.09920801,0.3238137,-0.35950556,1.6665078,-1.617925,-0.32458684,-2.0672712,0.598611 +1155,0.175543,0.32945693,0.35146308,0.2792481,-0.0068857744,-0.67232686,0.60342747,-0.03208358 +1156,-1.5710922,-0.29726326,-0.57334024,-1.1364582,0.4005143,-0.7762079,0.26475427,0.066495836 +1157,0.5179267,0.93376535,0.49248648,-0.86981976,0.21416558,-2.5547316,2.5588806,-0.41708696 +1158,0.6267771,1.1948551,-0.5568582,0.5237862,-1.4131258,0.5405625,1.2418625,-1.3876233 +1159,2.0943635,0.13051647,0.43531868,1.1562309,0.8037299,0.29501936,-0.16817605,0.42878258 +1160,-0.8467431,0.12153555,-1.0731403,-0.36500192,1.3065246,1.1492121,-0.17269224,-1.0076216 +1161,-0.49394464,0.9960985,-0.54174066,-0.85115474,1.0872264,0.38082376,-0.30505896,-1.9120437 +1162,0.684319,-0.84194833,-1.0884082,-0.037521906,-0.61575663,0.25947785,0.35675174,-0.41598153 +1163,-0.32297647,-1.1791211,0.115262724,0.52350944,1.4415317,0.4435325,0.9640485,-0.6087607 +1164,-1.5580883,-0.7688025,0.0054010153,-0.38379735,-2.2105892,-1.3778615,-0.76923513,1.6546476 +1165,-1.5556439,-0.96893454,0.58455706,-1.2116498,-0.45137542,-0.15423971,-0.32440597,0.02889096 +1166,0.12901823,0.37095004,0.8102776,-0.8122846,1.3323734,-0.6003834,0.7756723,-0.332179 +1167,-1.3598635,0.016302247,-0.29406995,1.3554552,-0.85293406,-1.4507091,-1.7369695,1.9193848 +1168,0.41482115,-1.1819783,-0.11288077,0.29650444,-0.69146734,0.076486595,1.2272211,-1.3021858 +1169,2.0533493,0.1765238,-0.0074328333,-1.7027977,-0.72983444,2.6238303,0.15343593,-1.3271844 +1170,0.95624244,0.5170087,-0.24799041,0.7649425,0.86840266,-0.94142604,-1.1691947,-0.3425154 +1171,0.10761593,-0.47637314,0.42473733,-0.7161466,-0.25659913,1.629726,1.0551484,0.7208921 +1172,-0.44847894,-0.48420084,-0.43306857,0.3088264,1.952122,-0.37044206,1.2623056,0.60467625 +1173,0.12763423,-1.6209086,0.18006122,0.65061307,-2.4684725,0.07676842,1.391162,-2.0929766 +1174,-0.57550746,-1.2737676,-0.048129555,-0.63080966,-0.6990279,-1.5525858,-2.1256204,-1.04237 +1175,1.4935342,-0.4977174,-0.685634,0.4824636,-0.2882669,-0.8555243,-0.084724605,1.01446 +1176,-0.6936177,0.080244556,-0.016287774,0.0026757568,0.54980826,-0.69706166,-0.6129061,-1.0026461 +1177,1.2177228,-2.0744076,-0.28097802,-1.3569864,0.6054494,-0.16819504,0.38970333,0.0064150468 +1178,1.0221161,-1.4773202,0.38870576,0.7474326,1.9990101,-1.2190422,2.5223968,-1.1862246 +1179,1.7955843,-0.99622846,-0.9508422,-0.8902166,1.1392004,-0.95925266,0.67382306,-0.35570645 +1180,-2.2146318,-0.7155525,-0.77024937,-0.9622614,0.43539402,-0.04019068,-0.8705282,-0.62752384 +1181,1.2978557,-0.28054518,0.76221484,-0.796122,0.49600488,-0.17875278,2.2288125,0.38611636 +1182,-0.309886,0.17239088,-0.07581856,0.7728296,-0.15207618,0.9747544,0.16542795,1.9357346 +1183,0.5136225,0.6188744,-1.1350957,0.31399447,0.49575588,0.6597968,-0.18031506,-1.3897467 +1184,-0.51549613,0.069930404,-0.122499295,0.555726,-0.65794957,1.0898203,0.5060612,0.35238928 +1185,-0.42914915,1.5406142,-0.60239744,-1.2742544,-2.0317905,-0.20717503,-1.0379219,-0.29371196 +1186,-1.1861656,-0.018140817,1.1044651,-0.4627546,0.021254856,-1.1624129,-0.7943736,-0.29709998 +1187,-0.8272781,-2.6948671,-1.131604,-2.3176112,-1.1645705,-0.8538468,-0.041761033,-0.45722955 +1188,1.2942528,0.6747662,-0.45953062,-1.9079884,1.7747304,-1.2692604,0.4915093,0.12509206 +1189,-1.5495476,0.97140276,2.0456605,-0.21440376,1.6327634,-0.5317033,0.15246488,-0.7687142 +1190,1.8289787,-0.054825597,-0.35271654,0.97133404,0.26196924,-1.1183245,-0.46798483,-0.76103616 +1191,1.7621809,0.4435286,1.8198049,-0.6324825,0.8095357,0.017840382,-0.13068986,-2.8227708 +1192,1.2009703,-0.2921167,0.33005977,-0.8358441,1.4104594,-0.33898807,0.5725554,-1.4979465 +1193,1.0741034,0.07944618,0.19619173,-2.475399,0.2137627,-0.39212883,0.80324084,-0.7827337 +1194,-0.30391553,1.7401421,0.54918057,0.45887452,0.7687823,-0.8134788,-1.8908573,-0.89262176 +1195,-1.0911092,-1.6821117,-0.026192706,-0.4481703,-0.83832586,-0.7573134,1.4434633,1.7134426 +1196,-0.9253698,-0.5059271,0.33289033,-1.5170377,0.11420798,-1.3619595,0.8596138,0.58952343 +1197,-1.9384966,1.0892632,0.9020443,0.23026288,-0.9045069,0.7145205,-0.3169728,-0.017114481 +1198,-0.3131273,1.6805012,-0.60319245,-0.10732588,-0.9710043,0.7558062,-0.5504955,-0.27307016 +1199,-0.21295625,1.714013,1.0057021,-1.5091703,-0.46105528,0.59552187,0.5019046,2.3952658 +1200,0.07870616,-0.005193592,0.8883399,-0.9570809,-0.12233477,-1.4338821,-1.4221144,-0.4525718 +1201,0.50320035,-0.9148211,1.8735386,-0.4849053,-0.7777986,0.43891805,-0.5947653,0.77691495 +1202,0.2052713,-0.74480903,-1.771589,-1.1143744,1.6913844,0.55244815,-2.1385052,-0.4797444 +1203,0.12517935,-1.2976003,0.21013018,0.29490522,-0.66570777,-0.45293477,0.8563428,0.5069345 +1204,0.2509643,-2.447061,-0.7598698,0.8049713,0.61675614,0.74855554,-0.34538084,0.88847035 +1205,-0.54726005,-0.6420615,0.49920958,0.5297558,2.5954423,-1.0086089,-1.2493533,-0.2801212 +1206,0.6798308,1.7459264,-1.2349502,-0.64018035,0.7357866,-0.22455424,0.20131145,0.529231 +1207,0.59765565,0.30420652,0.8352295,-1.1416328,-1.0562766,1.9250523,-0.43496796,-1.6070769 +1208,1.3051926,1.7600039,-0.17142713,0.5560963,0.5572202,-0.39242685,0.011451601,0.6993142 +1209,0.25161797,-0.69588345,0.98436475,1.2441477,1.2446303,0.8820376,0.9673135,1.3423432 +1210,0.24361351,0.3330655,-0.45118764,1.9167591,1.3124166,-0.14569539,-1.3569005,-0.17679374 +1211,-1.4797957,-1.6223503,1.2246774,-1.0225717,0.9446303,0.50629956,-0.09746593,0.32552043 +1212,1.2909896,0.056418277,1.429008,-1.962602,0.19734849,-1.0607704,-0.2946092,-0.9406189 +1213,0.6727798,2.3270304,-1.0943037,-0.7911194,-0.16331993,0.41943905,1.8210267,-1.7793714 +1214,1.6866512,0.3504051,-1.624468,0.064544305,-0.065021835,-0.2671255,-2.6481144,-0.3327564 +1215,-1.3348452,1.980921,-1.2333425,0.14003,1.24008,-2.453911,0.13811427,-1.4812863 +1216,-0.10394642,0.686938,-1.4696054,-0.16284327,1.2374592,-0.61086935,-0.2102083,-1.8935999 +1217,-0.5530347,-0.58555335,-1.8859702,-0.038073495,-0.6246857,0.42027274,0.6899229,0.74405736 +1218,1.278641,-0.086993024,-0.13460661,-1.1667036,-0.7414515,-0.61584264,-0.61857843,0.5476511 +1219,0.24405012,1.9513288,-0.4608317,1.0284837,-0.59787434,-0.6171635,0.36603135,0.87651104 +1220,-1.3428309,1.0017242,-0.6204534,-0.4856732,1.5191696,1.3895893,-1.1348058,1.8574127 +1221,-1.1945721,0.024314234,-0.09461877,0.46930283,-1.3972367,0.44880304,0.45587638,0.16414641 +1222,-1.0707259,1.3774097,0.78152573,0.3098532,0.02161096,0.7683585,0.81533426,-2.640351 +1223,1.4911165,0.6620983,-1.0760016,-0.9908986,0.110923916,0.6160092,-0.9201274,1.8112707 +1224,-0.60432017,-2.544696,-2.8563402,0.029688917,-1.5473769,0.81011844,0.08854222,0.21421054 +1225,0.8794795,-0.025213756,1.3083696,-2.095428,0.921416,0.67577034,0.27836603,-0.4752762 +1226,-1.0787671,1.21259,-0.7075745,-0.6588102,1.3718189,-0.8139513,-1.230005,1.6053594 +1227,0.29299212,-1.0626788,-0.63183355,0.5691518,-0.47805345,2.38879,-2.1949024,-0.44257063 +1228,-0.6345502,1.0230998,0.6670158,-1.1670318,1.4032792,0.042843,0.9600662,-2.971219 +1229,0.86357474,2.2731016,-1.1944158,-0.7130099,0.7947726,0.77279395,-1.3041077,-1.2774806 +1230,1.9155879,-0.25522056,0.17980066,1.5441886,-0.63335085,0.32644486,0.25882497,0.47577497 +1231,0.8693713,-0.74405813,-0.10646117,-1.8761232,0.946235,0.4749878,-0.5629185,0.053061232 +1232,1.1388328,-0.91845894,1.2688961,0.38307998,2.5758805,-0.10462766,-0.6424935,-2.2424743 +1233,1.8227321,0.84280324,-0.846707,0.88477015,-0.20875591,1.3785181,-1.1503497,0.43881863 +1234,0.4613703,-0.5246815,0.3954911,0.7691252,0.15546049,2.4669833,-0.21051292,1.4757388 +1235,0.7111173,0.337118,0.62582946,1.0551552,-1.0069829,3.5504565,1.2193283,-1.1067889 +1236,0.43886423,1.596502,-1.0163758,-2.3277388,0.7480382,0.8591612,1.1870009,1.8780489 +1237,1.0459447,0.9006856,0.4924261,0.7543475,-1.0110134,0.79153436,-0.508735,1.797476 +1238,-1.9060977,-1.2854614,0.40208516,0.3462363,-1.3277887,0.4857841,0.9214074,0.19911492 +1239,-2.0967858,-0.15414381,0.8385075,-1.4346476,0.27424175,0.77697265,-1.5748113,-0.63647884 +1240,1.2895824,-1.0423276,-0.066723585,-1.709105,-0.3453832,-1.0760221,-0.7529864,-0.7333679 +1241,1.1182176,1.3343954,-0.107277215,-0.45722285,0.63215876,-1.5000522,-0.4600692,0.7785571 +1242,0.19325659,0.36941776,1.7297612,1.0407395,-0.58022183,-0.08467896,1.6232837,-0.098792896 +1243,-0.37639242,1.6384151,2.3046713,-0.83694696,-1.0358787,-0.47453696,2.895087,0.4325539 +1244,0.120947406,-1.9991856,-0.39284822,-1.4706987,-0.19629954,-0.6717663,0.09786061,1.2413828 +1245,1.3489206,2.9544299,0.89011836,-1.3893653,-0.042577777,-0.007471502,-0.5035105,1.0149468 +1246,0.47174227,0.067794934,0.06668326,-1.6953764,-0.7556644,-0.8439069,0.63859785,1.1235629 +1247,2.089396,2.3313458,0.5864627,0.55515957,0.13954987,-0.7695997,-0.58679116,-0.116394386 +1248,2.1889024,-0.6508393,-0.9931102,-1.1947854,0.61061525,1.3196177,1.0924112,0.51588666 +1249,0.61980385,-0.5416836,0.8728826,-0.77850676,1.3557651,-0.35856357,-1.0371318,0.11162892 +1250,-0.35752887,-1.5743943,-0.15646516,1.1024089,-0.21242297,0.7202461,-1.0224135,-1.1942173 +1251,-0.9919154,1.528049,-2.8424473,-0.015009675,2.0068502,-0.23968635,-0.43772382,-0.17177287 +1252,0.6847788,2.0099785,0.78465503,0.2823696,0.44013637,-0.4976119,0.39368054,0.19579354 +1253,-0.22222114,-0.7114086,0.41361067,0.24817073,-0.90471935,-1.8177633,-0.026205197,0.32194272 +1254,1.3685113,-0.18349142,-0.79429567,-0.28686696,1.2723565,-0.26843446,-0.15162496,-0.13768744 +1255,1.8425754,-0.33732343,-0.71449876,-0.7770397,2.0760098,0.7266984,-0.87124515,-0.3027028 +1256,2.4055455,-1.1165982,-2.3810496,0.85456455,0.4438291,0.057186827,-0.5778605,-0.1443514 +1257,-0.20632812,-1.9014834,1.052539,-0.81785506,0.034455657,0.27035478,0.72979784,-0.78466094 +1258,1.252469,0.12168326,-1.7982377,0.40727353,1.7963291,0.015503094,0.07914218,-0.28106216 +1259,-0.68708515,-0.2709645,-0.16830921,0.15928143,0.7357312,1.667785,0.8895631,1.7955511 +1260,2.7508166,0.8539401,-0.4147459,-0.99581236,0.55250996,-0.14433092,-0.34563085,0.90237296 +1261,0.09249814,3.48262,-0.99537545,-0.008942775,-0.31907004,-0.5764477,-0.1891071,0.25907296 +1262,0.7858577,-1.4654025,2.6182177,1.7737073,0.3893051,1.4483594,-0.24188714,-0.73243296 +1263,0.7442607,-0.6301876,-2.1137989,0.72076356,-0.35025957,-0.72710884,-1.3017505,0.858927 +1264,-0.5106792,1.4500437,1.5226364,0.4095626,-0.7999252,0.32231337,-0.17403527,-1.5704063 +1265,0.07565573,-0.33570957,-0.8283781,0.97467184,-0.643838,0.0050972104,-0.6092422,0.66243285 +1266,1.4364924,-0.880966,-0.4449634,-1.0204431,-1.0357307,-0.6927582,1.1625364,-0.8889875 +1267,0.37658477,0.7644876,-0.018305436,0.39742118,-0.6599636,0.27865976,-0.41172782,1.8965372 +1268,1.7075737,0.5367281,-0.34510198,0.010834828,-0.7098924,0.8566166,-0.35450584,-1.0693333 +1269,0.7967183,0.7487154,0.675701,-1.8078084,-0.12901396,0.30316177,-0.31140792,0.10016179 +1270,-0.0282695,0.6059185,0.40626466,1.1915897,0.574444,-0.2593651,-1.3669595,0.9422671 +1271,1.8220706,-0.047658086,0.34535453,1.0632833,0.21980128,-0.56176025,-0.031392723,-0.7881605 +1272,-0.8792311,-0.049402755,0.31738967,0.94312775,0.28984568,0.5982449,1.9154459,2.0537484 +1273,2.6598067,-0.3401376,0.78394425,0.8279239,0.20892002,0.022043016,-0.12496118,-1.9850446 +1274,-0.14758933,0.3560224,-0.08812517,0.6221585,0.7935068,0.6788957,1.1491302,-0.9493454 +1275,0.58813787,0.77041966,0.31390128,-0.29566196,-0.15961476,0.7287849,1.1026809,1.5302173 +1276,0.36713493,0.5448251,0.5825234,0.7334692,2.5470855,-0.648774,1.0422825,0.21139637 +1277,-0.09171751,-0.97971964,-2.305162,0.3360507,-0.8586256,-1.240697,-1.0423781,2.186922 +1278,-0.6328817,-0.37169552,-0.53695995,-1.4789174,0.5095624,1.0317191,-0.2849802,-0.44933525 +1279,0.84755385,0.9679168,0.9325553,-0.82309985,0.42322034,0.2554423,0.6979957,-0.1473768 +1280,0.88362277,1.7498864,-0.5893535,-1.2676481,-0.5404623,0.3556996,0.52629316,1.5307739 +1281,0.42840064,0.114257924,1.3300716,2.6439373,-1.5423298,-0.71609205,-1.5545431,2.005196 +1282,1.2260832,-0.13510534,1.5133511,-1.3687385,0.8449373,-1.5093297,-1.3266151,0.5537699 +1283,0.64684826,-0.4326397,-0.4080108,0.6515536,-1.3113691,-0.93678236,0.024239972,-1.1780964 +1284,-2.4440722,0.63228965,0.57925516,-0.10348135,-0.55504805,-0.2159722,-0.18915638,-0.5121371 +1285,-1.1817213,0.03377218,-0.35353208,0.5473265,0.41702017,-0.11635101,0.017168969,-0.5572556 +1286,0.91650003,-0.09160558,-0.693484,0.9912709,1.9836446,1.6147096,0.90141267,-0.5192153 +1287,-0.0933364,0.77591646,0.08932134,0.49140146,0.24368736,-1.3928294,0.25121072,-0.87553436 +1288,0.03607834,-0.023373619,-1.916367,-0.5817991,-0.71279603,-0.1911802,1.3367639,0.8937383 +1289,-0.10896985,-0.67057836,-0.46378326,-0.04401871,1.0228724,0.33022064,0.2316396,-0.59868604 +1290,-1.0759456,0.9021968,-1.1182642,2.0867045,0.40188217,-0.3014506,-1.5875729,0.58037466 +1291,-0.14540309,-0.26018655,-1.0288135,-2.1289785,2.0483334,0.51526064,0.7235364,-0.71258324 +1292,-0.052732214,0.069901764,-0.103927225,-0.0060475096,0.4953558,0.13583197,-1.3578197,0.26736605 +1293,-0.40229583,0.32073164,-0.3132971,0.24370125,0.1802541,-1.7058266,-0.38817692,-1.3536115 +1294,-0.04658276,0.22275953,-1.2616463,-0.4236039,0.9284106,1.5484715,0.63031644,0.25027803 +1295,0.1813062,3.2502797,-0.94729704,0.040115625,0.7728317,-0.17139032,2.6122546,0.5618082 +1296,0.30547452,0.7164853,0.6359895,-0.5696296,-0.058176044,0.5163288,-1.4107089,1.8793889 +1297,0.34206787,-2.1795137,-0.1088718,-0.9228991,0.9069453,-0.24907881,0.30006835,-0.17830276 +1298,1.2386281,-0.33715957,0.12299442,0.75536966,0.08976889,2.441024,0.3909925,-0.9425627 +1299,-0.62068284,0.9691384,0.7668205,1.1150299,-0.8620101,0.91428816,1.748045,-1.4916524 +1300,0.39250937,0.022914883,-0.3366645,-0.62791574,-1.5127877,-0.6785027,1.7675403,-0.28340405 +1301,2.3036342,1.447938,-0.15935965,-0.7779088,1.5263747,-1.1959442,-0.33745277,-0.21044189