Page MenuHomePhorge

No OneTemporary

Size
76 KB
Referenced Files
None
Subscribers
None
diff --git a/apps/ccam/sample_data/20200325_1312/csv_splitter.py b/apps/ccam/sample_data/20200325_1312/csv_splitter.py
new file mode 100644
index 0000000..5bf39b3
--- /dev/null
+++ b/apps/ccam/sample_data/20200325_1312/csv_splitter.py
@@ -0,0 +1,62 @@
+#!/usr/bin/env python3
+
+import os
+import csv
+from os import listdir
+from os.path import isfile, join
+
+inputPath = "./original_data"
+outputPath = "./splitted_data"
+columnsOfInterest = [0, 1]
+columnsOfInteresDataType = ["float","string"]
+fileEnding = "csv"
+
+filesOfInterest = [f for f in listdir(inputPath) if (isfile(join(inputPath, f)) and join(inputPath, f).endswith(fileEnding))]
+
+numOfColumns = len(columnsOfInterest)
+
+for file in filesOfInterest:
+ print(file)
+
+ fileName = os.path.splitext(file)[0]
+ filePath = join(inputPath, file)
+
+ #create results folder if it is not existing
+ outputFolder = join(outputPath, fileName)
+ if not os.path.exists(outputFolder):
+ os.makedirs(outputFolder)
+
+ output_cols = []
+
+ for i in range(numOfColumns):
+ output_cols.append([])
+
+ with open(filePath, 'r') as f:
+ reader = csv.reader(f)
+ input_data = list(reader)
+
+ for i in range(len(input_data)):
+ input_line = input_data[i]
+
+ for j in range(numOfColumns):
+ output_cols[j].append(input_line[columnsOfInterest[j]].strip())
+
+ # print("input: ", input_line)
+ # print("output1: ", output_cols[0])
+ # print("output2: ", output_cols[1])
+ # input()
+
+ for i in range(numOfColumns):
+ outputFilePath = join(outputFolder + "/" + output_cols[i][0] + "." + fileEnding)
+
+ output_cols[i].pop(0)
+
+ writeFile = open(outputFilePath,"w")
+ for output_line in output_cols[i]:
+ writeFile.write(output_line + "\n")
+
+ writeFile.close()
+
+
+
+
\ No newline at end of file
diff --git a/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV.py b/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV.py
new file mode 100644
index 0000000..8ea249a
--- /dev/null
+++ b/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python3
+
+import os
+from os import listdir
+from os.path import isfile, join
+
+inputPath = "./splitted_data/values_20200325_1312_1/"
+inputFile = "out.csv"
+outputFileName = "out_excel.csv"
+
+with open(inputPath + "/" + inputFile, 'r') as file:
+ file_content = file.readlines()
+ file_content = [f.replace(',', ';') for f in file_content]
+ file_content = [f.replace('.', ',') for f in file_content]
+
+with open(inputPath + "/" + outputFileName, 'w') as file:
+ file.writelines(file_content)
diff --git a/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV_and_Tags.py b/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV_and_Tags.py
new file mode 100644
index 0000000..088ddd7
--- /dev/null
+++ b/apps/ccam/sample_data/20200325_1312/csv_to_excelCSV_and_Tags.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python3
+
+import os
+from os import listdir
+from os.path import isfile, join
+
+inputPath = "./splitted_data/values_20200325_1312_1/"
+inputFile = "out.csv"
+inputTags = "tag.csv"
+outputFileName = "out_excel.csv"
+
+with open(inputPath + "/" + inputFile, 'r') as file:
+ file_content = file.readlines()
+
+ with open
+
+
+ file_content = [f.replace(',', ';') for f in file_content]
+ file_content = [f.replace('.', ',') for f in file_content]
+
+with open(inputPath + "/" + outputFileName, 'w') as file:
+ file.writelines(file_content)
diff --git a/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/config.json b/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/config.json
index 74ecf4a..37b63dc 100644
--- a/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/config.json
+++ b/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/config.json
@@ -1,21 +1,21 @@
{
"OutputFilePath" : "out.csv",
"BrokenCounter" : 20,
"NumberOfSimulationCycles" : 2000,
- "DownsamplingRate" : 5,
+ "DownsamplingRate" : 1,
"SignalConfigurations" :
[
{
"Name" : "value",
"InputPath" : "value.csv",
"Output" : false,
"InnerBound" : 0.01,
"OuterBound" : 0.14,
- "InnerBoundDrift" : 0.10,
- "OuterBoundDrift" : 0.30,
+ "InnerBoundDrift" : 0.00001,
+ "OuterBoundDrift" : 0.0001,
"SampleHistorySize" : 10,
"DABSize" : 10,
"DABHistorySize" : 5
}
]
}
diff --git a/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/out_excel.csv b/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/out_excel.csv
new file mode 100644
index 0000000..c196404
--- /dev/null
+++ b/apps/ccam/sample_data/20200325_1312/splitted_data/values_20200325_1312_1/out_excel.csv
@@ -0,0 +1,2000 @@
+value;StateID;Confidence State Valid;Confidence State Invalid;Confidence Inputs Matching;Confidence Outputs Matching;Confidence Inputs Mismatching;Confidence Outputs Mismatching;State Condition;Confidence System Functioning;Confidence System Malfunctioning;Overall Confidence;
+46,0084;1;0,1;0,9;0;0;1;0;0;1;0;0;
+46,0107;1;0,2;0,8;1;0;1;0;0;1;0;0;
+46,0052;1;0,3;0,7;1;0;1;0;0;1;0;0;
+46,0088;1;0,4;0,6;1;0;1;0;0;1;0;0;
+46,0083;1;0,5;0,5;1;0;1;0;0;1;0;0;
+46,0072;1;0,6;0,4;1;0;1;0;0;1;0;0;
+46,0094;1;0,7;0,3;1;0;1;0;0;1;0;0;
+46,0096;1;0,8;0,2;1;0;1;0;0;1;0;0;
+46,0079;1;0,9;0,1;1;0;1;0;0;1;0;0;
+46,0084;1;1;0;1;0;1;0;0;1;0;0;
+46,0055;1;1;0;1;0;1;0;0;1;0;0;
+46,007;1;1;0;1;0;1;0;0;1;0;0;
+46,0069;1;1;0;1;0;1;0;0;1;0;0;
+46,0097;1;1;0;1;0;1;0;0;1;0;0;
+46,0076;1;1;0;1;0;1;0;0;1;0;0;
+46,0079;1;1;0;1;0;1;0;0;1;0;0;
+46,0095;1;1;0;1;0;1;0;0;1;0;0;
+46,0077;1;1;0;1;0;1;0;0;1;0;0;
+46,0086;1;1;0;1;0;1;0;0;1;0;0;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0099;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0036;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0119;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0062;1;1;0;1;0;1;0;1;1;0;1;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0037;1;1;0;1;0;1;0;1;1;0;1;
+46,0132;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0113;1;1;0;1;0;1;0;1;1;0;1;
+46,0011;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0066;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,008;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0012;1;1;0;1;0;1;0;1;1;0;0,873422;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0056;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,982134;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0113;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0096;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;1;
+46,0083;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0073;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,004;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0058;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,011;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,870658;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0042;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0052;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,007;1;1;0;1;0;1;0;1;1;0;0,940681;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0025;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0132;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0058;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,004;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,983976;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0012;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0051;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0051;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,974764;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,009;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0045;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0058;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,677183;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,007;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,976606;
+46,0102;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0115;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0056;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0073;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0056;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0092;1;1;0;1;0;1;0;1;1;0;1;
+46,0066;1;1;0;1;0;1;0;1;1;0;1;
+46,0043;1;1;0;1;0;1;0;1;1;0;1;
+46,0105;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0056;1;1;0;1;0;1;0;1;1;0;1;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0054;1;1;0;1;0;1;0;1;1;0;0,937912;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,876186;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0103;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0093;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0025;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0066;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,007;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0028;1;1;0;1;0;1;0;1;1;0;1;
+46,0058;1;1;0;1;0;1;0;1;1;0;1;
+46,0053;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0114;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0046;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0052;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,007;1;1;0;1;0;1;0;1;1;0;0,769315;
+46,0128;1;1;0;1;0;1;0;1;1;0;1;
+46,0071;1;1;0;1;0;1;0;1;1;0;1;
+46,007;1;1;0;1;0;1;0;1;1;0;1;
+46,0099;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,0072;1;1;0;1;0;1;0;1;1;0;1;
+46,0079;1;1;0;1;0;1;0;1;1;0;1;
+46,0058;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0096;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0067;1;1;0;1;0;1;0;1;1;0;1;
+46,005;1;1;0;1;0;1;0;1;1;0;1;
+46,0059;1;1;0;1;0;1;0;1;1;0;1;
+46,0066;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0083;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,006;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,808931;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0097;1;1;0;1;0;1;0;1;1;0;1;
+46,0093;1;1;0;1;0;1;0;1;1;0;1;
+46,0067;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0092;1;1;0;1;0;1;0;1;1;0;1;
+46,0061;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,01;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,967393;
+46,0046;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0132;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;1;
+46,0072;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,0093;1;1;0;1;0;1;0;1;1;0;1;
+46,0073;1;1;0;1;0;1;0;1;1;0;1;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0138;1;1;0;1;0;1;0;1;1;0;1;
+46,012;1;1;0;1;0;1;0;1;1;0;1;
+46,0102;1;1;0;1;0;1;0;1;1;0;1;
+46,0103;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0034;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0124;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0137;1;1;0;1;0;1;0;1;1;0;0,719591;
+46,0041;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,007;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,011;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,946209;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0144;1;1;0;1;0;1;0;1;1;0;1;
+46,0117;1;1;0;1;0;1;0;1;1;0;1;
+46,01;1;1;0;1;0;1;0;1;1;0;1;
+46,0095;1;1;0;1;0;1;0;1;1;0;1;
+46,01;1;1;0;1;0;1;0;1;1;0;1;
+46,0088;1;1;0;1;0;1;0;1;1;0;1;
+46,0105;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0125;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,008;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0051;1;1;0;1;0;1;0;1;1;0;0,896463;
+46,0062;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;1;
+46,0068;1;1;0;1;0;1;0;1;1;0;1;
+46,013;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0122;1;1;0;1;0;1;0;1;1;0;1;
+46,0102;1;1;0;1;0;1;0;1;1;0;1;
+46,0115;1;1;0;1;0;1;0;1;1;0;1;
+46,0116;1;1;0;1;0;1;0;1;1;0;1;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0099;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0125;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0135;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,004;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,661556;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,727882;
+46,012;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,008;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,01;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0129;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,64866;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0132;1;1;0;1;0;1;0;1;1;0;0,79605;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,01;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0123;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,722355;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,01;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0147;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0096;1;1;0;1;0;1;0;2;1;0;0,565971;
+46,0137;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0126;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0099;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0094;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,720721;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0074;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0087;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0088;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0139;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,012;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,778751;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0135;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0156;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0141;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0124;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0158;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,584178;
+46,0155;1;1;0;1;0;1;0;2;1;0;1;
+46,0112;1;1;0;1;0;1;0;2;1;0;1;
+46,0114;1;1;0;1;0;1;0;2;1;0;1;
+46,0119;1;1;0;1;0;1;0;2;1;0;1;
+46,0117;1;1;0;1;0;1;0;2;1;0;1;
+46,015;1;1;0;1;0;1;0;2;1;0;1;
+46,0115;1;1;0;1;0;1;0;2;1;0;1;
+46,013;1;1;0;1;0;1;0;2;1;0;1;
+46,0118;1;1;0;1;0;1;0;2;1;0;1;
+46,0139;1;1;0;1;0;1;0;2;1;0;1;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0143;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0117;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0086;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0133;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0128;1;1;0;1;0;1;0;2;1;0;0,805463;
+46,0126;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0144;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0162;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0138;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0108;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,014;1;1;0;1;0;1;0;2;1;0;0,779672;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0136;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,015;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0133;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0176;1;1;0;1;0;1;0;2;1;0;0,961128;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0109;1;1;0;1;0;1;0;2;1;0;1;
+46,0131;1;1;0;1;0;1;0;2;1;0;1;
+46,0134;1;1;0;1;0;1;0;2;1;0;1;
+46,013;1;1;0;1;0;1;0;2;1;0;1;
+46,0103;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0118;1;1;0;1;0;1;0;2;1;0;1;
+46,0155;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0171;1;1;0;1;0;1;0;2;1;0;1;
+46,0117;1;1;0;1;0;1;0;2;1;0;1;
+46,0114;1;1;0;1;0;1;0;2;1;0;1;
+46,0122;1;1;0;1;0;1;0;2;1;0;1;
+46,0132;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0118;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0129;1;1;0;1;0;1;0;2;1;0;1;
+46,0108;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0127;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0149;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0152;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,839544;
+46,0139;1;1;0;1;0;1;0;2;1;0;1;
+46,0089;1;1;0;1;0;1;0;2;1;0;1;
+46,0055;1;1;0;1;0;1;0;2;1;0;1;
+46,009;1;1;0;1;0;1;0;2;1;0;1;
+46,0091;1;1;0;1;0;1;0;2;1;0;1;
+46,008;1;1;0;1;0;1;0;2;1;0;1;
+46,0083;1;1;0;1;0;1;0;2;1;0;1;
+46,0106;1;1;0;1;0;1;0;2;1;0;1;
+46,0076;1;1;0;1;0;1;0;2;1;0;1;
+46,0053;1;1;0;1;0;1;0;2;1;0;1;
+46,0044;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0099;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,005;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,934227;
+46,003;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,008;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0057;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,837491;
+46,0112;1;1;0;1;0;1;0;1;1;0;1;
+46,0061;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0098;1;1;0;1;0;1;0;1;1;0;1;
+46,0044;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,009;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0053;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,01;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,007;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0075;1;1;0;1;0;1;0;1;1;0;1;
+46,006;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0098;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,0112;1;1;0;1;0;1;0;1;1;0;1;
+46,0102;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,0072;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0055;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0052;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0056;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0058;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,913959;
+46,0024;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,011;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,848547;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0056;1;1;0;1;0;1;0;1;1;0;1;
+46,0059;1;1;0;1;0;1;0;1;1;0;1;
+46,0066;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0047;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,0058;1;1;0;1;0;1;0;1;1;0;0,789583;
+46,006;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,006;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0057;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,858681;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0079;1;1;0;1;0;1;0;1;1;0;1;
+46,01;1;1;0;1;0;1;0;1;1;0;1;
+46,0088;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0126;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0102;1;1;0;1;0;1;0;1;1;0;1;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0012;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,01;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,888163;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0099;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0145;1;1;0;1;0;1;0;1;1;0;0,767493;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,009;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0125;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,008;1;1;0;1;0;1;0;1;1;0;0,737094;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0047;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,013;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,012;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,007;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,01;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,0128;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,006;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,009;1;1;0;1;0;1;0;1;1;0;0,845796;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0132;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0113;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0127;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,872511;
+46,0124;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,012;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,668926;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0127;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,676295;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0123;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0122;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0113;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,714985;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,011;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,01;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,011;1;1;0;1;0;1;0;1;1;0;0,607207;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0147;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0115;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,61734;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0128;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0092;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0108;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,012;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,0142;1;1;0;1;0;1;0;2;1;0;0,533731;
+46,012;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0107;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,013;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0087;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0117;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,011;1;1;0;1;0;1;0;2;1;0;0,732696;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0114;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0125;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,520617;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0129;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,011;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0127;1;1;0;1;0;1;0;1;1;0;0,591547;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0138;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,011;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,011;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,575182;
+46,0147;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0144;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0107;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0143;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0142;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,859808;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,009;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0147;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0126;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,012;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0095;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,865335;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0117;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0095;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0148;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0092;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0107;1;1;0;1;0;1;0;2;1;0;0,737301;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0137;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0069;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0147;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0092;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,578867;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0117;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0163;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,663611;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0145;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0172;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0147;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,014;1;1;0;1;0;1;0;2;1;0;0,83586;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0146;1;1;0;1;0;1;0;2;1;0;1;
+46,013;1;1;0;1;0;1;0;2;1;0;1;
+46,0131;1;1;0;1;0;1;0;2;1;0;1;
+46,0113;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0133;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0107;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0112;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0136;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0133;1;1;0;1;0;1;0;2;1;0;1;
+46,0124;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0153;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0149;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0104;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0114;1;1;0;1;0;1;0;2;1;0;1;
+46,0099;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0153;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,0125;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0106;1;1;0;1;0;1;0;2;1;0;1;
+46,0162;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0114;1;1;0;1;0;1;0;2;1;0;1;
+46,0131;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0116;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0131;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,014;1;1;0;1;0;1;0;2;1;0;1;
+46,015;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0133;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,015;1;1;0;1;0;1;0;2;1;0;1;
+46,0138;1;1;0;1;0;1;0;2;1;0;1;
+46,0153;1;1;0;1;0;1;0;2;1;0;1;
+46,0164;1;1;0;1;0;1;0;2;1;0;1;
+46,014;1;1;0;1;0;1;0;2;1;0;1;
+46,015;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0136;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,0103;1;1;0;1;0;1;0;2;1;0;1;
+46,013;1;1;0;1;0;1;0;2;1;0;1;
+46,0144;1;1;0;1;0;1;0;2;1;0;1;
+46,0146;1;1;0;1;0;1;0;2;1;0;1;
+46,0164;1;1;0;1;0;1;0;2;1;0;1;
+46,0171;1;1;0;1;0;1;0;2;1;0;1;
+46,0187;1;1;0;1;0;1;0;2;1;0;1;
+46,0112;1;1;0;1;0;1;0;2;1;0;1;
+46,0159;1;1;0;1;0;1;0;2;1;0;1;
+46,0121;1;1;0;1;0;1;0;2;1;0;1;
+46,013;1;1;0;1;0;1;0;2;1;0;1;
+46,0159;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0156;1;1;0;1;0;1;0;2;1;0;1;
+46,0162;1;1;0;1;0;1;0;2;1;0;1;
+46,0145;1;1;0;1;0;1;0;2;1;0;1;
+46,0177;1;1;0;1;0;1;0;2;1;0;1;
+46,0168;1;1;0;1;0;1;0;2;1;0;1;
+46,0207;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0156;1;1;0;1;0;1;0;2;1;0;1;
+46,0181;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0135;1;1;0;1;0;1;0;2;1;0;1;
+46,0147;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0148;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0107;1;1;0;1;0;1;0;2;1;0;1;
+46,0186;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0136;1;1;0;1;0;1;0;2;1;0;1;
+46,0152;1;1;0;1;0;1;0;2;1;0;1;
+46,0202;1;1;0;1;0;1;0;2;1;0;1;
+46,0148;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0181;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,0147;1;1;0;1;0;1;0;2;1;0;1;
+46,0144;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,018;1;1;0;1;0;1;0;2;1;0;1;
+46,0164;1;1;0;1;0;1;0;2;1;0;1;
+46,015;1;1;0;1;0;1;0;2;1;0;1;
+46,0168;1;1;0;1;0;1;0;2;1;0;1;
+46,0115;1;1;0;1;0;1;0;2;1;0;1;
+46,0162;1;1;0;1;0;1;0;2;1;0;1;
+46,0194;1;1;0;1;0;1;0;2;1;0;1;
+46,0164;1;1;0;1;0;1;0;2;1;0;1;
+46,0201;1;1;0;1;0;1;0;2;1;0;1;
+46,0175;1;1;0;1;0;1;0;2;1;0;1;
+46,0191;1;1;0;1;0;1;0;2;1;0;1;
+46,0178;1;1;0;1;0;1;0;2;1;0;1;
+46,0173;1;1;0;1;0;1;0;2;1;0;1;
+46,018;1;1;0;1;0;1;0;2;1;0;1;
+46,0198;1;1;0;1;0;1;0;2;1;0;1;
+46,0144;1;1;0;1;0;1;0;2;1;0;1;
+46,0175;1;1;0;1;0;1;0;2;1;0;1;
+46,0169;1;1;0;1;0;1;0;2;1;0;1;
+46,017;1;1;0;1;0;1;0;2;1;0;1;
+46,0183;1;1;0;1;0;1;0;2;1;0;1;
+46,0201;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,0202;1;1;0;1;0;1;0;2;1;0;1;
+46,0181;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0163;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0163;1;1;0;1;0;1;0;2;1;0;1;
+46,018;1;1;0;1;0;1;0;2;1;0;1;
+46,0181;1;1;0;1;0;1;0;2;1;0;1;
+46,0138;1;1;0;1;0;1;0;2;1;0;1;
+46,0163;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0221;1;1;0;1;0;1;0;2;1;0;1;
+46,0191;1;1;0;1;0;1;0;2;1;0;1;
+46,0163;1;1;0;1;0;1;0;2;1;0;1;
+46,0179;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0164;1;1;0;1;0;1;0;2;1;0;1;
+46,0211;1;1;0;1;0;1;0;2;1;0;1;
+46,0189;1;1;0;1;0;1;0;2;1;0;1;
+46,0203;1;1;0;1;0;1;0;2;1;0;1;
+46,0177;1;1;0;1;0;1;0;2;1;0;1;
+46,0159;1;1;0;1;0;1;0;2;1;0;1;
+46,0176;1;1;0;1;0;1;0;2;1;0;1;
+46,0182;1;1;0;1;0;1;0;2;1;0;1;
+46,0213;1;1;0;1;0;1;0;2;1;0;1;
+46,0197;1;1;0;1;0;1;0;2;1;0;1;
+46,0204;1;1;0;1;0;1;0;2;1;0;1;
+46,0208;1;1;0;1;0;1;0;2;1;0;1;
+46,0178;1;1;0;1;0;1;0;2;1;0;1;
+46,0213;1;1;0;1;0;1;0;2;1;0;1;
+46,0185;1;1;0;1;0;1;0;2;1;0;1;
+46,0193;1;1;0;1;0;1;0;2;1;0;1;
+46,018;1;1;0;1;0;1;0;2;1;0;1;
+46,0159;1;1;0;1;0;1;0;2;1;0;1;
+46,0199;1;1;0;1;0;1;0;2;1;0;1;
+46,0174;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0245;1;1;0;1;0;1;0;2;1;0;1;
+46,0179;1;1;0;1;0;1;0;2;1;0;1;
+46,0171;1;1;0;1;0;1;0;2;1;0;1;
+46,0199;1;1;0;1;0;1;0;2;1;0;1;
+46,0246;1;1;0;1;0;1;0;2;1;0;1;
+46,0188;1;1;0;1;0;1;0;2;1;0;1;
+46,0209;1;1;0;1;0;1;0;2;1;0;1;
+46,018;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0218;1;1;0;1;0;1;0;2;1;0;1;
+46,023;1;1;0;1;0;1;0;2;1;0;1;
+46,0243;1;1;0;1;0;1;0;2;1;0;1;
+46,0204;1;1;0;1;0;1;0;2;1;0;1;
+46,0206;1;1;0;1;0;1;0;2;1;0;1;
+46,0197;1;1;0;1;0;1;0;2;1;0;1;
+46,0175;1;1;0;1;0;1;0;2;1;0;1;
+46,0195;1;1;0;1;0;1;0;2;1;0;1;
+46,0202;1;1;0;1;0;1;0;2;1;0;1;
+46,0104;1;1;0;1;0;1;0;2;1;0;1;
+46,0167;1;1;0;1;0;1;0;2;1;0;1;
+46,0205;1;1;0;1;0;1;0;2;1;0;1;
+46,0228;1;1;0;1;0;1;0;2;1;0;1;
+46,0236;1;1;0;1;0;1;0;2;1;0;1;
+46,0183;1;1;0;1;0;1;0;2;1;0;1;
+46,0214;1;1;0;1;0;1;0;2;1;0;1;
+46,0227;1;1;0;1;0;1;0;2;1;0;1;
+46,021;1;1;0;1;0;1;0;2;1;0;1;
+46,0193;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0205;1;1;0;1;0;1;0;2;1;0;1;
+46,0199;1;1;0;1;0;1;0;2;1;0;1;
+46,0202;1;1;0;1;0;1;0;2;1;0;1;
+46,0222;1;1;0;1;0;1;0;2;1;0;1;
+46,0204;1;1;0;1;0;1;0;2;1;0;1;
+46,0214;1;1;0;1;0;1;0;2;1;0;1;
+46,0215;1;1;0;1;0;1;0;2;1;0;1;
+46,0176;1;1;0;1;0;1;0;2;1;0;1;
+46,0209;1;1;0;1;0;1;0;2;1;0;1;
+46,0208;1;1;0;1;0;1;0;2;1;0;1;
+46,0205;1;1;0;1;0;1;0;2;1;0;1;
+46,0219;1;1;0;1;0;1;0;2;1;0;1;
+46,0203;1;1;0;1;0;1;0;2;1;0;1;
+46,0195;1;1;0;1;0;1;0;2;1;0;1;
+46,0188;1;1;0;1;0;1;0;2;1;0;1;
+46,022;1;1;0;1;0;1;0;2;1;0;1;
+46,0205;1;1;0;1;0;1;0;2;1;0;1;
+46,0213;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0185;1;1;0;1;0;1;0;2;1;0;1;
+46,0186;1;1;0;1;0;1;0;2;1;0;1;
+46,0155;1;1;0;1;0;1;0;2;1;0;1;
+46,0188;1;1;0;1;0;1;0;2;1;0;1;
+46,0232;1;1;0;1;0;1;0;2;1;0;1;
+46,0189;1;1;0;1;0;1;0;2;1;0;1;
+46,0208;1;1;0;1;0;1;0;2;1;0;1;
+46,0178;1;1;0;1;0;1;0;2;1;0;1;
+46,0193;1;1;0;1;0;1;0;2;1;0;1;
+46,0203;1;1;0;1;0;1;0;2;1;0;1;
+46,019;1;1;0;1;0;1;0;2;1;0;1;
+46,0201;1;1;0;1;0;1;0;2;1;0;1;
+46,0194;1;1;0;1;0;1;0;2;1;0;1;
+46,023;1;1;0;1;0;1;0;2;1;0;1;
+46,0211;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0186;1;1;0;1;0;1;0;2;1;0;1;
+46,0127;1;1;0;1;0;1;0;2;1;0;1;
+46,0198;1;1;0;1;0;1;0;2;1;0;1;
+46,0184;1;1;0;1;0;1;0;2;1;0;1;
+46,0169;1;1;0;1;0;1;0;2;1;0;1;
+46,0222;1;1;0;1;0;1;0;2;1;0;1;
+46,0188;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0229;1;1;0;1;0;1;0;2;1;0;1;
+46,0172;1;1;0;1;0;1;0;2;1;0;1;
+46,0199;1;1;0;1;0;1;0;2;1;0;1;
+46,022;1;1;0;1;0;1;0;2;1;0;1;
+46,0187;1;1;0;1;0;1;0;2;1;0;1;
+46,0182;1;1;0;1;0;1;0;2;1;0;1;
+46,019;1;1;0;1;0;1;0;2;1;0;1;
+46,0188;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0145;1;1;0;1;0;1;0;2;1;0;1;
+46,0222;1;1;0;1;0;1;0;2;1;0;1;
+46,0203;1;1;0;1;0;1;0;2;1;0;1;
+46,0204;1;1;0;1;0;1;0;2;1;0;1;
+46,0176;1;1;0;1;0;1;0;2;1;0;1;
+46,0191;1;1;0;1;0;1;0;2;1;0;1;
+46,0191;1;1;0;1;0;1;0;2;1;0;1;
+46,0185;1;1;0;1;0;1;0;2;1;0;1;
+46,0176;1;1;0;1;0;1;0;2;1;0;1;
+46,0182;1;1;0;1;0;1;0;2;1;0;1;
+46,0205;1;1;0;1;0;1;0;2;1;0;1;
+46,0187;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,014;1;1;0;1;0;1;0;2;1;0;1;
+46,0202;1;1;0;1;0;1;0;2;1;0;1;
+46,0207;1;1;0;1;0;1;0;2;1;0;1;
+46,0215;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0223;1;1;0;1;0;1;0;2;1;0;1;
+46,0172;1;1;0;1;0;1;0;2;1;0;1;
+46,0168;1;1;0;1;0;1;0;2;1;0;1;
+46,017;1;1;0;1;0;1;0;2;1;0;1;
+46,0168;1;1;0;1;0;1;0;2;1;0;1;
+46,0177;1;1;0;1;0;1;0;2;1;0;1;
+46,0133;1;1;0;1;0;1;0;2;1;0;1;
+46,0194;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0185;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,0171;1;1;0;1;0;1;0;2;1;0;1;
+46,0196;1;1;0;1;0;1;0;2;1;0;1;
+46,0155;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0169;1;1;0;1;0;1;0;2;1;0;1;
+46,0171;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0155;1;1;0;1;0;1;0;2;1;0;1;
+46,0172;1;1;0;1;0;1;0;2;1;0;1;
+46,0191;1;1;0;1;0;1;0;2;1;0;1;
+46,0167;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0156;1;1;0;1;0;1;0;2;1;0;1;
+46,0148;1;1;0;1;0;1;0;2;1;0;1;
+46,0207;1;1;0;1;0;1;0;2;1;0;1;
+46,016;1;1;0;1;0;1;0;2;1;0;1;
+46,0198;1;1;0;1;0;1;0;2;1;0;1;
+46,0194;1;1;0;1;0;1;0;2;1;0;1;
+46,0158;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,0165;1;1;0;1;0;1;0;2;1;0;1;
+46,0154;1;1;0;1;0;1;0;2;1;0;1;
+46,0113;1;1;0;1;0;1;0;2;1;0;1;
+46,0123;1;1;0;1;0;1;0;2;1;0;1;
+46,0143;1;1;0;1;0;1;0;2;1;0;1;
+46,0139;1;1;0;1;0;1;0;2;1;0;1;
+46,0139;1;1;0;1;0;1;0;2;1;0;1;
+46,0162;1;1;0;1;0;1;0;2;1;0;1;
+46,0135;1;1;0;1;0;1;0;2;1;0;1;
+46,0194;1;1;0;1;0;1;0;2;1;0;1;
+46,0134;1;1;0;1;0;1;0;2;1;0;1;
+46,0134;1;1;0;1;0;1;0;2;1;0;1;
+46,0192;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0128;1;1;0;1;0;1;0;2;1;0;1;
+46,0149;1;1;0;1;0;1;0;2;1;0;1;
+46,0149;1;1;0;1;0;1;0;2;1;0;1;
+46,012;1;1;0;1;0;1;0;2;1;0;1;
+46,0144;1;1;0;1;0;1;0;2;1;0;1;
+46,0118;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0157;1;1;0;1;0;1;0;2;1;0;1;
+46,0113;1;1;0;1;0;1;0;2;1;0;1;
+46,0129;1;1;0;1;0;1;0;2;1;0;1;
+46,0141;1;1;0;1;0;1;0;2;1;0;1;
+46,0133;1;1;0;1;0;1;0;2;1;0;1;
+46,0142;1;1;0;1;0;1;0;2;1;0;1;
+46,0119;1;1;0;1;0;1;0;2;1;0;1;
+46,0145;1;1;0;1;0;1;0;2;1;0;1;
+46,0137;1;1;0;1;0;1;0;2;1;0;1;
+46,0076;1;1;0;1;0;1;0;2;1;0;1;
+46,0162;1;1;0;1;0;1;0;2;1;0;1;
+46,0129;1;1;0;1;0;1;0;2;1;0;1;
+46,0151;1;1;0;1;0;1;0;2;1;0;1;
+46,0138;1;1;0;1;0;1;0;2;1;0;1;
+46,0106;1;1;0;1;0;1;0;2;1;0;1;
+46,0151;1;1;0;1;0;1;0;2;1;0;1;
+46,0124;1;1;0;1;0;1;0;2;1;0;1;
+46,0081;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0127;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0133;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0138;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0096;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,89481;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0079;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0098;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0107;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,012;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,6544;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0051;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,006;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,011;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,532592;
+46,009;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,893699;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,007;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,007;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,973846;
+46,0096;1;1;0;1;0;1;0;1;1;0;1;
+46,0105;1;1;0;1;0;1;0;1;1;0;1;
+46,0088;1;1;0;1;0;1;0;1;1;0;1;
+46,0055;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0083;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0059;1;1;0;1;0;1;0;1;1;0;1;
+46,0035;1;1;0;1;0;1;0;1;1;0;1;
+46,011;1;1;0;1;0;1;0;1;1;0;1;
+46,0053;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0047;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,903825;
+46,0099;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,007;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0037;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,005;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0054;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0037;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,006;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0046;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0034;1;1;0;1;0;1;0;1;1;0;0,748124;
+46,0054;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0068;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0074;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0047;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0048;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0036;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0041;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,670169;
+46,0051;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0016;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0056;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0026;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0043;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0049;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0049;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,003;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0033;1;1;0;1;0;1;0;1;1;0;0,516869;
+46,0067;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0046;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0038;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,004;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0032;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0024;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,006;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0063;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0026;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0035;1;1;0;1;0;1;0;2;1;0;0,836021;
+46,0033;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0024;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0031;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0032;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0072;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,003;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0032;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0012;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0052;1;1;0;1;0;1;0;2;1;0;0,961335;
+46,0056;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0035;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0092;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0055;1;1;0;1;0;1;0;2;1;0;0,954885;
+45,9989;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0044;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0034;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0043;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0035;1;1;0;1;0;1;0;2;1;0;0,954885;
+46,0041;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0047;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0031;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0046;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0018;1;1;0;1;0;1;0;2;1;0;0,885778;
+45,9999;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,005;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0061;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0048;1;1;0;1;0;1;0;2;1;0;0,885778;
+46,0046;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0021;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0017;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0076;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,004;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0087;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,004;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0027;1;1;0;1;0;1;0;2;1;0;0,943827;
+46,0048;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0039;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0015;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0052;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0041;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0002;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0099;1;1;0;1;0;1;0;2;1;0;0,782579;
+45,9974;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0039;1;1;0;1;0;1;0;2;1;0;0,782579;
+46,0016;1;1;0;1;0;1;0;2;1;0;1;
+46,0037;1;1;0;1;0;1;0;2;1;0;1;
+46,0044;1;1;0;1;0;1;0;2;1;0;1;
+46,0051;1;1;0;1;0;1;0;2;1;0;1;
+46,0048;1;1;0;1;0;1;0;2;1;0;1;
+46,0082;1;1;0;1;0;1;0;2;1;0;1;
+46,0039;1;1;0;1;0;1;0;2;1;0;1;
+46,0043;1;1;0;1;0;1;0;2;1;0;1;
+46,0044;1;1;0;1;0;1;0;2;1;0;1;
+46,0052;1;1;0;1;0;1;0;2;1;0;1;
+46,004;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0061;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0095;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0034;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,003;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0042;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,004;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0071;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0058;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0052;1;1;0;1;0;1;0;2;1;0;0,754937;
+46,0069;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0037;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0055;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,003;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0079;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0019;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0051;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0035;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0045;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0029;1;1;0;1;0;1;0;2;1;0;0,58356;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0059;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,002;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0034;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0056;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0042;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0046;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0031;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0054;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0047;1;1;0;1;0;1;0;2;1;0;0,72361;
+46,0047;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0055;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0021;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0077;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0066;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0057;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0069;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0063;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0066;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,0062;1;1;0;1;0;1;0;2;1;0;0,863663;
+46,007;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0041;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,008;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0056;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0035;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0046;1;1;0;1;0;1;0;1;1;0;0,545431;
+46,0054;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,004;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0054;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0057;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,649543;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0032;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0025;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0032;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0047;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,007;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,705744;
+46,0069;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0075;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0087;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0092;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0073;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0097;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0062;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0053;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0078;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0068;1;1;0;1;0;1;0;2;1;0;0,533806;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,965551;
+46,0167;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,011;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0114;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,01;1;1;0;1;0;1;0;1;1;0;0,975688;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0129;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0044;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,008;1;1;0;1;0;1;0;1;1;0;0,995955;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,008;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,01;1;1;0;1;0;1;0;1;1;0;0,859614;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,009;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,009;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0121;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,013;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,983058;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0154;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,779469;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0106;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0123;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0129;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0134;1;1;0;1;0;1;0;1;1;0;0,632079;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0141;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0113;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,558385;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0094;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,011;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,0107;1;1;0;1;0;1;0;2;1;0;0,530046;
+46,012;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0089;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0148;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0157;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0082;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,013;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,607422;
+46,0123;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0128;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,012;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0095;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0128;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0135;1;1;0;1;0;1;0;2;1;0;0,754802;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0129;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,009;1;1;0;1;0;1;0;2;1;0;0,726248;
+46,0149;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0136;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0126;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0137;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0141;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0108;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0142;1;1;0;1;0;1;0;2;1;0;0,843228;
+46,0136;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0136;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,012;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0118;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0138;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0096;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0094;1;1;0;1;0;1;0;2;1;0;0,983234;
+46,0113;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0099;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0131;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0145;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0155;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0142;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0134;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,674665;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,01;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0132;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0139;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0068;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,011;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,004;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,0121;1;1;0;1;0;1;0;2;1;0;0,914153;
+46,011;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0122;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0135;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0145;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0149;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0156;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0086;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0098;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,012;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0099;1;1;0;1;0;1;0;2;1;0;0,775067;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,005;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0094;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0104;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0124;1;1;0;1;0;1;0;2;1;0;0,555838;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0101;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,012;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0131;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0119;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0113;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,677216;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0082;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0091;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,008;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0125;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0115;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0111;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0112;1;1;0;1;0;1;0;2;1;0;0,510702;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0116;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0146;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0117;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0138;1;1;0;1;0;1;0;1;1;0;0,633921;
+46,0091;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0096;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0089;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0098;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0082;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,01;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0104;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0116;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0105;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0106;1;1;0;1;0;1;0;2;1;0;0,567813;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0131;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0133;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0145;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,01;1;1;0;1;0;1;0;1;1;0;0,7417;
+46,0101;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0114;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0108;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0098;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0099;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0102;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0122;1;1;0;1;0;1;0;2;1;0;0,500569;
+46,0119;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0087;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0096;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0085;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0103;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0076;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0062;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0084;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0109;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0084;1;1;0;1;0;1;0;2;1;0;0,522677;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0071;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0106;1;1;0;1;0;1;0;1;1;0;1;
+46,0103;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0099;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0096;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0111;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,974767;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0042;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0108;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0088;1;1;0;1;0;1;0;1;1;0;0,784075;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0081;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,01;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0033;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,0105;1;1;0;1;0;1;0;1;1;0;0,979373;
+46,009;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,007;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,006;1;1;0;1;0;1;0;1;1;0;0,937918;
+46,0096;1;1;0;1;0;1;0;1;1;0;1;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0078;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0112;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0105;1;1;0;1;0;1;0;1;1;0;1;
+46,0098;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0057;1;1;0;1;0;1;0;1;1;0;1;
+46,0088;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,0101;1;1;0;1;0;1;0;1;1;0;1;
+46,0134;1;1;0;1;0;1;0;1;1;0;1;
+46,009;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0079;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0099;1;1;0;1;0;1;0;1;1;0;1;
+46,0059;1;1;0;1;0;1;0;1;1;0;1;
+46,0053;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,005;1;1;0;1;0;1;0;1;1;0;1;
+46,0078;1;1;0;1;0;1;0;1;1;0;1;
+46,0054;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0062;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0094;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,007;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,008;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,742596;
+46,0108;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,0062;1;1;0;1;0;1;0;1;1;0;1;
+46,0083;1;1;0;1;0;1;0;1;1;0;1;
+46,0079;1;1;0;1;0;1;0;1;1;0;1;
+46,0067;1;1;0;1;0;1;0;1;1;0;1;
+46,0064;1;1;0;1;0;1;0;1;1;0;1;
+46,0077;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0103;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,926857;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0046;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0063;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0083;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0098;1;1;0;1;0;1;0;1;1;0;0,992268;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0059;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0126;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0073;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0079;1;1;0;1;0;1;0;1;1;0;0,897376;
+46,0084;1;1;0;1;0;1;0;1;1;0;1;
+46,006;1;1;0;1;0;1;0;1;1;0;1;
+46,0034;1;1;0;1;0;1;0;1;1;0;1;
+46,0072;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,007;1;1;0;1;0;1;0;1;1;0;1;
+46,0079;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0103;1;1;0;1;0;1;0;1;1;0;1;
+46,0107;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0056;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0061;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0112;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0047;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,948968;
+46,0044;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0089;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0118;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0104;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,726934;
+46,0102;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,009;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0095;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0149;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,94713;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,01;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0039;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,008;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0065;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,006;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0045;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,948051;
+46,007;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,009;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0097;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,008;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,009;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,0069;1;1;0;1;0;1;0;1;1;0;0,806167;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0098;1;1;0;1;0;1;0;1;1;0;1;
+46,0112;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0099;1;1;0;1;0;1;0;1;1;0;1;
+46,0089;1;1;0;1;0;1;0;1;1;0;1;
+46,0067;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;1;
+46,0054;1;1;0;1;0;1;0;1;1;0;1;
+46,0081;1;1;0;1;0;1;0;1;1;0;1;
+46,0093;1;1;0;1;0;1;0;1;1;0;1;
+46,0095;1;1;0;1;0;1;0;1;1;0;1;
+46,0074;1;1;0;1;0;1;0;1;1;0;1;
+46,0082;1;1;0;1;0;1;0;1;1;0;1;
+46,0057;1;1;0;1;0;1;0;1;1;0;1;
+46,0063;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,012;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0046;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0087;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,007;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0071;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0077;1;1;0;1;0;1;0;1;1;0;0,984898;
+46,0094;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;1;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,01;1;1;0;1;0;1;0;1;1;0;1;
+46,0062;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,0086;1;1;0;1;0;1;0;1;1;0;1;
+46,009;1;1;0;1;0;1;0;1;1;0;1;
+46,0073;1;1;0;1;0;1;0;1;1;0;1;
+46,0093;1;1;0;1;0;1;0;1;1;0;1;
+46,0076;1;1;0;1;0;1;0;1;1;0;1;
+46,0078;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,008;1;1;0;1;0;1;0;1;1;0;1;
+46,009;1;1;0;1;0;1;0;1;1;0;1;
+46,0069;1;1;0;1;0;1;0;1;1;0;1;
+46,0065;1;1;0;1;0;1;0;1;1;0;1;
+46,0049;1;1;0;1;0;1;0;1;1;0;1;
+46,0121;1;1;0;1;0;1;0;1;1;0;1;
+46,0056;1;1;0;1;0;1;0;1;1;0;1;
+46,0091;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,006;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0092;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0066;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,009;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,008;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0078;1;1;0;1;0;1;0;1;1;0;0,963708;
+46,0086;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0074;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0043;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0064;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0052;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0084;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,011;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0072;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0082;1;1;0;1;0;1;0;1;1;0;0,925014;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0055;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0075;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0085;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0093;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,008;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0068;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0076;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0067;1;1;0;1;0;1;0;1;1;0;0,852232;
+46,0109;1;1;0;1;0;1;0;1;1;0;0,852232;

File Metadata

Mime Type
text/x-diff
Expires
Fri, May 16, 2:01 PM (2 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
141453
Default Alt Text
(76 KB)

Event Timeline