diff --git a/.gitignore b/.gitignore index a82a03efcac6e226414bca534f1ec70a2f83109d..6dd0f502e129e47062ee5eb2bd239a49cde881cc 100755 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ experiment_automatization/can_be_reused/*RESULTS* experiment_automatization/can_be_reused/exploring_energy_computation/output_folder/000021-1-1__experiment_folder__27Jul22_17_11_33/configuration_mesurement.csv experiment_automatization/can_be_reused/old_tools/output_folder_to_test_monsoon_sampling_reduction/ experiment_automatization/can_be_reused/old_tools/FIRST_RESULTS_Energy_in_mWs_for_tests +experiment_automatization/can_be_reused/old_tools/*RESULTS* +experiment_automatization/can_be_reused/old_tools/trash diff --git a/connect_to_Mr_Tu b/connect_to_Mr_Tu index 78f44b583d2493028d2fbcbf8ed8325e3e5aeb69..0a655ab5d696addeeab947785264f5149af43889 100755 --- a/connect_to_Mr_Tu +++ b/connect_to_Mr_Tu @@ -932,7 +932,11 @@ Salut Vlad, as tu eu la confirmation que la clé est arrivée sur Chasse-sur-Rh 2 - A propos de la clé, je prévois aller la récupérer demain dans l'après midi car j'étais un peu pris aujourd'hui. Si j'ai un soucis une fois sur place je pourrais te contacter vers 17h. -[1] Code de parsing des résultats nettoyé -[2] Dossier d'automatisation restructuré -[3] Boucle d'exécution des expés sur toutes les configurations -[4] La vérification du format du fichier des configuration passé en input. \ No newline at end of file +[1] Code de parsing des résultats nettoyé https://gitlab.liris.cnrs.fr/plwapet/scripts_and_relevant_files/-/blob/main/experiment_automatization/experiment_process_for_a_single_configuration.sh#L79 +[2] Dossier d'automatisation restructuré https://gitlab.liris.cnrs.fr/plwapet/scripts_and_relevant_files/-/tree/main/experiment_automatization +[3] Boucle d'exécution des expés sur toutes les configurations https://gitlab.liris.cnrs.fr/plwapet/scripts_and_relevant_files/-/blob/main/experiment_automatization/run_experiments.sh#L118 +[4] La vérification du format du fichier des configuration passé en input. https://gitlab.liris.cnrs.fr/plwapet/scripts_and_relevant_files/-/blob/main/experiment_automatization/run_experiments.sh#L95 + + + +Intel type Intel64 Family 6 Model 140 Stepping 1 CPU0 1805 11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz 4 OK \ No newline at end of file diff --git a/experiment_automatization/can_be_reused/generate_configurations.py b/experiment_automatization/can_be_reused/generate_configurations.py index c9279629b6ab1d5d949d4f5d70465f6013643f64..7ac72c2bb25fda45c7afa50647aa6f564b678ec7 100755 --- a/experiment_automatization/can_be_reused/generate_configurations.py +++ b/experiment_automatization/can_be_reused/generate_configurations.py @@ -235,7 +235,7 @@ def substract_already_tested_configurations (number_of_combinaison = 40, number_ print("--- Outpuf file = ", output_file_path) -number_of_combinaison = 200 +number_of_combinaison = 40 number_of_cores = 8 substract_already_tested_configurations (number_of_combinaison, number_of_cores, possible_values = [0,1,2,3], diff --git a/experiment_automatization/can_be_reused/old_tools/reduce_moonson_sample.py b/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.py similarity index 82% rename from experiment_automatization/can_be_reused/old_tools/reduce_moonson_sample.py rename to experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.py index f3eaa86069621290c328da64bb443585c79c8654..5a4ec3ff41b154ccd7fd44e8242aa3152e50c5da 100755 --- a/experiment_automatization/can_be_reused/old_tools/reduce_moonson_sample.py +++ b/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.py @@ -17,8 +17,8 @@ import sys as sys # sys.argv[3] = new_mesurement_file name -print ("--- Inside the reduce_moonson_sample, arg function: ", sys.argv[1]) -print("python call is find") +#print ("--- Inside the reduce_moonson_sample, arg function: ", sys.argv[1]) +#print("--- Python call is find") def reduce_samples_datas_in_one_file(mesurement_file_path, new_mesurement_file_path): with open(new_mesurement_file_path,'w') as output_file: string_to_write_in_file = "Time(ms),USB Current(mA),USB Voltage(V)," @@ -65,8 +65,8 @@ def reduce_samples_datas_in_one_file(mesurement_file_path, new_mesurement_file_p timeStampToWrite = (timeStampToWrite + timeStamp)/2 CurrentToWrite = CurrentToWrite / 125 VoltageToWrite = VoltageToWrite / 125 - print(" Mesurement at time " + repr(timeStamp) + ", USB Current: " + repr(Current) + " mA, USBVoltage" + repr(Voltage) + " V") - print(" Mesurement to write in file at time " + repr(timeStampToWrite) + ", USB Current: " + repr(CurrentToWrite) + " mA, USBVoltage" + repr(VoltageToWrite) + " V") + #print(" Mesurement at time " + repr(timeStamp) + ", USB Current: " + repr(Current) + " mA, USBVoltage" + repr(Voltage) + " V") + #print(" Mesurement to write in file at time " + repr(timeStampToWrite) + ", USB Current: " + repr(CurrentToWrite) + " mA, USBVoltage" + repr(VoltageToWrite) + " V") output_file.write("\n" + repr(timeStampToWrite) + "," + repr(CurrentToWrite) + "," + repr(VoltageToWrite) + ",") timeStampToWrite = timeStamp CurrentToWrite=0 @@ -81,14 +81,15 @@ def reduce_samples_datas_in_one_file(mesurement_file_path, new_mesurement_file_p -def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samples_per_second_): +def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file_path, number_of_samples_per_second_): result = "" - number_of_mi_sample_per_second = number_of_samples_per_second_/2 + number_of_samples_per_second = int(number_of_samples_per_second_) + number_of_sample_per_mi_second = number_of_samples_per_second / 2 + tag = "--- Recomputing powermeter_summary_from_mWs_to_mAh" - - print (" --- Getting data from file ", mesurement_file_path) + #print (" --- Getting data from file ", mesurement_file_path) counter=0 part_to_drop=2 @@ -107,6 +108,7 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp if not line: break if(part_to_drop != 0): # There where an error in the automatization script, it added the calibration result to the overall one + #print("--- Dropping datas :", line) line_data_ = line.split(",") line_data_ = line_data_[:len(line_data_)-1] string_=line_data_[0] @@ -115,27 +117,33 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp continue if(first_line==1): first_line=0 - print("--- Reading the line :", line) + #print("--- Reading the line :", line) line_data_ = line.split(",") line_data_ = line_data_[:len(line_data_)-1] - print("--- converting :", repr(line_data_)) + #print("--- converting :", repr(line_data_)) line_data = [float(numeric_string) for numeric_string in line_data_] firstTimeStamp = line_data[0] + #print("--- First time :", firstTimeStamp) continue + #print("--- Reading the line :", line) line_data_ = line.split(",") line_data_ = line_data_[:len(line_data_)-1] # to remove the \n at the end line_data = [float(numeric_string) for numeric_string in line_data_] timeStamp = line_data[0] Current = line_data[1] Voltage = line_data[2] - if i % number_of_sample_per_second == number_of_mi_sample_per_second: # because we integrete the energy at unit of time ie second per second, not at every sampling (200us), + #print("--- Reading the line :" + str(counter) + ", Current = " + str(Current) + " Voltage = " + str(Voltage)) + if (counter % number_of_samples_per_second == number_of_sample_per_mi_second): # because we integrete the energy at unit of time ie second per second, not at every sampling (200us), + energy_consumption_mW_seconds = energy_consumption_mW_seconds + Current * Voltage energy_consumption_mA_seconds = energy_consumption_mA_seconds + Current number_of_samples_used_to_compute_energy = number_of_samples_used_to_compute_energy + 1 - print( tag + " --- We computed the energy on " + str(number_of_samples_used_to_compute_energy) + " samples") - energy_consumption_mW_h = energy_consumption_mW_seconds / 3600 - energy_consumption_mA_h = energy_consumption_mA_seconds / 3600 + #print( tag + " Aggregating energy mAs " + str(energy_consumption_mA_seconds) + ", Number of aggregation " + str(number_of_samples_used_to_compute_energy)) counter = counter+1 + + #print( tag + " --- We computed the energy on " + str(number_of_samples_used_to_compute_energy) + " samples") + energy_consumption_mW_h = energy_consumption_mW_seconds / 3600 + energy_consumption_mA_h = energy_consumption_mA_seconds / 3600 number_of_samples = counter exact_duration = timeStamp - firstTimeStamp @@ -143,14 +151,18 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp average_current=0 average_voltage=0 - + #print("--- Getting average current and voltage") + mesurement_file = open(mesurement_file_path, 'r') counter=0 + part_to_drop=2 + first_line=1 while True: line = mesurement_file.readline() if not line: break if(part_to_drop != 0): # There where an error in the automatization script, it added the calibration result to the overall one + #("--- Dropping datas :", line) line_data_ = line.split(",") line_data_ = line_data_[:len(line_data_)-1] string_=line_data_[0] @@ -159,10 +171,10 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp continue if(first_line==1): first_line=0 - print("--- Reading the line :", line) + #print("--- Reading the line :", line) line_data_ = line.split(",") line_data_ = line_data_[:len(line_data_)-1] - print("--- converting :", repr(line_data_)) + #print("--- converting :", repr(line_data_)) line_data = [float(numeric_string) for numeric_string in line_data_] firstTimeStamp = line_data[0] continue @@ -175,19 +187,19 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp average_current = average_current + Current average_voltage = average_voltage + Voltage counter = counter + 1 - if (counter == number_of_measurements/2): - instantanious_current= Current + if (counter == number_of_samples/2): + instantanious_current = Current average_current = average_current/number_of_samples average_voltage = average_voltage/number_of_samples - average_power = average_current*average_voltage + average_power = average_current * average_voltage - print(tag + "average_power = ", average_power) - print(tag + "average_power with numpy arrays = ", average_power_) - + #print(tag + " average_power = ", average_power) + #print(tag + " average_voltage = ", str(average_voltage)) + average_voltage_ = str(average_voltage) result = ("time (s): " + repr(exact_duration) + - "\nIns Current (mA):" + instantanious_current + ## for floor division, just to have an idea of the current during experiment, I don't know if it the same explanation in powermeter summary window. + "\nIns Current (mA):" + repr(instantanious_current) + ## for floor division, just to have an idea of the current during experiment, I don't know if it the same explanation in powermeter summary window. "\nSamples: " + repr(number_of_samples) + "\nConsumed Energy (mAs): " + repr(energy_consumption_mA_seconds) + "\nConsumed Energy (mAh): " + repr(energy_consumption_mA_h) + @@ -197,7 +209,7 @@ def recompute_powermeter_summary_from_mWs_to_mAh(mesurement_file, number_of_samp "\nAvg Current (mA): " + repr(average_current) + "\nAvg Voltage (V): " + repr(average_voltage) + "\nExp Batt Life (hrs for 1000mAh battery): NOT COMPUTED " ) - print (tag + "Summary Result = "+ result) + #print (tag + "Summary Result = "+ result) return result @@ -207,9 +219,10 @@ if (sys.argv[1] == "1"): print (" --- Reducing monsoon sample, mesurement file = " + sys.argv[2] ) print (" --- Reducing monsoon sample, output mesurement file = " + sys.argv[3] ) reduce_samples_datas_in_one_file(sys.argv[2], sys.argv[3]) -elif (sys.argv[1] == 2): - print("Nothing to do for now") - recompute_powermeter_summary_from_mWs_to_mAh(sys.argv[2], sys.argv[3]): +elif (sys.argv[1] == "2"): + #print (" --- Recomputing powermeter summary, experiment file = " + sys.argv[2] ) + #print (" --- Recomputing powermeter summary, number of samples per second = " + sys.argv[3] ) + print(recompute_powermeter_summary_from_mWs_to_mAh(sys.argv[2], sys.argv[3])) diff --git a/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.sh b/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.sh index 20be678d79036d2a672befc2bf725c15a8b95dea..59c44ba8227f067387c2318f0751c6cf1d582af0 100755 --- a/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.sh +++ b/experiment_automatization/can_be_reused/old_tools/reduce_moonson_samples.sh @@ -10,8 +10,9 @@ AUTOMATIZATION_PROJECT_PATH="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization" PROJECT_TRASH_FOLDER="${AUTOMATIZATION_PROJECT_PATH}/can_be_reused/old_tools/trash" AUTOMATIZATION_PROJECT_PATH_WINDOWS_SYNTAX="C:\Users\lavoi\opportunist_task_on_android\scripts_valuable_files\experiment_automatization" -reduce_moonson_sample_py_script="${AUTOMATIZATION_PROJECT_PATH_WINDOWS_SYNTAX}\can_be_reused\old_tools\reduce_moonson_sample.py" +reduce_moonson_sample_py_script="${AUTOMATIZATION_PROJECT_PATH_WINDOWS_SYNTAX}\can_be_reused\old_tools\reduce_moonson_samples.py" python_exe_='C:\Program Files\Python35\python.exe' +current_app_output_folder_inside_the_phone="app_output_folder" # Loading libraries echo "--- Loading utils.sh library .... " sleep 1 @@ -29,19 +30,20 @@ freq_dict_of_medium_socket_google_pixel=([0]="0" [1]="652800" [2]="1478400" [3]= freq_dict_of_big_socket_google_pixel=([0]="0" [1]="806400" [2]="1766400" [3]="2400000") -function reduce_samples_datas_in_second_experiments(){ +function reduce_many_samples_folders(){ experiment_output_folder_=$1 for current_configuration_directory in $experiment_output_folder_/*/ ; do echo "--- Processing configutation directory $current_configuration_directory" mesurement_file=${current_configuration_directory}configuration_mesurement.csv - new_mesurement_file=${mesurement_file::-4}__compressed.csv ###################################### + new_mesurement_file=${mesurement_file::-4}__reduced.csv ###################################### echo "--- 0 - Mesurement file $mesurement_file" #PROJECT_PATH="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization" #PROJECT_PATH_WINDOWS_SYNTAX="C:\Users\lavoi\opportunist_task_on_android\scripts_valuable_files\experiment_automatization" - rm $new_mesurement_file - echo "No" > $new_mesurement_file + touch $new_mesurement_file + #echo "No" > $new_mesurement_file + mesurement_file_to_move=$mesurement_file mesurement_file=$(echo $mesurement_file | sed 's/\//\\/g') #$(echo $mesurement_file | sed "s///\\/") echo "--- 1 - Mesurement file $mesurement_file" mesurement_file=$(echo $mesurement_file | sed 's/\\mnt\\c/C:/g') @@ -59,8 +61,13 @@ function reduce_samples_datas_in_second_experiments(){ #cmd.exe /c "${python_exe_}" ${monson_power_meter_script_} 1 $monsonn_output_voltage_ $calibration_duration_ $csv_output_file_ echo "command : cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 1 $mesurement_file $new_mesurement_file " - cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 1 $mesurement_file "$new_mesurement_file" - sleep 5 + #/mnt/c/Windows/SysWOW64/cmd.exe /c dir "${new_mesurement_file}" + /mnt/c/Windows/SysWOW64/cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 1 $mesurement_file "$new_mesurement_file" + echo "--- Romoving the havy measurement file" + mv $mesurement_file_to_move $PROJECT_TRASH_FOLDER + sleep 2 + ls $mesurement_file_to_move + sleep 2 done } @@ -73,24 +80,34 @@ function recompute_powermeter_summary_from_mWs_to_mAh(){ mesurement_file=$1 number_of_samples_per_second_=$2 - - echo "command : cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 2 $mesurement_file 5000 $2 " + + + mesurement_file=$(echo $mesurement_file | sed 's/\//\\/g') #$(echo $mesurement_file | sed "s///\\/") + #echo "--- 1 - Mesurement file $mesurement_file" + mesurement_file=$(echo $mesurement_file | sed 's/\\mnt\\c/C:/g') + #echo "--- 2 - Mesurement file $mesurement_file" + + + + #echo "--- Recomputing powermeter summary from $mesurement_file, having $number_of_samples_per_second_ per seconds the result are simply echoed. (to delete this line)" + #echo "--- Command : cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 2 $mesurement_file $number_of_sample_per_second_ " + #cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 2 $mesurement_file "$number_of_samples_per_second_" result=$(cmd.exe /c "${python_exe_}" "${reduce_moonson_sample_py_script}" 2 $mesurement_file "$number_of_samples_per_second_") - echo "$result" + echo "$result" } function parse_and_collect_configuration_results(){ - global_experiment_output_folder_path_=$1 + global_experiment_output_folder_path__=$1 configuration_to_test__=$2 current_configuration_user_friendly__=$3 correct_powermeter_summary_file_name__=$4 correct_raw_result_file_name__=$5 - tmp_experiment_folder_name=$(ls $global_experiment_output_folder_path_ | grep $current_configuration_user_friendly__ ) - tmp_experiment_folder_path=$global_experiment_output_folder_path_/$tmp_experiment_folder_name + tmp_experiment_folder_name=$(ls $global_experiment_output_folder_path__ | grep $current_configuration_user_friendly__ ) + tmp_experiment_folder_path=$global_experiment_output_folder_path__/$tmp_experiment_folder_name - raw_result_file=${global_experiment_output_folder_path_}/${correct_raw_result_file_name__} + raw_result_file=${global_experiment_output_folder_path__}/${correct_raw_result_file_name__} tmp_powermeter_summary_output_file="${tmp_experiment_folder_path}/$correct_powermeter_summary_file_name__" echo "--- Parsing result from $tmp_experiment_folder_path to $raw_result_file" @@ -113,7 +130,6 @@ function parse_and_collect_configuration_results(){ echo "--- Avg Power = $avg_power" - echo "--- Printing the total threads summary command : print_total_workload "${tmp_experiment_folder_path}" "${current_app_output_folder_inside_the_phone}" "${configuration_to_test__}" "${PROJECT_TRASH_FOLDER}"" threads_results_string=$(print_thread_summary "${tmp_experiment_folder_path}" "${current_app_output_folder_inside_the_phone}" "${configuration_to_test__}" "${PROJECT_TRASH_FOLDER}") echo -e "--- Thread results \n$threads_results_string" @@ -142,7 +158,7 @@ function parse_and_collect_configuration_results(){ "${total_workload}" "${energy_efficiency}")" echo -e "--- Final result to print to File \n "${final_result_as_string}" " # NOTE : USE "" around the string variable to correctly print starts - echo "--- Writing to the total result file" + echo "--- Writing to the total result file $raw_result_file" echo -e "${final_result_as_string}" >> $raw_result_file # NOTE : USE "" around the string variable to correctly print starts @@ -153,57 +169,81 @@ function parse_and_collect_configuration_results(){ function recompute_raw_result_and_total_summary_for_second_experiments(){ - global_experiment_output_folder_=$1 - configuration_mesurement_file_name=$2 #configuration_mesurement.csv - number_of_samples_per_second=$3 - correct_powermeter_summary_file_name_=$4 #correct_powermeter_summary.txt - correct_summary_file_=$5 - correct_raw_result_file_name_=$6 + + global_experiment_folder_path_=$1 + old_global_summary_file_name_=$2 + correct_global_summary_file_name_=$3 - number_of_samples_per_mi_second=$((number_of_sample_per_second / 2)) - + configuration_mesurement_file_name_to_consider=$4 #configuration_mesurement.csv + number_of_samples_per_second=$5 + + correct_powermeter_summary_file_name_=$6 #correct_powermeter_summary.txt + correct_raw_result_file_name_=$7 - is_header=1 - while IFS=, read -r configurations generic_format exact_frequency_generic google_pixel_format exact_frequency_google_pixel energy_, avg_power_, total_workload_, energy_efficiency_ ; do + + old_global_summary_file=${global_experiment_folder_path_}/${old_global_summary_file_name_} + correct_global_summary_file=${global_experiment_folder_path_}/${correct_global_summary_file_name_} + number_of_samples_per_mi_second=$((number_of_sample_per_second / 2)) + echo "--- In function recompute_raw_result_and_total_summary_for_second_experiments" + echo "--- Reading summary file $old_global_summary_file" + is_header=1 + while IFS=, read -r configurations generic_format exact_frequency_generic google_pixel_format exact_frequency_google_pixel energy avg_power total_workload energy_efficiency; do if [ "$is_header" -ne "0" ]; then echo "--- Reading header $configurations and $exact_frequency_google_pixel" # we don't consider the header is_header=0 - echo "--- creating the result file the result to the file" - echo "$configurations,$generic_format,$exact_frequency_generic,$google_pixel_format,$exact_frequency_google_pixel,$energy_,$avg_power_,$total_workload_,$energy_efficiency_" >> ${output_summary_file}_newly_added + echo "--- creating the result file, adding the header to the file" + #echo "configurations,generic format,exact frequency,google pixel format,exact frequencies,phone energy,phone power,workload,energy by workload" > ${correct_global_summary_file} + echo "$configurations,$generic_format,$exact_frequency_generic,$google_pixel_format,$exact_frequency_google_pixel,$energy,$avg_power,$total_workload,$energy_efficiency" > ${correct_global_summary_file} else + + configuration_to_test=${google_pixel_format:1:-1} # removing first and last hooks configuration_to_test=$(echo "$configuration_to_test" | sed 's/ //g' | sed 's/-/,/g' ) # removing spaces and replacing dashes by commas current_configuration_user_friendly=$configurations - tmp_experiment_folder_name=$(ls $global_experiment_output_folder_ | grep $current_configuration_user_friendly ) - tmp_experiment_folder_path=$global_experiment_folder_path_/$tmp_experiment_folder_name + tmp_experiment_folder_name=$(ls $global_experiment_folder_path_ | grep $current_configuration_user_friendly ) + tmp_experiment_folder_path=${global_experiment_folder_path_}/$tmp_experiment_folder_name + mesurement_file=$tmp_experiment_folder_path/$configuration_mesurement_file_name_to_consider + echo -e "--- Parsing the, old summary file, results we consider are in in $mesurement_file,\n--- Number of samples per second: $number_of_samples_per_second" ############# first step: modifying the raw result file. - mesurement_file=$tmp_experiment_folder_path/$configuration_mesurement_file_name - - - recompute_powermeter_summary_from_mWs_to_mAh $mesurement_file $number_of_samples_per_second -:<<'END_COMMENT' correct_powermeter_summary_file=$tmp_experiment_folder_path/${correct_powermeter_summary_file_name_} + #recompute_powermeter_summary_from_mWs_to_mAh "$mesurement_file" $number_of_samples_per_second + powermeter_summary=$(recompute_powermeter_summary_from_mWs_to_mAh "$mesurement_file" $number_of_samples_per_second) + echo -e "--- Powermeter summary : \n ${powermeter_summary}" + + echo "--- Writing the result in the file : $correct_powermeter_summary_file" + + echo -e "$powermeter_summary" > $correct_powermeter_summary_file + + + + + ############ Second step: computing raw result and summary csv line echo "--- Recomputing the raw result of configuration $current_configuration_user_friendly" - parse_and_collect_configuration_results ${global_experiment_output_folder_} ${configuration_to_test} ${current_configuration_user_friendly} \ + echo "--- Command parse_and_collect_configuration_results ${global_experiment_folder_path_} ${configuration_to_test} ${current_configuration_user_friendly} \ + ${correct_powermeter_summary_file_name_} $correct_raw_result_file_name_" + + parse_and_collect_configuration_results ${global_experiment_folder_path_} ${configuration_to_test} ${current_configuration_user_friendly} \ ${correct_powermeter_summary_file_name_} $correct_raw_result_file_name_ + sleep 2 echo "--- Obtaining experiment summary result to add to result folder" experiment_results=$(read_all_file_line_by_line "${tmp_experiment_folder_path}/energy_power_workload_energyByWorkload") - + echo "--- From file $experiment_results" + energy_=$(echo -e $experiment_results | grep "Consumed Energy" | cut -d ':' -f 2 | sed 's/ //g' | tr -d '\r') echo "--- Experiment result, Energy consumed = $energy_" avg_power_=$(echo -e $experiment_results | grep "Avg power" | cut -d ':' -f 2 | sed 's/ //g' | tr -d '\r') @@ -217,33 +257,34 @@ function recompute_raw_result_and_total_summary_for_second_experiments(){ - echo "--- The file $output_summary_file exists we just appending the result to the file" - echo "$configurations,$generic_format,$exact_frequency_generic,$google_pixel_format,$exact_frequency_google_pixel,$energy_,$avg_power_,$total_workload_,$energy_efficiency_" >> $output_summary_file + echo "--- The file $correct_global_summary_file exists we just appending the result to the file" + echo "$configurations,$generic_format,$exact_frequency_generic,$google_pixel_format,$exact_frequency_google_pixel,$energy_,$avg_power_,$total_workload_,$energy_efficiency_" >> ${correct_global_summary_file} - echo "--- Experiments performed on configuration $configurations." + echo "--- Experiments performed on configuration $configurations" - echo "--- Mesurement file $mesurement_file" -END_COMMENT + fi - done + done < $old_global_summary_file } ## to test on second experiments (energy in mAh, when all samples datas are present) experiments (with an exemple of folder) -experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/old_tools/output_folder_to_test_monsoon_sampling_reduction" +#experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/old_tools/output_folder_to_test_monsoon_sampling_reduction" #experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/SECOND_RESUTLS" -reduce_samples_datas_in_second_experiments $experiment_output_folder +#reduce_many_samples_folders_in_second_experiments $experiment_output_folder + -:<<'END_COMMENT' -global_experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/FIRST_RESULTS_Energy_in_mWs_for_tests" -#global_experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/FIRST_RESULTS" +global_experiment_folder_path_="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/old_tools/FIRST_RESULTS_Energy_in_mWs_with_correct_summary" +#global_experiment_folder_path_="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/FIRST_RESULTS" ## to test on second experiment (energy in mWs) -recompute_raw_result_and_total_summary_for_second_experiments ${global_experiment_output_folder} \ - configuration_mesurement.csv 5000 "correct_powermeter_summary.txt" \ - "correct_summary_file.csv" "correct_raw_result_file.txt" -END_COMMENT +#echo "--- Calling function recompute_raw_result_and_total_summary_for_second_experiments" +#recompute_raw_result_and_total_summary_for_second_experiments ${global_experiment_folder_path_} \ +# "summary.csv" "correct_summary_file.csv" \ +# configuration_mesurement.csv 5000 \ +# "correct_powermeter_summary.txt" "correct_raw_result_file.txt" + -#experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/FIRST_RESUTLS" -#reduce_samples_datas_in_second_experiments $experiment_output_folder \ No newline at end of file +experiment_output_folder="/mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/can_be_reused/old_tools/FIRST_RESULTS_Energy_correct_summary_and_reduced" +reduce_many_samples_folders $experiment_output_folder \ No newline at end of file diff --git a/experiment_automatization/experiment_log_file.txt b/experiment_automatization/experiment_log_file.txt new file mode 100755 index 0000000000000000000000000000000000000000..93db8a7cac100a41d545d6072b0d959a87d8bc6b --- /dev/null +++ b/experiment_automatization/experiment_log_file.txt @@ -0,0 +1,217 @@ +--- Loading utils.sh library .... +--- ... utils.sh correctly loaded +--- Loading parsing_utils.sh library .... +--- --- parsing_utils.sh correctly loaded. +--- Loading experiment_process_for_a_single_configuration.sh library .... +--- --- experiment_process_for_a_single_configuration.sh correctly loaded. +--- First step : setting the charge stop level value +adbd is already running as root +--- The configuration file does not have the suitable format, we save it to and replace with the correct one +--- Before move command mv /mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/input_configurations_file.csv /mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/input_configurations_file__no_suitable_format +--- After move command +--- Reading header configurations and +--- Creating the file /mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/input_configurations_file__finally_used.csv + -- Cleaning generic format of configuration >[2- 0- 3- 1- 1- 1- 1- 0]< + ----- Generic format: [2- 0- 3- 1- 1- 1- 1- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 0- 1804800- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [1363200- 0- 1804800- 576000- 576000- 576000- 652800- 0] + -- Cleaning generic format of configuration >[0- 2- 2- 0- 0- 1- 0- 3]< + ----- Generic format: [0- 2- 2- 0- 0- 1- 0- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [0- 1363200- 1363200- 0- 0- 576000- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [0- 1363200- 1363200- 0- 0- 576000- 0- 2400000] + -- Cleaning generic format of configuration >[3- 1- 0- 3- 1- 1- 0- 1]< + ----- Generic format: [3- 1- 0- 3- 1- 1- 0- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 0- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 0- 1804800- 576000- 576000- 0- 806400] + -- Cleaning generic format of configuration >[1- 0- 3- 3- 1- 0- 1- 0]< + ----- Generic format: [1- 0- 3- 3- 1- 0- 1- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [576000- 0- 1804800- 1804800- 576000- 0- 652800- 0] + -- Cleaning generic format of configuration >[1- 3- 1- 1- 0- 1- 0- 0]< + ----- Generic format: [1- 3- 1- 1- 0- 1- 0- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1804800- 576000- 576000- 0- 576000- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [576000- 1804800- 576000- 576000- 0- 576000- 0- 0] + -- Cleaning generic format of configuration >[2- 3- 1- 3- 1- 0- 1- 2]< + ----- Generic format: [2- 3- 1- 3- 1- 0- 1- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 1804800- 576000- 1804800- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1363200- 1804800- 576000- 1804800- 576000- 0- 652800- 1766400] + -- Cleaning generic format of configuration >[1- 0- 3- 3- 0- 3- 0- 1]< + ----- Generic format: [1- 0- 3- 3- 0- 3- 0- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 0- 1804800- 1804800- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [576000- 0- 1804800- 1804800- 0- 1804800- 0- 806400] + -- Cleaning generic format of configuration >[1- 3- 1- 3- 2- 2- 3- 3]< + ----- Generic format: [1- 3- 1- 3- 2- 2- 3- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1804800- 576000- 1804800- 1363200- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [576000- 1804800- 576000- 1804800- 1363200- 1363200- 2208000- 2400000] + -- Cleaning generic format of configuration >[3- 1- 3- 2- 2- 3- 3- 2]< + ----- Generic format: [3- 1- 3- 2- 2- 3- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 1804800- 1363200- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 1804800- 1363200- 1363200- 1804800- 2208000- 1766400] + -- Cleaning generic format of configuration >[3- 0- 1- 1- 3- 2- 3- 3]< + ----- Generic format: [3- 0- 1- 1- 3- 2- 3- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 0- 576000- 576000- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1804800- 0- 576000- 576000- 1804800- 1363200- 2208000- 2400000] + -- Cleaning generic format of configuration >[1- 0- 2- 3- 0- 1- 2- 2]< + ----- Generic format: [1- 0- 2- 3- 0- 1- 2- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 0- 1363200- 1804800- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [576000- 0- 1363200- 1804800- 0- 576000- 1478400- 1766400] + -- Cleaning generic format of configuration >[0- 0- 1- 2- 3- 0- 3- 2]< + ----- Generic format: [0- 0- 1- 2- 3- 0- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [0- 0- 576000- 1363200- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [0- 0- 576000- 1363200- 1804800- 0- 2208000- 1766400] + -- Cleaning generic format of configuration >[3- 1- 0- 2- 0- 2- 3- 2]< + ----- Generic format: [3- 1- 0- 2- 0- 2- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 0- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 0- 1363200- 0- 1363200- 2208000- 1766400] + -- Cleaning generic format of configuration >[3- 0- 3- 2- 2- 0- 2- 3]< + ----- Generic format: [3- 0- 3- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 0- 1804800- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1804800- 0- 1804800- 1363200- 1363200- 0- 1478400- 2400000] + -- Cleaning generic format of configuration >[1- 2- 1- 0- 3- 0- 0- 2]< + ----- Generic format: [1- 2- 1- 0- 3- 0- 0- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1363200- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [576000- 1363200- 576000- 0- 1804800- 0- 0- 1766400] + -- Cleaning generic format of configuration >[3- 0- 2- 3- 3- 0- 3- 0]< + ----- Generic format: [3- 0- 2- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 0- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [1804800- 0- 1363200- 1804800- 1804800- 0- 2208000- 0] + -- Cleaning generic format of configuration >[2- 0- 3- 2- 2- 2- 0- 3]< + ----- Generic format: [2- 0- 3- 2- 2- 2- 0- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 0- 1804800- 1363200- 1363200- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1363200- 0- 1804800- 1363200- 1363200- 1363200- 0- 2400000] + -- Cleaning generic format of configuration >[0- 3- 0- 3- 3- 3- 2- 3]< + ----- Generic format: [0- 3- 0- 3- 3- 3- 2- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [0- 1804800- 0- 1804800- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [0- 1804800- 0- 1804800- 1804800- 1804800- 1478400- 2400000] + -- Cleaning generic format of configuration >[0- 1- 3- 2- 0- 2- 2- 0]< + ----- Generic format: [0- 1- 3- 2- 0- 2- 2- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [0- 576000- 1804800- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [0- 576000- 1804800- 1363200- 0- 1363200- 1478400- 0] + -- Cleaning generic format of configuration >[2- 3- 1- 0- 1- 0- 2- 0]< + ----- Generic format: [2- 3- 1- 0- 1- 0- 2- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 1804800- 576000- 0- 576000- 0- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [1363200- 1804800- 576000- 0- 576000- 0- 1478400- 0] + -- Cleaning generic format of configuration >[2- 1- 2- 1- 3- 3- 1- 2]< + ----- Generic format: [2- 1- 2- 1- 3- 3- 1- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 576000- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1363200- 576000- 1363200- 576000- 1804800- 1804800- 652800- 1766400] + -- Cleaning generic format of configuration >[2- 2- 2- 2- 1- 1- 2- 1]< + ----- Generic format: [2- 2- 2- 2- 1- 1- 2- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 1363200- 1363200- 1363200- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [1363200- 1363200- 1363200- 1363200- 576000- 576000- 1478400- 806400] + -- Cleaning generic format of configuration >[1- 2- 1- 1- 2- 0- 0- 3]< + ----- Generic format: [1- 2- 1- 1- 2- 0- 0- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1363200- 576000- 576000- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [576000- 1363200- 576000- 576000- 1363200- 0- 0- 2400000] + -- Cleaning generic format of configuration >[0- 0- 0- 3- 0- 0- 0- 0]< + ----- Generic format: [0- 0- 0- 3- 0- 0- 0- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [0- 0- 0- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [0- 0- 0- 1804800- 0- 0- 0- 0] + -- Cleaning generic format of configuration >[1- 1- 3- 3- 1- 2- 3- 2]< + ----- Generic format: [1- 1- 3- 3- 1- 2- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 576000- 1804800- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [576000- 576000- 1804800- 1804800- 576000- 1363200- 2208000- 1766400] + -- Cleaning generic format of configuration >[3- 1- 2- 3- 0- 0- 3- 0]< + ----- Generic format: [3- 1- 2- 3- 0- 0- 3- 0- 0- 0- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 1363200- 1804800- 0- 0- 2208000- 0] + -- Cleaning generic format of configuration >[2- 2- 0- 0- 1- 1- 3- 2]< + ----- Generic format: [2- 2- 0- 0- 1- 1- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 1363200- 0- 0- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1363200- 1363200- 0- 0- 576000- 576000- 2208000- 1766400] + -- Cleaning generic format of configuration >[3- 2- 1- 0- 2- 1- 2- 1]< + ----- Generic format: [3- 2- 1- 0- 2- 1- 2- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 1363200- 576000- 0- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [1804800- 1363200- 576000- 0- 1363200- 576000- 1478400- 806400] + -- Cleaning generic format of configuration >[2- 0- 2- 3- 0- 2- 2- 3]< + ----- Generic format: [2- 0- 2- 3- 0- 2- 2- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 0- 1363200- 1804800- 0- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1363200- 0- 1363200- 1804800- 0- 1363200- 1478400- 2400000] + -- Cleaning generic format of configuration >[1- 2- 1- 1- 0- 3- 1- 2]< + ----- Generic format: [1- 2- 1- 1- 0- 3- 1- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1363200- 576000- 576000- 0- 1804800- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [576000- 1363200- 576000- 576000- 0- 1804800- 652800- 1766400] + -- Cleaning generic format of configuration >[1- 0- 1- 1- 3- 2- 2- 3]< + ----- Generic format: [1- 0- 1- 1- 3- 2- 2- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 0- 576000- 576000- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [576000- 0- 576000- 576000- 1804800- 1363200- 1478400- 2400000] + -- Cleaning generic format of configuration >[2- 0- 0- 0- 3- 3- 3- 2]< + ----- Generic format: [2- 0- 0- 0- 3- 3- 3- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 0- 0- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1363200- 0- 0- 0- 1804800- 1804800- 2208000- 1766400] + -- Cleaning generic format of configuration >[2- 1- 0- 1- 1- 3- 2- 2]< + ----- Generic format: [2- 1- 0- 1- 1- 3- 2- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 576000- 0- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1363200- 576000- 0- 576000- 576000- 1804800- 1478400- 1766400] + -- Cleaning generic format of configuration >[1- 3- 0- 3- 1- 2- 0- 1]< + ----- Generic format: [1- 3- 0- 3- 1- 2- 0- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [576000- 1804800- 0- 1804800- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [576000- 1804800- 0- 1804800- 576000- 1363200- 0- 806400] + -- Cleaning generic format of configuration >[0- 1- 2- 1- 2- 3- 0- 3]< + ----- Generic format: [0- 1- 2- 1- 2- 3- 0- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [0- 576000- 1363200- 576000- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [0- 576000- 1363200- 576000- 1363200- 1804800- 0- 2400000] + -- Cleaning generic format of configuration >[3- 1- 0- 2- 1- 0- 0- 3]< + ----- Generic format: [3- 1- 0- 2- 1- 0- 0- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 0- 1363200- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 0- 1363200- 576000- 0- 0- 2400000] + -- Cleaning generic format of configuration >[3- 3- 0- 0- 0- 1- 0- 2]< + ----- Generic format: [3- 3- 0- 0- 0- 1- 0- 0- 0- 2- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 1804800- 0- 0- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0] + -- Exact frequencies: [1804800- 1804800- 0- 0- 0- 576000- 0- 1766400] + -- Cleaning generic format of configuration >[3- 1- 1- 0- 3- 2- 2- 3]< + ----- Generic format: [3- 1- 1- 0- 3- 2- 2- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [1804800- 576000- 576000- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [1804800- 576000- 576000- 0- 1804800- 1363200- 1478400- 2400000] + -- Cleaning generic format of configuration >[2- 1- 3- 1- 0- 1- 1- 1]< + ----- Generic format: [2- 1- 3- 1- 0- 1- 1- 0- 0- 1- 0- 0- 0] + -- Generic format with exact frequencies: [1363200- 576000- 1804800- 576000- 0- 576000- 0- 0- 0- 806400- 0- 0- 0] + -- Exact frequencies: [1363200- 576000- 1804800- 576000- 0- 576000- 652800- 806400] + -- Cleaning generic format of configuration >[0- 1- 2- 0- 1- 2- 1- 3]< + ----- Generic format: [0- 1- 2- 0- 1- 2- 1- 0- 0- 3- 0- 0- 0] + -- Generic format with exact frequencies: [0- 576000- 1363200- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0] + -- Exact frequencies: [0- 576000- 1363200- 0- 576000- 1363200- 652800- 2400000] +--- Suitable format produced + +--- Reading header configurations and exact frequencies +--- Performing experiments on configuration 203111-1-0 +--- Cleaning the tmp expermiment folder : /mnt/c/Users/lavoi/opportunist_task_on_android/scripts_valuable_files/experiment_automatization/last_tmp_expermiment_folder +--- Second step : verifying the battery level +--- Verifying the battery level +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- Current battery is low, so we need to wait battery +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- Desactivating the charge stop level option +--- Desactivating the charge stop level option, command : /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe shell echo 100 > /sys/devices/platform/soc/soc:google,charger/charge_stop_level </dev/null +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... +--- Getting current battery level, adb command path: /mnt/c/Program Files/Android/platform-tools_r33.0.1-windows/platform-tools/adb.exe +--- Current battery level : 47 +--- The current battery level : 47, still lower than the experiment one : 50 +--- Waiting 30 second... diff --git a/experiment_automatization/input_configurations_file.csv b/experiment_automatization/input_configurations_file.csv index b602c964b77b2274d86f6581210a375297132415..11f13d816c30356d40e9f88dce3dd911debe5d13 100755 --- a/experiment_automatization/input_configurations_file.csv +++ b/experiment_automatization/input_configurations_file.csv @@ -1,201 +1,41 @@ configurations,google pixel format -110331-1-2,[1- 1- 0- 3- 3- 1- 1- 2] -231322-1-0,[2- 3- 1- 3- 2- 2- 1- 0] -203111-3-3,[2- 0- 3- 1- 1- 1- 3- 3] -100021-1-1,[1- 0- 0- 0- 2- 1- 1- 1] -222211-3-3,[2- 2- 2- 2- 1- 1- 3- 3] -001213-3-1,[0- 0- 1- 2- 1- 3- 3- 1] -033331-1-2,[0- 3- 3- 3- 3- 1- 1- 2] -301032-1-2,[3- 0- 1- 0- 3- 2- 1- 2] -220030-2-2,[2- 2- 0- 0- 3- 0- 2- 2] -221230-3-0,[2- 2- 1- 2- 3- 0- 3- 0] -323210-1-0,[3- 2- 3- 2- 1- 0- 1- 0] -110321-0-0,[1- 1- 0- 3- 2- 1- 0- 0] -102232-0-2,[1- 0- 2- 2- 3- 2- 0- 2] -231113-1-1,[2- 3- 1- 1- 1- 3- 1- 1] -121010-3-1,[1- 2- 1- 0- 1- 0- 3- 1] -311021-1-3,[3- 1- 1- 0- 2- 1- 1- 3] -101123-0-3,[1- 0- 1- 1- 2- 3- 0- 3] -033033-1-1,[0- 3- 3- 0- 3- 3- 1- 1] -323111-3-1,[3- 2- 3- 1- 1- 1- 3- 1] -231332-2-3,[2- 3- 1- 3- 3- 2- 2- 3] -121113-1-3,[1- 2- 1- 1- 1- 3- 1- 3] -012010-2-1,[0- 1- 2- 0- 1- 0- 2- 1] -213113-3-3,[2- 1- 3- 1- 1- 3- 3- 3] -110030-0-1,[1- 1- 0- 0- 3- 0- 0- 1] -113131-2-3,[1- 1- 3- 1- 3- 1- 2- 3] -110301-1-0,[1- 1- 0- 3- 0- 1- 1- 0] -312331-2-2,[3- 1- 2- 3- 3- 1- 2- 2] -033333-0-2,[0- 3- 3- 3- 3- 3- 0- 2] -013210-1-1,[0- 1- 3- 2- 1- 0- 1- 1] -223033-0-0,[2- 2- 3- 0- 3- 3- 0- 0] -001200-2-2,[0- 0- 1- 2- 0- 0- 2- 2] -013210-3-1,[0- 1- 3- 2- 1- 0- 3- 1] -300102-3-0,[3- 0- 0- 1- 0- 2- 3- 0] -211331-0-2,[2- 1- 1- 3- 3- 1- 0- 2] -230023-3-0,[2- 3- 0- 0- 2- 3- 3- 0] -212202-2-1,[2- 1- 2- 2- 0- 2- 2- 1] -010023-0-1,[0- 1- 0- 0- 2- 3- 0- 1] -012112-2-0,[0- 1- 2- 1- 1- 2- 2- 0] -303122-3-1,[3- 0- 3- 1- 2- 2- 3- 1] -332113-2-2,[3- 3- 2- 1- 1- 3- 2- 2] -322231-2-1,[3- 2- 2- 2- 3- 1- 2- 1] -103311-2-1,[1- 0- 3- 3- 1- 1- 2- 1] -100110-0-2,[1- 0- 0- 1- 1- 0- 0- 2] -212300-1-2,[2- 1- 2- 3- 0- 0- 1- 2] -000300-2-3,[0- 0- 0- 3- 0- 0- 2- 3] -030310-0-2,[0- 3- 0- 3- 1- 0- 0- 2] -331220-1-2,[3- 3- 1- 2- 2- 0- 1- 2] -233212-0-1,[2- 3- 3- 2- 1- 2- 0- 1] -310233-0-1,[3- 1- 0- 2- 3- 3- 0- 1] -031030-0-3,[0- 3- 1- 0- 3- 0- 0- 3] -031130-0-0,[0- 3- 1- 1- 3- 0- 0- 0] -101033-2-2,[1- 0- 1- 0- 3- 3- 2- 2] -101312-2-1,[1- 0- 1- 3- 1- 2- 2- 1] -212211-1-2,[2- 1- 2- 2- 1- 1- 1- 2] -103012-3-3,[1- 0- 3- 0- 1- 2- 3- 3] -101300-3-3,[1- 0- 1- 3- 0- 0- 3- 3] -220213-3-0,[2- 2- 0- 2- 1- 3- 3- 0] -221013-2-1,[2- 2- 1- 0- 1- 3- 2- 1] -223020-1-0,[2- 2- 3- 0- 2- 0- 1- 0] -201133-0-3,[2- 0- 1- 1- 3- 3- 0- 3] -111202-3-1,[1- 1- 1- 2- 0- 2- 3- 1] -311111-2-3,[3- 1- 1- 1- 1- 1- 2- 3] -212221-1-3,[2- 1- 2- 2- 2- 1- 1- 3] -121310-1-0,[1- 2- 1- 3- 1- 0- 1- 0] -133032-0-3,[1- 3- 3- 0- 3- 2- 0- 3] -310020-0-3,[3- 1- 0- 0- 2- 0- 0- 3] -022230-3-2,[0- 2- 2- 2- 3- 0- 3- 2] -222111-2-0,[2- 2- 2- 1- 1- 1- 2- 0] -333201-1-1,[3- 3- 3- 2- 0- 1- 1- 1] -333331-2-3,[3- 3- 3- 3- 3- 1- 2- 3] -223300-1-0,[2- 2- 3- 3- 0- 0- 1- 0] -222021-0-0,[2- 2- 2- 0- 2- 1- 0- 0] -120302-1-1,[1- 2- 0- 3- 0- 2- 1- 1] -031023-3-2,[0- 3- 1- 0- 2- 3- 3- 2] -022202-0-0,[0- 2- 2- 2- 0- 2- 0- 0] -031033-1-0,[0- 3- 1- 0- 3- 3- 1- 0] -002133-2-3,[0- 0- 2- 1- 3- 3- 2- 3] -312022-1-0,[3- 1- 2- 0- 2- 2- 1- 0] -021113-1-2,[0- 2- 1- 1- 1- 3- 1- 2] -100000-0-2,[1- 0- 0- 0- 0- 0- 0- 2] -121232-2-3,[1- 2- 1- 2- 3- 2- 2- 3] -303132-0-2,[3- 0- 3- 1- 3- 2- 0- 2] -331303-2-1,[3- 3- 1- 3- 0- 3- 2- 1] -303323-2-0,[3- 0- 3- 3- 2- 3- 2- 0] -210320-1-2,[2- 1- 0- 3- 2- 0- 1- 2] -122220-2-3,[1- 2- 2- 2- 2- 0- 2- 3] -231021-3-3,[2- 3- 1- 0- 2- 1- 3- 3] -310302-1-2,[3- 1- 0- 3- 0- 2- 1- 2] -331220-0-1,[3- 3- 1- 2- 2- 0- 0- 1] -312321-1-0,[3- 1- 2- 3- 2- 1- 1- 0] -023300-2-1,[0- 2- 3- 3- 0- 0- 2- 1] -331312-0-2,[3- 3- 1- 3- 1- 2- 0- 2] -130333-0-0,[1- 3- 0- 3- 3- 3- 0- 0] -310330-3-0,[3- 1- 0- 3- 3- 0- 3- 0] -203110-1-0,[2- 0- 3- 1- 1- 0- 1- 0] -002102-3-1,[0- 0- 2- 1- 0- 2- 3- 1] -210032-2-1,[2- 1- 0- 0- 3- 2- 2- 1] -201120-0-2,[2- 0- 1- 1- 2- 0- 0- 2] -233220-2-3,[2- 3- 3- 2- 2- 0- 2- 3] -231002-0-2,[2- 3- 1- 0- 0- 2- 0- 2] -030330-3-0,[0- 3- 0- 3- 3- 0- 3- 0] -133012-3-3,[1- 3- 3- 0- 1- 2- 3- 3] -321323-0-1,[3- 2- 1- 3- 2- 3- 0- 1] -203332-2-2,[2- 0- 3- 3- 3- 2- 2- 2] -020230-3-3,[0- 2- 0- 2- 3- 0- 3- 3] -123032-0-0,[1- 2- 3- 0- 3- 2- 0- 0] -112000-1-1,[1- 1- 2- 0- 0- 0- 1- 1] -233223-1-3,[2- 3- 3- 2- 2- 3- 1- 3] -201011-3-1,[2- 0- 1- 0- 1- 1- 3- 1] -023023-2-2,[0- 2- 3- 0- 2- 3- 2- 2] -110203-3-1,[1- 1- 0- 2- 0- 3- 3- 1] -123013-0-2,[1- 2- 3- 0- 1- 3- 0- 2] -030013-2-3,[0- 3- 0- 0- 1- 3- 2- 3] -211233-3-3,[2- 1- 1- 2- 3- 3- 3- 3] -312133-1-0,[3- 1- 2- 1- 3- 3- 1- 0] -103011-3-0,[1- 0- 3- 0- 1- 1- 3- 0] -331013-1-1,[3- 3- 1- 0- 1- 3- 1- 1] -232202-1-2,[2- 3- 2- 2- 0- 2- 1- 2] -122020-2-1,[1- 2- 2- 0- 2- 0- 2- 1] -002101-2-2,[0- 0- 2- 1- 0- 1- 2- 2] -222311-2-1,[2- 2- 2- 3- 1- 1- 2- 1] -122222-1-1,[1- 2- 2- 2- 2- 2- 1- 1] -302310-0-3,[3- 0- 2- 3- 1- 0- 0- 3] -100023-2-1,[1- 0- 0- 0- 2- 3- 2- 1] -223101-2-3,[2- 2- 3- 1- 0- 1- 2- 3] -102113-3-1,[1- 0- 2- 1- 1- 3- 3- 1] -210110-3-1,[2- 1- 0- 1- 1- 0- 3- 1] -133120-3-1,[1- 3- 3- 1- 2- 0- 3- 1] -220110-2-0,[2- 2- 0- 1- 1- 0- 2- 0] -000022-2-2,[0- 0- 0- 0- 2- 2- 2- 2] -331011-1-0,[3- 3- 1- 0- 1- 1- 1- 0] -313120-1-0,[3- 1- 3- 1- 2- 0- 1- 0] -033323-1-0,[0- 3- 3- 3- 2- 3- 1- 0] -203132-1-0,[2- 0- 3- 1- 3- 2- 1- 0] -011221-2-1,[0- 1- 1- 2- 2- 1- 2- 1] -310331-2-0,[3- 1- 0- 3- 3- 1- 2- 0] -213313-3-2,[2- 1- 3- 3- 1- 3- 3- 2] -331213-0-3,[3- 3- 1- 2- 1- 3- 0- 3] -130100-1-3,[1- 3- 0- 1- 0- 0- 1- 3] -120131-2-0,[1- 2- 0- 1- 3- 1- 2- 0] -022011-1-0,[0- 2- 2- 0- 1- 1- 1- 0] -100221-3-1,[1- 0- 0- 2- 2- 1- 3- 1] -020100-0-0,[0- 2- 0- 1- 0- 0- 0- 0] -312302-3-0,[3- 1- 2- 3- 0- 2- 3- 0] -323322-3-0,[3- 2- 3- 3- 2- 2- 3- 0] -220023-2-1,[2- 2- 0- 0- 2- 3- 2- 1] -203300-2-2,[2- 0- 3- 3- 0- 0- 2- 2] -322032-2-0,[3- 2- 2- 0- 3- 2- 2- 0] -220322-3-2,[2- 2- 0- 3- 2- 2- 3- 2] -000111-3-0,[0- 0- 0- 1- 1- 1- 3- 0] -312001-2-2,[3- 1- 2- 0- 0- 1- 2- 2] -010120-2-1,[0- 1- 0- 1- 2- 0- 2- 1] -331232-0-0,[3- 3- 1- 2- 3- 2- 0- 0] -300313-3-2,[3- 0- 0- 3- 1- 3- 3- 2] -212212-0-3,[2- 1- 2- 2- 1- 2- 0- 3] -000200-2-1,[0- 0- 0- 2- 0- 0- 2- 1] -331300-1-1,[3- 3- 1- 3- 0- 0- 1- 1] -320030-0-1,[3- 2- 0- 0- 3- 0- 0- 1] -211113-2-0,[2- 1- 1- 1- 1- 3- 2- 0] -230010-0-3,[2- 3- 0- 0- 1- 0- 0- 3] -110030-1-2,[1- 1- 0- 0- 3- 0- 1- 2] -311112-3-0,[3- 1- 1- 1- 1- 2- 3- 0] -211312-3-2,[2- 1- 1- 3- 1- 2- 3- 2] -230102-0-1,[2- 3- 0- 1- 0- 2- 0- 1] -231030-3-2,[2- 3- 1- 0- 3- 0- 3- 2] -232011-1-1,[2- 3- 2- 0- 1- 1- 1- 1] -303320-3-0,[3- 0- 3- 3- 2- 0- 3- 0] -130120-1-2,[1- 3- 0- 1- 2- 0- 1- 2] -310221-1-2,[3- 1- 0- 2- 2- 1- 1- 2] -223111-1-3,[2- 2- 3- 1- 1- 1- 1- 3] -132020-2-0,[1- 3- 2- 0- 2- 0- 2- 0] -221303-0-2,[2- 2- 1- 3- 0- 3- 0- 2] -300010-0-1,[3- 0- 0- 0- 1- 0- 0- 1] -223132-3-1,[2- 2- 3- 1- 3- 2- 3- 1] -232302-1-2,[2- 3- 2- 3- 0- 2- 1- 2] -203231-0-3,[2- 0- 3- 2- 3- 1- 0- 3] -220021-0-2,[2- 2- 0- 0- 2- 1- 0- 2] -103011-1-2,[1- 0- 3- 0- 1- 1- 1- 2] -003021-2-2,[0- 0- 3- 0- 2- 1- 2- 2] -031210-2-1,[0- 3- 1- 2- 1- 0- 2- 1] -122013-2-2,[1- 2- 2- 0- 1- 3- 2- 2] -130103-0-0,[1- 3- 0- 1- 0- 3- 0- 0] -031030-3-2,[0- 3- 1- 0- 3- 0- 3- 2] -123230-1-0,[1- 2- 3- 2- 3- 0- 1- 0] -232202-0-1,[2- 3- 2- 2- 0- 2- 0- 1] -310231-3-3,[3- 1- 0- 2- 3- 1- 3- 3] -332330-2-3,[3- 3- 2- 3- 3- 0- 2- 3] -133131-2-0,[1- 3- 3- 1- 3- 1- 2- 0] -102010-2-3,[1- 0- 2- 0- 1- 0- 2- 3] -322333-2-2,[3- 2- 2- 3- 3- 3- 2- 2] -131002-2-3,[1- 3- 1- 0- 0- 2- 2- 3] -321032-1-3,[3- 2- 1- 0- 3- 2- 1- 3] -032033-1-2,[0- 3- 2- 0- 3- 3- 1- 2] -030211-3-2,[0- 3- 0- 2- 1- 1- 3- 2] -223202-3-2,[2- 2- 3- 2- 0- 2- 3- 2] -120330-0-0,[1- 2- 0- 3- 3- 0- 0- 0] -123122-1-2,[1- 2- 3- 1- 2- 2- 1- 2] -021212-1-1,[0- 2- 1- 2- 1- 2- 1- 1] -303001-3-0,[3- 0- 3- 0- 0- 1- 3- 0] -033333-0-0,[0- 3- 3- 3- 3- 3- 0- 0] +203111-1-0,[2- 0- 3- 1- 1- 1- 1- 0] +022001-0-3,[0- 2- 2- 0- 0- 1- 0- 3] +310311-0-1,[3- 1- 0- 3- 1- 1- 0- 1] +103310-1-0,[1- 0- 3- 3- 1- 0- 1- 0] +131101-0-0,[1- 3- 1- 1- 0- 1- 0- 0] +231310-1-2,[2- 3- 1- 3- 1- 0- 1- 2] +103303-0-1,[1- 0- 3- 3- 0- 3- 0- 1] +131322-3-3,[1- 3- 1- 3- 2- 2- 3- 3] +313223-3-2,[3- 1- 3- 2- 2- 3- 3- 2] +301132-3-3,[3- 0- 1- 1- 3- 2- 3- 3] +102301-2-2,[1- 0- 2- 3- 0- 1- 2- 2] +001230-3-2,[0- 0- 1- 2- 3- 0- 3- 2] +310202-3-2,[3- 1- 0- 2- 0- 2- 3- 2] +303220-2-3,[3- 0- 3- 2- 2- 0- 2- 3] +121030-0-2,[1- 2- 1- 0- 3- 0- 0- 2] +302330-3-0,[3- 0- 2- 3- 3- 0- 3- 0] +203222-0-3,[2- 0- 3- 2- 2- 2- 0- 3] +030333-2-3,[0- 3- 0- 3- 3- 3- 2- 3] +013202-2-0,[0- 1- 3- 2- 0- 2- 2- 0] +231010-2-0,[2- 3- 1- 0- 1- 0- 2- 0] +212133-1-2,[2- 1- 2- 1- 3- 3- 1- 2] +222211-2-1,[2- 2- 2- 2- 1- 1- 2- 1] +121120-0-3,[1- 2- 1- 1- 2- 0- 0- 3] +000300-0-0,[0- 0- 0- 3- 0- 0- 0- 0] +113312-3-2,[1- 1- 3- 3- 1- 2- 3- 2] +312300-3-0,[3- 1- 2- 3- 0- 0- 3- 0] +220011-3-2,[2- 2- 0- 0- 1- 1- 3- 2] +321021-2-1,[3- 2- 1- 0- 2- 1- 2- 1] +202302-2-3,[2- 0- 2- 3- 0- 2- 2- 3] +121103-1-2,[1- 2- 1- 1- 0- 3- 1- 2] +101132-2-3,[1- 0- 1- 1- 3- 2- 2- 3] +200033-3-2,[2- 0- 0- 0- 3- 3- 3- 2] +210113-2-2,[2- 1- 0- 1- 1- 3- 2- 2] +130312-0-1,[1- 3- 0- 3- 1- 2- 0- 1] +012123-0-3,[0- 1- 2- 1- 2- 3- 0- 3] +310210-0-3,[3- 1- 0- 2- 1- 0- 0- 3] +330001-0-2,[3- 3- 0- 0- 0- 1- 0- 2] +311032-2-3,[3- 1- 1- 0- 3- 2- 2- 3] +213101-1-1,[2- 1- 3- 1- 0- 1- 1- 1] +012012-1-3,[0- 1- 2- 0- 1- 2- 1- 3] diff --git a/experiment_automatization/input_configurations_file__finally_used.csv b/experiment_automatization/input_configurations_file__finally_used.csv new file mode 100755 index 0000000000000000000000000000000000000000..ce963c2447b54d10715ff281eed3b81233e8fa7d --- /dev/null +++ b/experiment_automatization/input_configurations_file__finally_used.csv @@ -0,0 +1,41 @@ +configurations,generic format,exact frequency,google pixel format,exact frequencies +203111-1-0,[2- 0- 3- 1- 1- 1- 1- 0- 0- 0- 0- 0- 0],[1363200- 0- 1804800- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[2- 0- 3- 1- 1- 1- 1- 0], [1363200- 0- 1804800- 576000- 576000- 576000- 652800- 0] +022001-0-3,[0- 2- 2- 0- 0- 1- 0- 0- 0- 3- 0- 0- 0],[0- 1363200- 1363200- 0- 0- 576000- 0- 0- 0- 2400000- 0- 0- 0],[0- 2- 2- 0- 0- 1- 0- 3], [0- 1363200- 1363200- 0- 0- 576000- 0- 2400000] +310311-0-1,[3- 1- 0- 3- 1- 1- 0- 0- 0- 1- 0- 0- 0],[1804800- 576000- 0- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 1- 0- 3- 1- 1- 0- 1], [1804800- 576000- 0- 1804800- 576000- 576000- 0- 806400] +103310-1-0,[1- 0- 3- 3- 1- 0- 1- 0- 0- 0- 0- 0- 0],[576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[1- 0- 3- 3- 1- 0- 1- 0], [576000- 0- 1804800- 1804800- 576000- 0- 652800- 0] +131101-0-0,[1- 3- 1- 1- 0- 1- 0- 0- 0- 0- 0- 0- 0],[576000- 1804800- 576000- 576000- 0- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 3- 1- 1- 0- 1- 0- 0], [576000- 1804800- 576000- 576000- 0- 576000- 0- 0] +231310-1-2,[2- 3- 1- 3- 1- 0- 1- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 576000- 1804800- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 1- 3- 1- 0- 1- 2], [1363200- 1804800- 576000- 1804800- 576000- 0- 652800- 1766400] +103303-0-1,[1- 0- 3- 3- 0- 3- 0- 0- 0- 1- 0- 0- 0],[576000- 0- 1804800- 1804800- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 3- 3- 0- 3- 0- 1], [576000- 0- 1804800- 1804800- 0- 1804800- 0- 806400] +131322-3-3,[1- 3- 1- 3- 2- 2- 3- 0- 0- 3- 0- 0- 0],[576000- 1804800- 576000- 1804800- 1363200- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 1- 3- 2- 2- 3- 3], [576000- 1804800- 576000- 1804800- 1363200- 1363200- 2208000- 2400000] +313223-3-2,[3- 1- 3- 2- 2- 3- 3- 0- 0- 2- 0- 0- 0],[1804800- 576000- 1804800- 1363200- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 3- 2- 2- 3- 3- 2], [1804800- 576000- 1804800- 1363200- 1363200- 1804800- 2208000- 1766400] +301132-3-3,[3- 0- 1- 1- 3- 2- 3- 0- 0- 3- 0- 0- 0],[1804800- 0- 576000- 576000- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[3- 0- 1- 1- 3- 2- 3- 3], [1804800- 0- 576000- 576000- 1804800- 1363200- 2208000- 2400000] +102301-2-2,[1- 0- 2- 3- 0- 1- 2- 0- 0- 2- 0- 0- 0],[576000- 0- 1363200- 1804800- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 2- 3- 0- 1- 2- 2], [576000- 0- 1363200- 1804800- 0- 576000- 1478400- 1766400] +001230-3-2,[0- 0- 1- 2- 3- 0- 3- 0- 0- 2- 0- 0- 0],[0- 0- 576000- 1363200- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 1- 2- 3- 0- 3- 2], [0- 0- 576000- 1363200- 1804800- 0- 2208000- 1766400] +310202-3-2,[3- 1- 0- 2- 0- 2- 3- 0- 0- 2- 0- 0- 0],[1804800- 576000- 0- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 0- 2- 0- 2- 3- 2], [1804800- 576000- 0- 1363200- 0- 1363200- 2208000- 1766400] +303220-2-3,[3- 0- 3- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0],[1804800- 0- 1804800- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 0- 3- 2- 2- 0- 2- 3], [1804800- 0- 1804800- 1363200- 1363200- 0- 1478400- 2400000] +121030-0-2,[1- 2- 1- 0- 3- 0- 0- 0- 0- 2- 0- 0- 0],[576000- 1363200- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 1- 0- 3- 0- 0- 2], [576000- 1363200- 576000- 0- 1804800- 0- 0- 1766400] +302330-3-0,[3- 0- 2- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[3- 0- 2- 3- 3- 0- 3- 0], [1804800- 0- 1363200- 1804800- 1804800- 0- 2208000- 0] +203222-0-3,[2- 0- 3- 2- 2- 2- 0- 0- 0- 3- 0- 0- 0],[1363200- 0- 1804800- 1363200- 1363200- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 3- 2- 2- 2- 0- 3], [1363200- 0- 1804800- 1363200- 1363200- 1363200- 0- 2400000] +030333-2-3,[0- 3- 0- 3- 3- 3- 2- 0- 0- 3- 0- 0- 0],[0- 1804800- 0- 1804800- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 3- 0- 3- 3- 3- 2- 3], [0- 1804800- 0- 1804800- 1804800- 1804800- 1478400- 2400000] +013202-2-0,[0- 1- 3- 2- 0- 2- 2- 0- 0- 0- 0- 0- 0],[0- 576000- 1804800- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[0- 1- 3- 2- 0- 2- 2- 0], [0- 576000- 1804800- 1363200- 0- 1363200- 1478400- 0] +231010-2-0,[2- 3- 1- 0- 1- 0- 2- 0- 0- 0- 0- 0- 0],[1363200- 1804800- 576000- 0- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[2- 3- 1- 0- 1- 0- 2- 0], [1363200- 1804800- 576000- 0- 576000- 0- 1478400- 0] +212133-1-2,[2- 1- 2- 1- 3- 3- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 2- 1- 3- 3- 1- 2], [1363200- 576000- 1363200- 576000- 1804800- 1804800- 652800- 1766400] +222211-2-1,[2- 2- 2- 2- 1- 1- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 1363200- 1363200- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 2- 2- 1- 1- 2- 1], [1363200- 1363200- 1363200- 1363200- 576000- 576000- 1478400- 806400] +121120-0-3,[1- 2- 1- 1- 2- 0- 0- 0- 0- 3- 0- 0- 0],[576000- 1363200- 576000- 576000- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 1- 1- 2- 0- 0- 3], [576000- 1363200- 576000- 576000- 1363200- 0- 0- 2400000] +000300-0-0,[0- 0- 0- 3- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 0- 0- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 0- 0- 3- 0- 0- 0- 0], [0- 0- 0- 1804800- 0- 0- 0- 0] +113312-3-2,[1- 1- 3- 3- 1- 2- 3- 0- 0- 2- 0- 0- 0],[576000- 576000- 1804800- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[1- 1- 3- 3- 1- 2- 3- 2], [576000- 576000- 1804800- 1804800- 576000- 1363200- 2208000- 1766400] +312300-3-0,[3- 1- 2- 3- 0- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 3- 0- 0- 3- 0], [1804800- 576000- 1363200- 1804800- 0- 0- 2208000- 0] +220011-3-2,[2- 2- 0- 0- 1- 1- 3- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 0- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 0- 1- 1- 3- 2], [1363200- 1363200- 0- 0- 576000- 576000- 2208000- 1766400] +321021-2-1,[3- 2- 1- 0- 2- 1- 2- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 576000- 0- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 1- 0- 2- 1- 2- 1], [1804800- 1363200- 576000- 0- 1363200- 576000- 1478400- 806400] +202302-2-3,[2- 0- 2- 3- 0- 2- 2- 0- 0- 3- 0- 0- 0],[1363200- 0- 1363200- 1804800- 0- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 2- 3- 0- 2- 2- 3], [1363200- 0- 1363200- 1804800- 0- 1363200- 1478400- 2400000] +121103-1-2,[1- 2- 1- 1- 0- 3- 1- 0- 0- 2- 0- 0- 0],[576000- 1363200- 576000- 576000- 0- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 1- 1- 0- 3- 1- 2], [576000- 1363200- 576000- 576000- 0- 1804800- 652800- 1766400] +101132-2-3,[1- 0- 1- 1- 3- 2- 2- 0- 0- 3- 0- 0- 0],[576000- 0- 576000- 576000- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 1- 1- 3- 2- 2- 3], [576000- 0- 576000- 576000- 1804800- 1363200- 1478400- 2400000] +200033-3-2,[2- 0- 0- 0- 3- 3- 3- 0- 0- 2- 0- 0- 0],[1363200- 0- 0- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 0- 0- 3- 3- 3- 2], [1363200- 0- 0- 0- 1804800- 1804800- 2208000- 1766400] +210113-2-2,[2- 1- 0- 1- 1- 3- 2- 0- 0- 2- 0- 0- 0],[1363200- 576000- 0- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 0- 1- 1- 3- 2- 2], [1363200- 576000- 0- 576000- 576000- 1804800- 1478400- 1766400] +130312-0-1,[1- 3- 0- 3- 1- 2- 0- 0- 0- 1- 0- 0- 0],[576000- 1804800- 0- 1804800- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 3- 0- 3- 1- 2- 0- 1], [576000- 1804800- 0- 1804800- 576000- 1363200- 0- 806400] +012123-0-3,[0- 1- 2- 1- 2- 3- 0- 0- 0- 3- 0- 0- 0],[0- 576000- 1363200- 576000- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 1- 2- 1- 2- 3- 0- 3], [0- 576000- 1363200- 576000- 1363200- 1804800- 0- 2400000] +310210-0-3,[3- 1- 0- 2- 1- 0- 0- 0- 0- 3- 0- 0- 0],[1804800- 576000- 0- 1363200- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 0- 2- 1- 0- 0- 3], [1804800- 576000- 0- 1363200- 576000- 0- 0- 2400000] +330001-0-2,[3- 3- 0- 0- 0- 1- 0- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 0- 0- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 0- 0- 0- 1- 0- 2], [1804800- 1804800- 0- 0- 0- 576000- 0- 1766400] +311032-2-3,[3- 1- 1- 0- 3- 2- 2- 0- 0- 3- 0- 0- 0],[1804800- 576000- 576000- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 1- 0- 3- 2- 2- 3], [1804800- 576000- 576000- 0- 1804800- 1363200- 1478400- 2400000] +213101-1-1,[2- 1- 3- 1- 0- 1- 1- 0- 0- 1- 0- 0- 0],[1363200- 576000- 1804800- 576000- 0- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 3- 1- 0- 1- 1- 1], [1363200- 576000- 1804800- 576000- 0- 576000- 652800- 806400] +012012-1-3,[0- 1- 2- 0- 1- 2- 1- 0- 0- 3- 0- 0- 0],[0- 576000- 1363200- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[0- 1- 2- 0- 1- 2- 1- 3], [0- 576000- 1363200- 0- 576000- 1363200- 652800- 2400000] diff --git a/experiment_automatization/monsoon_power_meter.py b/experiment_automatization/monsoon_power_meter.py index d47fc314b2036c069cbbee6f3e90ef1b0704cb8b..7bd85c759d3a07c9f2cc0c1a2957104c083cf86c 100755 --- a/experiment_automatization/monsoon_power_meter.py +++ b/experiment_automatization/monsoon_power_meter.py @@ -79,8 +79,8 @@ def run_power_meter(engine, V_out, calibration_duration, csv_output_file): timeStampToWrite = (timeStampToWrite + samples[sampleEngine.channels.timeStamp][i])/2 CurrentToWrite = CurrentToWrite / 125 VoltageToWrite = VoltageToWrite / 125 - print(tag + " Mesurement at time " + repr(timeStamp) + ", USB Current: " + repr(Current) + " mA, USBVoltage" + repr(Voltage) + " V") - print(tag + " Mesurement to write in file at time " + repr(timeStampToWrite) + ", USB Current: " + repr(CurrentToWrite) + " mA, USBVoltage" + repr(VoltageToWrite) + " V") + #print(tag + " Mesurement at time " + repr(timeStamp) + ", USB Current: " + repr(Current) + " mA, USBVoltage" + repr(Voltage) + " V") + #print(tag + " Mesurement to write in file at time " + repr(timeStampToWrite) + ", USB Current: " + repr(CurrentToWrite) + " mA, USBVoltage" + repr(VoltageToWrite) + " V") file.write("\n" + repr(timeStampToWrite) + "," + repr(CurrentToWrite) + "," + repr(VoltageToWrite) + ",") timeStampToWrite = samples[sampleEngine.channels.timeStamp][i] CurrentToWrite=0 diff --git a/experiment_automatization/summary_files_only/summary___31Jul22_22_49_44.csv b/experiment_automatization/summary_files_only/summary___31Jul22_22_49_44.csv new file mode 100755 index 0000000000000000000000000000000000000000..a6d9313135941424b7d5e920b1aefbada15ad9f9 --- /dev/null +++ b/experiment_automatization/summary_files_only/summary___31Jul22_22_49_44.csv @@ -0,0 +1,201 @@ +configurations,generic format,exact frequency,google pixel format,exact frequencies,phone energy,phone power,workload,energy by workload +110331-1-2,[1- 1- 0- 3- 3- 1- 1- 0- 0- 2- 0- 0- 0],[576000- 576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[1- 1- 0- 3- 3- 1- 1- 2],[576000- 576000- 0- 1804800- 1804800- 576000- 652800- 1766400],64.19579910312801,1870.2722133716818,8.87774e+11,7.2311e-11 +231322-1-0,[2- 3- 1- 3- 2- 2- 1- 0- 0- 0- 0- 0- 0],[1363200- 1804800- 576000- 1804800- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[2- 3- 1- 3- 2- 2- 1- 0],[1363200- 1804800- 576000- 1804800- 1363200- 1363200- 652800- 0],48.41145989274554,1442.1836856307225,7.68047e+11,6.30319e-11 +203111-3-3,[2- 0- 3- 1- 1- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 0- 1804800- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 3- 1- 1- 1- 3- 3],[1363200- 0- 1804800- 576000- 576000- 576000- 2208000- 2400000],82.91561099059082,2370.4459557060436,1.12442e+12,7.37408e-11 +100021-1-1,[1- 0- 0- 0- 2- 1- 1- 0- 0- 1- 0- 0- 0],[576000- 0- 0- 0- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 0- 0- 2- 1- 1- 1],[576000- 0- 0- 0- 1363200- 576000- 652800- 806400],,,, +222211-3-3,[2- 2- 2- 2- 1- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1363200- 1363200- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 2- 2- 1- 1- 3- 3],[1363200- 1363200- 1363200- 1363200- 576000- 576000- 2208000- 2400000],100.20712244755511,2815.5632172858295,1.26429e+12,7.92596e-11 +001213-3-1,[0- 0- 1- 2- 1- 3- 3- 0- 0- 1- 0- 0- 0],[0- 0- 576000- 1363200- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 1- 2- 1- 3- 3- 1],[0- 0- 576000- 1363200- 576000- 1804800- 2208000- 806400],82.96894805953761,2387.892013049087,1.13772e+12,7.29256e-11 +033331-1-2,[0- 3- 3- 3- 3- 1- 1- 0- 0- 2- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 3- 3- 3- 1- 1- 2],[0- 1804800- 1804800- 1804800- 1804800- 576000- 652800- 1766400],64.64970628366846,1880.8628980661485,8.88481e+11,7.27643e-11 +301032-1-2,[3- 0- 1- 0- 3- 2- 1- 0- 0- 2- 0- 0- 0],[1804800- 0- 576000- 0- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 1- 0- 3- 2- 1- 2],[1804800- 0- 576000- 0- 1804800- 1363200- 652800- 1766400],73.91182504828757,2126.962353274624,1.06363e+12,6.94902e-11 +220030-2-2,[2- 2- 0- 0- 3- 0- 2- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 0- 3- 0- 2- 2],[1363200- 1363200- 0- 0- 1804800- 0- 1478400- 1766400],72.90966602182769,2103.122606123189,1.02713e+12,7.09839e-11 +221230-3-0,[2- 2- 1- 2- 3- 0- 3- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 1- 2- 3- 0- 3- 0],[1363200- 1363200- 576000- 1363200- 1804800- 0- 2208000- 0],58.28843755901114,1697.6913892797818,7.27308e+11,8.01427e-11 +323210-1-0,[3- 2- 3- 2- 1- 0- 1- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[3- 2- 3- 2- 1- 0- 1- 0],[1804800- 1363200- 1804800- 1363200- 576000- 0- 652800- 0],32.38697310027206,983.3354652028812,3.85836e+11,8.39397e-11 +110321-0-0,[1- 1- 0- 3- 2- 1- 0- 0- 0- 0- 0- 0- 0],[576000- 576000- 0- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 1- 0- 3- 2- 1- 0- 0],[576000- 576000- 0- 1804800- 1363200- 576000- 0- 0],26.712113356633708,809.0857566564351,2.07423e+11,1.28781e-10 +102232-0-2,[1- 0- 2- 2- 3- 2- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 1363200- 1363200- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 2- 2- 3- 2- 0- 2],[576000- 0- 1363200- 1363200- 1804800- 1363200- 0- 1766400],65.82773838337582,1937.3604439819528,9.88207e+11,6.66133e-11 +231113-1-1,[2- 3- 1- 1- 1- 3- 1- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 576000- 576000- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 1- 1- 1- 3- 1- 1],[1363200- 1804800- 576000- 576000- 576000- 1804800- 652800- 806400],79.38519390634406,2275.006876709204,1.19498e+12,6.64322e-11 +121010-3-1,[1- 2- 1- 0- 1- 0- 3- 0- 0- 1- 0- 0- 0],[576000- 1363200- 576000- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 1- 0- 1- 0- 3- 1],[576000- 1363200- 576000- 0- 576000- 0- 2208000- 806400],70.26679785450781,2027.0225603714264,8.9839e+11,7.82141e-11 +311021-1-3,[3- 1- 1- 0- 2- 1- 1- 0- 0- 3- 0- 0- 0],[1804800- 576000- 576000- 0- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 1- 0- 2- 1- 1- 3],[1804800- 576000- 576000- 0- 1363200- 576000- 652800- 2400000],81.36673035917889,2322.680844681449,9.68465e+11,8.40162e-11 +101123-0-3,[1- 0- 1- 1- 2- 3- 0- 0- 0- 3- 0- 0- 0],[576000- 0- 576000- 576000- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 1- 1- 2- 3- 0- 3],[576000- 0- 576000- 576000- 1363200- 1804800- 0- 2400000],83.55503720757929,2400.8469096619842,1.09207e+12,7.65107e-11 +033033-1-1,[0- 3- 3- 0- 3- 3- 1- 0- 0- 1- 0- 0- 0],[0- 1804800- 1804800- 0- 1804800- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 3- 3- 0- 3- 3- 1- 1],[0- 1804800- 1804800- 0- 1804800- 1804800- 652800- 806400],65.40514012750133,1917.9917261448848,9.30263e+11,7.03082e-11 +323111-3-1,[3- 2- 3- 1- 1- 1- 3- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 1804800- 576000- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 3- 1- 1- 1- 3- 1],[1804800- 1363200- 1804800- 576000- 576000- 576000- 2208000- 806400],71.62302940370932,2102.505061610768,9.79622e+11,7.31129e-11 +231332-2-3,[2- 3- 1- 3- 3- 2- 2- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 576000- 1804800- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 1- 3- 3- 2- 2- 3],[1363200- 1804800- 576000- 1804800- 1804800- 1363200- 1478400- 2400000],102.71927305888926,2883.5027963902476,1.52028e+12,6.7566e-11 +121113-1-3,[1- 2- 1- 1- 1- 3- 1- 0- 0- 3- 0- 0- 0],[576000- 1363200- 576000- 576000- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 1- 1- 1- 3- 1- 3],[576000- 1363200- 576000- 576000- 576000- 1804800- 652800- 2400000],91.8755525545871,2608.889453586575,1.33424e+12,6.88598e-11 +012010-2-1,[0- 1- 2- 0- 1- 0- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 1363200- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 2- 0- 1- 0- 2- 1],[0- 576000- 1363200- 0- 576000- 0- 1478400- 806400],54.759214792815335,1604.6360909167668,7.43914e+11,7.36096e-11 +213113-3-3,[2- 1- 3- 1- 1- 3- 3- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1804800- 576000- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 3- 1- 1- 3- 3- 3],[1363200- 576000- 1804800- 576000- 576000- 1804800- 2208000- 2400000],103.60554277651346,2902.912492782362,1.58547e+12,6.53469e-11 +110030-0-1,[1- 1- 0- 0- 3- 0- 0- 0- 0- 1- 0- 0- 0],[576000- 576000- 0- 0- 1804800- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 0- 0- 3- 0- 0- 1],[576000- 576000- 0- 0- 1804800- 0- 0- 806400],34.24482893178767,1015.1783572821332,3.40358e+11,1.00614e-10 +113131-2-3,[1- 1- 3- 1- 3- 1- 2- 0- 0- 3- 0- 0- 0],[576000- 576000- 1804800- 576000- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[1- 1- 3- 1- 3- 1- 2- 3],[576000- 576000- 1804800- 576000- 1804800- 576000- 1478400- 2400000],96.20368654549321,2724.737664577322,1.21938e+12,7.88956e-11 +110301-1-0,[1- 1- 0- 3- 0- 1- 1- 0- 0- 0- 0- 0- 0],[576000- 576000- 0- 1804800- 0- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 1- 0- 3- 0- 1- 1- 0],[576000- 576000- 0- 1804800- 0- 576000- 652800- 0],,,, +312331-2-2,[3- 1- 2- 3- 3- 1- 2- 0- 0- 2- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 2- 3- 3- 1- 2- 2],[1804800- 576000- 1363200- 1804800- 1804800- 576000- 1478400- 1766400],72.97997306783202,2101.560547715594,1.15655e+12,6.31014e-11 +033333-0-2,[0- 3- 3- 3- 3- 3- 0- 0- 0- 2- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 3- 3- 3- 3- 0- 2],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 1766400],86.28019028410264,2479.169654936471,1.16019e+12,7.43673e-11 +013210-1-1,[0- 1- 3- 2- 1- 0- 1- 0- 0- 1- 0- 0- 0],[0- 576000- 1804800- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 3- 2- 1- 0- 1- 1],[0- 576000- 1804800- 1363200- 576000- 0- 652800- 806400],39.21830516030575,1161.3358627728906,5.649e+11,6.94252e-11 +223033-0-0,[2- 2- 3- 0- 3- 3- 0- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 0- 3- 3- 0- 0],[1363200- 1363200- 1804800- 0- 1804800- 1804800- 0- 0],55.65490417434582,1645.808702415194,6.58846e+11,8.44733e-11 +001200-2-2,[0- 0- 1- 2- 0- 0- 2- 0- 0- 2- 0- 0- 0],[0- 0- 576000- 1363200- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 1- 2- 0- 0- 2- 2],[0- 0- 576000- 1363200- 0- 0- 1478400- 1766400],70.00785826866294,2024.0442334742975,9.72109e+11,7.20165e-11 +013210-3-1,[0- 1- 3- 2- 1- 0- 3- 0- 0- 1- 0- 0- 0],[0- 576000- 1804800- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 3- 2- 1- 0- 3- 1],[0- 576000- 1804800- 1363200- 576000- 0- 2208000- 806400],79.19218141904369,2285.7826209714444,9.4071e+11,8.41834e-11 +300102-3-0,[3- 0- 0- 1- 0- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 0- 576000- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 0- 0- 1- 0- 2- 3- 0],[1804800- 0- 0- 576000- 0- 1363200- 2208000- 0],65.75904258223515,1919.52303565257,8.13702e+11,8.08147e-11 +211331-0-2,[2- 1- 1- 3- 3- 1- 0- 0- 0- 2- 0- 0- 0],[1363200- 576000- 576000- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 1- 3- 3- 1- 0- 2],[1363200- 576000- 576000- 1804800- 1804800- 576000- 0- 1766400],56.04631584852196,1640.6869847759508,7.52107e+11,7.45191e-11 +230023-3-0,[2- 3- 0- 0- 2- 3- 3- 0- 0- 0- 0- 0- 0],[1363200- 1804800- 0- 0- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 3- 0- 0- 2- 3- 3- 0],[1363200- 1804800- 0- 0- 1363200- 1804800- 2208000- 0],83.53876408032023,2402.3515864490178,1.05192e+12,7.94155e-11 +212202-2-1,[2- 1- 2- 2- 0- 2- 2- 0- 0- 1- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 2- 2- 0- 2- 2- 1],[1363200- 576000- 1363200- 1363200- 0- 1363200- 1478400- 806400],70.04876543327691,2030.0825821707203,1.13586e+12,6.16702e-11 +010023-0-1,[0- 1- 0- 0- 2- 3- 0- 0- 0- 1- 0- 0- 0],[0- 576000- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 0- 0- 2- 3- 0- 1],[0- 576000- 0- 0- 1363200- 1804800- 0- 806400],52.63463241005343,1553.818939035107,6.10977e+11,8.61483e-11 +012112-2-0,[0- 1- 2- 1- 1- 2- 2- 0- 0- 0- 0- 0- 0],[0- 576000- 1363200- 576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0],[0- 1- 2- 1- 1- 2- 2- 0],[0- 576000- 1363200- 576000- 576000- 1363200- 1478400- 0],57.28735510379159,1681.1410201807466,9.01273e+11,6.35627e-11 +303122-3-1,[3- 0- 3- 1- 2- 2- 3- 0- 0- 1- 0- 0- 0],[1804800- 0- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 806400- 0- 0- 0],[3- 0- 3- 1- 2- 2- 3- 1],[1804800- 0- 1804800- 576000- 1363200- 1363200- 2208000- 806400],87.16159880059074,2488.1210445620077,1.23095e+12,7.08084e-11 +332113-2-2,[3- 3- 2- 1- 1- 3- 2- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 1363200- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 2- 1- 1- 3- 2- 2],[1804800- 1804800- 1363200- 576000- 576000- 1804800- 1478400- 1766400],102.94550109820787,2894.9013631386933,1.56709e+12,6.56921e-11 +322231-2-1,[3- 2- 2- 2- 3- 1- 2- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 1363200- 1363200- 1804800- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 2- 2- 3- 1- 2- 1],[1804800- 1363200- 1363200- 1363200- 1804800- 576000- 1478400- 806400],58.69220295824907,1711.0675106932808,8.80803e+11,6.66349e-11 +103311-2-1,[1- 0- 3- 3- 1- 1- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 1804800- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 3- 3- 1- 1- 2- 1],[576000- 0- 1804800- 1804800- 576000- 576000- 1478400- 806400],57.32050722948231,1685.7075501844154,8.47131e+11,6.76643e-11 +100110-0-2,[1- 0- 0- 1- 1- 0- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 0- 576000- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 0- 1- 1- 0- 0- 2],[576000- 0- 0- 576000- 576000- 0- 0- 1766400],51.63079044329604,1528.043813094805,6.03622e+11,8.5535e-11 +212300-1-2,[2- 1- 2- 3- 0- 0- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 2- 3- 0- 0- 1- 2],[1363200- 576000- 1363200- 1804800- 0- 0- 652800- 1766400],62.95263893840844,1833.1021117864593,8.41124e+11,7.48435e-11 +000300-2-3,[0- 0- 0- 3- 0- 0- 2- 0- 0- 3- 0- 0- 0],[0- 0- 0- 1804800- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 0- 0- 3- 0- 0- 2- 3],[0- 0- 0- 1804800- 0- 0- 1478400- 2400000],90.26627224130026,2565.1328150565437,9.98659e+11,9.03875e-11 +030310-0-2,[0- 3- 0- 3- 1- 0- 0- 0- 0- 2- 0- 0- 0],[0- 1804800- 0- 1804800- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 0- 3- 1- 0- 0- 2],[0- 1804800- 0- 1804800- 576000- 0- 0- 1766400],52.69028627771887,1546.2211776326933,6.11588e+11,8.61532e-11 +331220-1-2,[3- 3- 1- 2- 2- 0- 1- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 1- 2- 2- 0- 1- 2],[1804800- 1804800- 576000- 1363200- 1363200- 0- 652800- 1766400],64.60012840965275,1877.8294637111856,8.89727e+11,7.26067e-11 +233212-0-1,[2- 3- 3- 2- 1- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 3- 2- 1- 2- 0- 1],[1363200- 1804800- 1804800- 1363200- 576000- 1363200- 0- 806400],52.12458827609526,1531.4338654213584,8.16621e+11,6.38296e-11 +310233-0-1,[3- 1- 0- 2- 3- 3- 0- 0- 0- 1- 0- 0- 0],[1804800- 576000- 0- 1363200- 1804800- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 1- 0- 2- 3- 3- 0- 1],[1804800- 576000- 0- 1363200- 1804800- 1804800- 0- 806400],65.84611012859935,1928.8560152173884,8.85729e+11,7.43411e-11 +031030-0-3,[0- 3- 1- 0- 3- 0- 0- 0- 0- 3- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 3- 1- 0- 3- 0- 0- 3],[0- 1804800- 576000- 0- 1804800- 0- 0- 2400000],67.14832576851565,1943.7829217421458,6.98028e+11,9.61972e-11 +031130-0-0,[0- 3- 1- 1- 3- 0- 0- 0- 0- 0- 0- 0- 0],[0- 1804800- 576000- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[0- 3- 1- 1- 3- 0- 0- 0],[0- 1804800- 576000- 576000- 1804800- 0- 0- 0],26.718484600440785,800.8363881382367,1.63295e+11,1.63621e-10 +101033-2-2,[1- 0- 1- 0- 3- 3- 2- 0- 0- 2- 0- 0- 0],[576000- 0- 576000- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 1- 0- 3- 3- 2- 2],[576000- 0- 576000- 0- 1804800- 1804800- 1478400- 1766400],99.11995127339326,2791.588025231253,1.39239e+12,7.11869e-11 +101312-2-1,[1- 0- 1- 3- 1- 2- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 576000- 1804800- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 1- 3- 1- 2- 2- 1],[576000- 0- 576000- 1804800- 576000- 1363200- 1478400- 806400],71.58128595647264,2061.58217530693,1.12287e+12,6.37485e-11 +212211-1-2,[2- 1- 2- 2- 1- 1- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 2- 2- 1- 1- 1- 2],[1363200- 576000- 1363200- 1363200- 576000- 576000- 652800- 1766400],66.38421729942988,1910.090804941963,9.18121e+11,7.23044e-11 +103012-3-3,[1- 0- 3- 0- 1- 2- 3- 0- 0- 3- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 3- 0- 1- 2- 3- 3],[576000- 0- 1804800- 0- 576000- 1363200- 2208000- 2400000],90.73764286412444,2577.667258772693,1.27759e+12,7.10225e-11 +101300-3-3,[1- 0- 1- 3- 0- 0- 3- 0- 0- 3- 0- 0- 0],[576000- 0- 576000- 1804800- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 1- 3- 0- 0- 3- 3],[576000- 0- 576000- 1804800- 0- 0- 2208000- 2400000],75.38493717058807,2175.3485619937737,9.2885e+11,8.11594e-11 +220213-3-0,[2- 2- 0- 2- 1- 3- 3- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 0- 1363200- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 2- 0- 2- 1- 3- 3- 0],[1363200- 1363200- 0- 1363200- 576000- 1804800- 2208000- 0],69.11548762277219,2003.3469577936298,1.00222e+12,6.89624e-11 +221013-2-1,[2- 2- 1- 0- 1- 3- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 576000- 0- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 1- 0- 1- 3- 2- 1],[1363200- 1363200- 576000- 0- 576000- 1804800- 1478400- 806400],79.53781059795848,2284.6340423775605,1.19867e+12,6.63551e-11 +223020-1-0,[2- 2- 3- 0- 2- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 0- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 0- 2- 0- 1- 0],[1363200- 1363200- 1804800- 0- 1363200- 0- 652800- 0],32.39112671607193,972.1570943871941,3.4061e+11,9.50974e-11 +201133-0-3,[2- 0- 1- 1- 3- 3- 0- 0- 0- 3- 0- 0- 0],[1363200- 0- 576000- 576000- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 1- 1- 3- 3- 0- 3],[1363200- 0- 576000- 576000- 1804800- 1804800- 0- 2400000],86.42250330413741,2480.7412559878835,1.1097e+12,7.78792e-11 +111202-3-1,[1- 1- 1- 2- 0- 2- 3- 0- 0- 1- 0- 0- 0],[576000- 576000- 576000- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 1- 2- 0- 2- 3- 1],[576000- 576000- 576000- 1363200- 0- 1363200- 2208000- 806400],77.6142915980758,2223.75481515976,1.17379e+12,6.61228e-11 +311111-2-3,[3- 1- 1- 1- 1- 1- 2- 0- 0- 3- 0- 0- 0],[1804800- 576000- 576000- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 1- 1- 1- 1- 2- 3],[1804800- 576000- 576000- 576000- 576000- 576000- 1478400- 2400000],80.57967434382498,2304.09668122715,1.14822e+12,7.01779e-11 +212221-1-3,[2- 1- 2- 2- 2- 1- 1- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 2- 2- 2- 1- 1- 3],[1363200- 576000- 1363200- 1363200- 1363200- 576000- 652800- 2400000],71.22940339453208,2051.4272754145477,9.42341e+11,7.55877e-11 +121310-1-0,[1- 2- 1- 3- 1- 0- 1- 0- 0- 0- 0- 0- 0],[576000- 1363200- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 1- 3- 1- 0- 1- 0],[576000- 1363200- 576000- 1804800- 576000- 0- 652800- 0],33.55559771119761,1008.2701617354489,3.84524e+11,8.72653e-11 +133032-0-3,[1- 3- 3- 0- 3- 2- 0- 0- 0- 3- 0- 0- 0],[576000- 1804800- 1804800- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 3- 0- 3- 2- 0- 3],[576000- 1804800- 1804800- 0- 1804800- 1363200- 0- 2400000],78.8740772526803,2267.856807109505,1.05063e+12,7.50731e-11 +310020-0-3,[3- 1- 0- 0- 2- 0- 0- 0- 0- 3- 0- 0- 0],[1804800- 576000- 0- 0- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 0- 0- 2- 0- 0- 3],[1804800- 576000- 0- 0- 1363200- 0- 0- 2400000],63.369075256404706,1829.758613273226,6.7706e+11,9.35945e-11 +022230-3-2,[0- 2- 2- 2- 3- 0- 3- 0- 0- 2- 0- 0- 0],[0- 1363200- 1363200- 1363200- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 2- 2- 3- 0- 3- 2],[0- 1363200- 1363200- 1363200- 1804800- 0- 2208000- 1766400],79.7127969833484,2290.1507416928475,1.09734e+12,7.26418e-11 +222111-2-0,[2- 2- 2- 1- 1- 1- 2- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1363200- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[2- 2- 2- 1- 1- 1- 2- 0],[1363200- 1363200- 1363200- 576000- 576000- 576000- 1478400- 0],46.313398205240674,1387.1044335870852,6.69726e+11,6.91528e-11 +333201-1-1,[3- 3- 3- 2- 0- 1- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 1804800- 1363200- 0- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 3- 2- 0- 1- 1- 1],[1804800- 1804800- 1804800- 1363200- 0- 576000- 652800- 806400],41.17166064099707,1226.37855642177,6.02738e+11,6.83077e-11 +333331-2-3,[3- 3- 3- 3- 3- 1- 2- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 1804800- 1804800- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 3- 3- 3- 1- 2- 3],[1804800- 1804800- 1804800- 1804800- 1804800- 576000- 1478400- 2400000],84.3646166621502,2404.686678015139,1.16614e+12,7.23452e-11 +223300-1-0,[2- 2- 3- 3- 0- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 3- 0- 0- 1- 0],[1363200- 1363200- 1804800- 1804800- 0- 0- 652800- 0],32.18591274234294,970.219892749496,3.40653e+11,9.4483e-11 +222021-0-0,[2- 2- 2- 0- 2- 1- 0- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1363200- 0- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[2- 2- 2- 0- 2- 1- 0- 0],[1363200- 1363200- 1363200- 0- 1363200- 576000- 0- 0],28.6387646642511,860.5237255752471,2.06752e+11,1.38517e-10 +120302-1-1,[1- 2- 0- 3- 0- 2- 1- 0- 0- 1- 0- 0- 0],[576000- 1363200- 0- 1804800- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 0- 3- 0- 2- 1- 1],[576000- 1363200- 0- 1804800- 0- 1363200- 652800- 806400],50.342867001247434,1487.9371518763016,7.88934e+11,6.38113e-11 +031023-3-2,[0- 3- 1- 0- 2- 3- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 576000- 0- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 1- 0- 2- 3- 3- 2],[0- 1804800- 576000- 0- 1363200- 1804800- 2208000- 1766400],92.82498335682985,2613.6362923078614,1.30917e+12,7.09037e-11 +022202-0-0,[0- 2- 2- 2- 0- 2- 0- 0- 0- 0- 0- 0- 0],[0- 1363200- 1363200- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[0- 2- 2- 2- 0- 2- 0- 0],[0- 1363200- 1363200- 1363200- 0- 1363200- 0- 0],35.886881209120574,1079.9965884712321,3.90812e+11,9.18265e-11 +031033-1-0,[0- 3- 1- 0- 3- 3- 1- 0- 0- 0- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 1- 0- 3- 3- 1- 0],[0- 1804800- 576000- 0- 1804800- 1804800- 652800- 0],57.52818237643229,1702.4120855111084,7.03011e+11,8.18311e-11 +002133-2-3,[0- 0- 2- 1- 3- 3- 2- 0- 0- 3- 0- 0- 0],[0- 0- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 0- 2- 1- 3- 3- 2- 3],[0- 0- 1363200- 576000- 1804800- 1804800- 1478400- 2400000],84.94049368350981,2431.038534751061,1.22707e+12,6.92222e-11 +312022-1-0,[3- 1- 2- 0- 2- 2- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 0- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 0- 2- 2- 1- 0],[1804800- 576000- 1363200- 0- 1363200- 1363200- 652800- 0],45.24365896509406,1346.1041722359714,6.68619e+11,6.76673e-11 +021113-1-2,[0- 2- 1- 1- 1- 3- 1- 0- 0- 2- 0- 0- 0],[0- 1363200- 576000- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 1- 1- 1- 3- 1- 2],[0- 1363200- 576000- 576000- 576000- 1804800- 652800- 1766400],82.63357568229627,2360.7560105587063,1.18276e+12,6.9865e-11 +100000-0-2,[1- 0- 0- 0- 0- 0- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 0- 0- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 0- 0- 0- 0- 0- 2],[576000- 0- 0- 0- 0- 0- 0- 1766400],50.709693068971596,1489.9325610448352,5.10917e+11,9.92523e-11 +121232-2-3,[1- 2- 1- 2- 3- 2- 2- 0- 0- 3- 0- 0- 0],[576000- 1363200- 576000- 1363200- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 1- 2- 3- 2- 2- 3],[576000- 1363200- 576000- 1363200- 1804800- 1363200- 1478400- 2400000],81.90774634846164,2344.15495135048,1.29614e+12,6.31936e-11 +303132-0-2,[3- 0- 3- 1- 3- 2- 0- 0- 0- 2- 0- 0- 0],[1804800- 0- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 3- 1- 3- 2- 0- 2],[1804800- 0- 1804800- 576000- 1804800- 1363200- 0- 1766400],69.59259375454518,2025.437864080998,9.83338e+11,7.07718e-11 +331303-2-1,[3- 3- 1- 3- 0- 3- 2- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 3- 0- 3- 2- 1],[1804800- 1804800- 576000- 1804800- 0- 1804800- 1478400- 806400],74.96251592656157,2166.243408492027,1.13569e+12,6.60061e-11 +303323-2-0,[3- 0- 3- 3- 2- 3- 2- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 3- 2- 3- 2- 0],[1804800- 0- 1804800- 1804800- 1363200- 1804800- 1478400- 0],59.63294036779465,1732.1045444832291,9.04021e+11,6.59641e-11 +210320-1-2,[2- 1- 0- 3- 2- 0- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 0- 1804800- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 0- 3- 2- 0- 1- 2],[1363200- 576000- 0- 1804800- 1363200- 0- 652800- 1766400],64.76813141094603,1886.1124465742669,8.40461e+11,7.70626e-11 +122220-2-3,[1- 2- 2- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0],[576000- 1363200- 1363200- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 2- 2- 2- 0- 2- 3],[576000- 1363200- 1363200- 1363200- 1363200- 0- 1478400- 2400000],79.57388847668085,2279.0190990913343,1.11825e+12,7.11593e-11 +231021-3-3,[2- 3- 1- 0- 2- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 576000- 0- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 1- 0- 2- 1- 3- 3],[1363200- 1804800- 576000- 0- 1363200- 576000- 2208000- 2400000],77.64736959332065,2229.0935928899457,1.11196e+12,6.98293e-11 +310302-1-2,[3- 1- 0- 3- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1804800- 576000- 0- 1804800- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 0- 3- 0- 2- 1- 2],[1804800- 576000- 0- 1804800- 0- 1363200- 652800- 1766400],75.67855624913193,2184.8584945021903,1.06888e+12,7.08017e-11 +331220-0-1,[3- 3- 1- 2- 2- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 2- 2- 0- 0- 1],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 806400],36.95819044674891,1104.7147148687056,4.33988e+11,8.51595e-11 +312321-1-0,[3- 1- 2- 3- 2- 1- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 3- 2- 1- 1- 0],[1804800- 576000- 1363200- 1804800- 1363200- 576000- 652800- 0],34.55508197516717,1050.4296749923697,4.29951e+11,8.03698e-11 +023300-2-1,[0- 2- 3- 3- 0- 0- 2- 0- 0- 1- 0- 0- 0],[0- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 2- 3- 3- 0- 0- 2- 1],[0- 1363200- 1804800- 1804800- 0- 0- 1478400- 806400],55.14744777471451,1626.339303905674,7.55228e+11,7.30209e-11 +331312-0-2,[3- 3- 1- 3- 1- 2- 0- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 1- 3- 1- 2- 0- 2],[1804800- 1804800- 576000- 1804800- 576000- 1363200- 0- 1766400],72.3253528074643,2088.1550829670355,1.09293e+12,6.61756e-11 +130333-0-0,[1- 3- 0- 3- 3- 3- 0- 0- 0- 0- 0- 0- 0],[576000- 1804800- 0- 1804800- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[1- 3- 0- 3- 3- 3- 0- 0],[576000- 1804800- 0- 1804800- 1804800- 1804800- 0- 0],57.50707870612485,1691.3731403516902,6.59131e+11,8.72468e-11 +310330-3-0,[3- 1- 0- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[3- 1- 0- 3- 3- 0- 3- 0],[1804800- 576000- 0- 1804800- 1804800- 0- 2208000- 0],51.759671020329485,1536.7681456385337,6.47698e+11,7.99133e-11 +203110-1-0,[2- 0- 3- 1- 1- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 0- 1804800- 576000- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[2- 0- 3- 1- 1- 0- 1- 0],[1363200- 0- 1804800- 576000- 576000- 0- 652800- 0],31.39344479946131,958.812485398494,3.41309e+11,9.19795e-11 +002102-3-1,[0- 0- 2- 1- 0- 2- 3- 0- 0- 1- 0- 0- 0],[0- 0- 1363200- 576000- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 2- 1- 0- 2- 3- 1],[0- 0- 1363200- 576000- 0- 1363200- 2208000- 806400],76.07984502823773,2213.362172294747,1.01532e+12,7.49319e-11 +210032-2-1,[2- 1- 0- 0- 3- 2- 2- 0- 0- 1- 0- 0- 0],[1363200- 576000- 0- 0- 1804800- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 0- 0- 3- 2- 2- 1],[1363200- 576000- 0- 0- 1804800- 1363200- 1478400- 806400],67.23235049394249,1961.7404351612493,1.02516e+12,6.55823e-11 +201120-0-2,[2- 0- 1- 1- 2- 0- 0- 0- 0- 2- 0- 0- 0],[1363200- 0- 576000- 576000- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 1- 1- 2- 0- 0- 2],[1363200- 0- 576000- 576000- 1363200- 0- 0- 1766400],54.463962549440836,1595.5684547060157,6.59458e+11,8.2589e-11 +233220-2-3,[2- 3- 3- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 3- 2- 2- 0- 2- 3],[1363200- 1804800- 1804800- 1363200- 1363200- 0- 1478400- 2400000],83.70346599941726,2395.2012575700996,1.15012e+12,7.2778e-11 +231002-0-2,[2- 3- 1- 0- 0- 2- 0- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 576000- 0- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 1- 0- 0- 2- 0- 2],[1363200- 1804800- 576000- 0- 0- 1363200- 0- 1766400],65.14069642375982,1890.1184563851375,8.87229e+11,7.34204e-11 +030330-3-0,[0- 3- 0- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0],[0- 1804800- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[0- 3- 0- 3- 3- 0- 3- 0],[0- 1804800- 0- 1804800- 1804800- 0- 2208000- 0],50.831734844515765,1493.901925427906,5.9688e+11,8.51624e-11 +133012-3-3,[1- 3- 3- 0- 1- 2- 3- 0- 0- 3- 0- 0- 0],[576000- 1804800- 1804800- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 3- 0- 1- 2- 3- 3],[576000- 1804800- 1804800- 0- 576000- 1363200- 2208000- 2400000],95.62204283286107,2705.4692200669992,1.40155e+12,6.82259e-11 +321323-0-1,[3- 2- 1- 3- 2- 3- 0- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 576000- 1804800- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 1- 3- 2- 3- 0- 1],[1804800- 1363200- 576000- 1804800- 1363200- 1804800- 0- 806400],62.56186906174149,1824.0525642003133,9.07657e+11,6.89268e-11 +203332-2-2,[2- 0- 3- 3- 3- 2- 2- 0- 0- 2- 0- 0- 0],[1363200- 0- 1804800- 1804800- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 3- 3- 3- 2- 2- 2],[1363200- 0- 1804800- 1804800- 1804800- 1363200- 1478400- 1766400],91.4259968153942,2597.605567275378,1.40668e+12,6.49942e-11 +020230-3-3,[0- 2- 0- 2- 3- 0- 3- 0- 0- 3- 0- 0- 0],[0- 1363200- 0- 1363200- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 2- 0- 2- 3- 0- 3- 3],[0- 1363200- 0- 1363200- 1804800- 0- 2208000- 2400000],75.21208822342585,2174.515058906492,9.7966e+11,7.67737e-11 +123032-0-0,[1- 2- 3- 0- 3- 2- 0- 0- 0- 0- 0- 0- 0],[576000- 1363200- 1804800- 0- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[1- 2- 3- 0- 3- 2- 0- 0],[576000- 1363200- 1804800- 0- 1804800- 1363200- 0- 0],39.90852032820992,1189.6768876992253,4.907e+11,8.13298e-11 +112000-1-1,[1- 1- 2- 0- 0- 0- 1- 0- 0- 1- 0- 0- 0],[576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 2- 0- 0- 0- 1- 1],[576000- 576000- 1363200- 0- 0- 0- 652800- 806400],37.84095602603743,1143.7152550478131,5.1347e+11,7.36965e-11 +233223-1-3,[2- 3- 3- 2- 2- 3- 1- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 3- 2- 2- 3- 1- 3],[1363200- 1804800- 1804800- 1363200- 1363200- 1804800- 652800- 2400000],97.36713832789094,2744.370579956813,1.36503e+12,7.13297e-11 +201011-3-1,[2- 0- 1- 0- 1- 1- 3- 0- 0- 1- 0- 0- 0],[1363200- 0- 576000- 0- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 0- 1- 0- 1- 1- 3- 1],[1363200- 0- 576000- 0- 576000- 576000- 2208000- 806400],67.8209046191028,1972.8217966734112,8.75436e+11,7.7471e-11 +023023-2-2,[0- 2- 3- 0- 2- 3- 2- 0- 0- 2- 0- 0- 0],[0- 1363200- 1804800- 0- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 3- 0- 2- 3- 2- 2],[0- 1363200- 1804800- 0- 1363200- 1804800- 1478400- 1766400],94.01356557156547,2669.4366634626,1.35022e+12,6.96283e-11 +110203-3-1,[1- 1- 0- 2- 0- 3- 3- 0- 0- 1- 0- 0- 0],[576000- 576000- 0- 1363200- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 0- 2- 0- 3- 3- 1],[576000- 576000- 0- 1363200- 0- 1804800- 2208000- 806400],74.94031903983446,2164.6593062207508,1.08732e+12,6.8922e-11 +123013-0-2,[1- 2- 3- 0- 1- 3- 0- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1804800- 0- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 3- 0- 1- 3- 0- 2],[576000- 1363200- 1804800- 0- 576000- 1804800- 0- 1766400],79.87670274944627,2271.8548936735524,1.07584e+12,7.42459e-11 +030013-2-3,[0- 3- 0- 0- 1- 3- 2- 0- 0- 3- 0- 0- 0],[0- 1804800- 0- 0- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 3- 0- 0- 1- 3- 2- 3],[0- 1804800- 0- 0- 576000- 1804800- 1478400- 2400000],89.77689953351299,2560.2457949884315,1.2436e+12,7.21911e-11 +211233-3-3,[2- 1- 1- 2- 3- 3- 3- 0- 0- 3- 0- 0- 0],[1363200- 576000- 576000- 1363200- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 1- 2- 3- 3- 3- 3],[1363200- 576000- 576000- 1363200- 1804800- 1804800- 2208000- 2400000],99.84539163278055,2809.632370335377,1.53148e+12,6.51954e-11 +312133-1-0,[3- 1- 2- 1- 3- 3- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 1- 3- 3- 1- 0],[1804800- 576000- 1363200- 576000- 1804800- 1804800- 652800- 0],71.03565816321965,2054.13542328703,9.75387e+11,7.28282e-11 +103011-3-0,[1- 0- 3- 0- 1- 1- 3- 0- 0- 0- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 0- 3- 0- 1- 1- 3- 0],[576000- 0- 1804800- 0- 576000- 576000- 2208000- 0],57.51761758185517,1676.4572985741709,6.77999e+11,8.48344e-11 +331013-1-1,[3- 3- 1- 0- 1- 3- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 0- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 0- 1- 3- 1- 1],[1804800- 1804800- 576000- 0- 576000- 1804800- 652800- 806400],72.65063262132331,2104.2080644920193,1.0699e+12,6.79041e-11 +232202-1-2,[2- 3- 2- 2- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 2- 2- 0- 2- 1- 2],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 652800- 1766400],78.53563185437464,2257.449994289317,1.1728e+12,6.69642e-11 +122020-2-1,[1- 2- 2- 0- 2- 0- 2- 0- 0- 1- 0- 0- 0],[576000- 1363200- 1363200- 0- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 2- 0- 2- 0- 2- 1],[576000- 1363200- 1363200- 0- 1363200- 0- 1478400- 806400],56.569307311048235,1671.0078654914537,8.06364e+11,7.01536e-11 +002101-2-2,[0- 0- 2- 1- 0- 1- 2- 0- 0- 2- 0- 0- 0],[0- 0- 1363200- 576000- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 2- 1- 0- 1- 2- 2],[0- 0- 1363200- 576000- 0- 576000- 1478400- 1766400],73.251940060295,2114.0616603172207,1.02445e+12,7.15037e-11 +222311-2-1,[2- 2- 2- 3- 1- 1- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 1363200- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 2- 3- 1- 1- 2- 1],[1363200- 1363200- 1363200- 1804800- 576000- 576000- 1478400- 806400],58.732127058873786,1698.7968172849203,8.87255e+11,6.61953e-11 +122222-1-1,[1- 2- 2- 2- 2- 2- 1- 0- 0- 1- 0- 0- 0],[576000- 1363200- 1363200- 1363200- 1363200- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 2- 2- 2- 2- 1- 1],[576000- 1363200- 1363200- 1363200- 1363200- 1363200- 652800- 806400],55.74422771111133,1628.1395056714205,9.82802e+11,5.67197e-11 +302310-0-3,[3- 0- 2- 3- 1- 0- 0- 0- 0- 3- 0- 0- 0],[1804800- 0- 1363200- 1804800- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 0- 2- 3- 1- 0- 0- 3],[1804800- 0- 1363200- 1804800- 576000- 0- 0- 2400000],73.66242405568384,2147.375979499302,7.78591e+11,9.46099e-11 +100023-2-1,[1- 0- 0- 0- 2- 3- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 0- 0- 2- 3- 2- 1],[576000- 0- 0- 0- 1363200- 1804800- 1478400- 806400],75.66222827384192,2187.163625460558,1.02069e+12,7.41285e-11 +223101-2-3,[2- 2- 3- 1- 0- 1- 2- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 0- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 3- 1- 0- 1- 2- 3],[1363200- 1363200- 1804800- 576000- 0- 576000- 1478400- 2400000],93.41312456972355,2644.5999677679038,1.19012e+12,7.84905e-11 +102113-3-1,[1- 0- 2- 1- 1- 3- 3- 0- 0- 1- 0- 0- 0],[576000- 0- 1363200- 576000- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 2- 1- 1- 3- 3- 1],[576000- 0- 1363200- 576000- 576000- 1804800- 2208000- 806400],86.64121802786501,2474.784136711844,1.23156e+12,7.03508e-11 +210110-3-1,[2- 1- 0- 1- 1- 0- 3- 0- 0- 1- 0- 0- 0],[1363200- 576000- 0- 576000- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 0- 1- 1- 0- 3- 1],[1363200- 576000- 0- 576000- 576000- 0- 2208000- 806400],69.82264072209112,2034.8276536368553,8.79587e+11,7.93812e-11 +133120-3-1,[1- 3- 3- 1- 2- 0- 3- 0- 0- 1- 0- 0- 0],[576000- 1804800- 1804800- 576000- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 3- 3- 1- 2- 0- 3- 1],[576000- 1804800- 1804800- 576000- 1363200- 0- 2208000- 806400],72.51206634300377,2108.670137610827,9.46532e+11,7.66082e-11 +220110-2-0,[2- 2- 0- 1- 1- 0- 2- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 0- 1- 1- 0- 2- 0],[1363200- 1363200- 0- 576000- 576000- 0- 1478400- 0],42.62148641726577,1285.3235531792557,5.7613e+11,7.39789e-11 +000022-2-2,[0- 0- 0- 0- 2- 2- 2- 0- 0- 2- 0- 0- 0],[0- 0- 0- 0- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 0- 0- 2- 2- 2- 2],[0- 0- 0- 0- 1363200- 1363200- 1478400- 1766400],76.49718911479086,2215.38655995498,1.09247e+12,7.00222e-11 +331011-1-0,[3- 3- 1- 0- 1- 1- 1- 0- 0- 0- 0- 0- 0],[1804800- 1804800- 576000- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 3- 1- 0- 1- 1- 1- 0],[1804800- 1804800- 576000- 0- 576000- 576000- 652800- 0],33.426004138009084,1005.8580069447024,3.85489e+11,8.67107e-11 +313120-1-0,[3- 1- 3- 1- 2- 0- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1804800- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[3- 1- 3- 1- 2- 0- 1- 0],[1804800- 576000- 1804800- 576000- 1363200- 0- 652800- 0],32.00110574658165,963.491545911804,3.8575e+11,8.29581e-11 +033323-1-0,[0- 3- 3- 3- 2- 3- 1- 0- 0- 0- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 3- 3- 2- 3- 1- 0],[0- 1804800- 1804800- 1804800- 1363200- 1804800- 652800- 0],62.554391453303936,1833.750824285621,8.39388e+11,7.45238e-11 +203132-1-0,[2- 0- 3- 1- 3- 2- 1- 0- 0- 0- 0- 0- 0],[1363200- 0- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[2- 0- 3- 1- 3- 2- 1- 0],[1363200- 0- 1804800- 576000- 1804800- 1363200- 652800- 0],44.06724417000722,1321.8612944608974,6.68521e+11,6.59175e-11 +011221-2-1,[0- 1- 1- 2- 2- 1- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 576000- 1363200- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 1- 2- 2- 1- 2- 1],[0- 576000- 576000- 1363200- 1363200- 576000- 1478400- 806400],54.91344815396718,1617.6157201926121,8.19865e+11,6.69786e-11 +310331-2-0,[3- 1- 0- 3- 3- 1- 2- 0- 0- 0- 0- 0- 0],[1804800- 576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 1- 0- 3- 3- 1- 2- 0],[1804800- 576000- 0- 1804800- 1804800- 576000- 1478400- 0],44.38518553956916,1323.9400613598834,6.213e+11,7.14392e-11 +213313-3-2,[2- 1- 3- 3- 1- 3- 3- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1804800- 1804800- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 3- 3- 1- 3- 3- 2],[1363200- 576000- 1804800- 1804800- 576000- 1804800- 2208000- 1766400],112.25224665091591,3114.477176766953,1.64452e+12,6.82584e-11 +331213-0-3,[3- 3- 1- 2- 1- 3- 0- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 1- 2- 1- 3- 0- 3],[1804800- 1804800- 576000- 1363200- 576000- 1804800- 0- 2400000],89.05974394394951,2528.0126146003995,1.20991e+12,7.36086e-11 +130100-1-3,[1- 3- 0- 1- 0- 0- 1- 0- 0- 3- 0- 0- 0],[576000- 1804800- 0- 576000- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 0- 1- 0- 0- 1- 3],[576000- 1804800- 0- 576000- 0- 0- 652800- 2400000],77.62263429594756,2245.5712094884198,8.70626e+11,8.91573e-11 +120131-2-0,[1- 2- 0- 1- 3- 1- 2- 0- 0- 0- 0- 0- 0],[576000- 1363200- 0- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 2- 0- 1- 3- 1- 2- 0],[576000- 1363200- 0- 576000- 1804800- 576000- 1478400- 0],45.342545639677,1346.2514415526387,6.22642e+11,7.28228e-11 +022011-1-0,[0- 2- 2- 0- 1- 1- 1- 0- 0- 0- 0- 0- 0],[0- 1363200- 1363200- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[0- 2- 2- 0- 1- 1- 1- 0],[0- 1363200- 1363200- 0- 576000- 576000- 652800- 0],31.341899456093426,936.9509730870849,3.41243e+11,9.18463e-11 +100221-3-1,[1- 0- 0- 2- 2- 1- 3- 0- 0- 1- 0- 0- 0],[576000- 0- 0- 1363200- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 0- 2- 2- 1- 3- 1],[576000- 0- 0- 1363200- 1363200- 576000- 2208000- 806400],80.05266148220437,2308.2371009408257,9.29019e+11,8.6169e-11 +020100-0-0,[0- 2- 0- 1- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 1363200- 0- 576000- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 2- 0- 1- 0- 0- 0- 0],[0- 1363200- 0- 576000- 0- 0- 0- 0],23.517529380019138,721.8625975455387,7.74223e+10,3.03757e-10 +312302-3-0,[3- 1- 2- 3- 0- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 3- 0- 2- 3- 0],[1804800- 576000- 1363200- 1804800- 0- 1363200- 2208000- 0],76.69511022018362,2208.618672048525,1.04787e+12,7.31914e-11 +323322-3-0,[3- 2- 3- 3- 2- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1804800- 1804800- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 2- 3- 3- 2- 2- 3- 0],[1804800- 1363200- 1804800- 1804800- 1363200- 1363200- 2208000- 0],71.50799655718323,2086.1588247715063,1.10356e+12,6.47976e-11 +220023-2-1,[2- 2- 0- 0- 2- 3- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 0- 0- 2- 3- 2- 1],[1363200- 1363200- 0- 0- 1363200- 1804800- 1478400- 806400],84.77725099707202,2431.205996795268,1.16713e+12,7.26374e-11 +203300-2-2,[2- 0- 3- 3- 0- 0- 2- 0- 0- 2- 0- 0- 0],[1363200- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 3- 3- 0- 0- 2- 2],[1363200- 0- 1804800- 1804800- 0- 0- 1478400- 1766400],72.5489714103032,2093.642895187356,1.01333e+12,7.15946e-11 +322032-2-0,[3- 2- 2- 0- 3- 2- 2- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1363200- 0- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 2- 2- 0- 3- 2- 2- 0],[1804800- 1363200- 1363200- 0- 1804800- 1363200- 1478400- 0],58.26272085332204,1699.8367445320973,9.04706e+11,6.43996e-11 +220322-3-2,[2- 2- 0- 3- 2- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 1804800- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 3- 2- 2- 3- 2],[1363200- 1363200- 0- 1804800- 1363200- 1363200- 2208000- 1766400],98.0625210176743,2763.7185516736813,1.45063e+12,6.76e-11 +000111-3-0,[0- 0- 0- 1- 1- 1- 3- 0- 0- 0- 0- 0- 0],[0- 0- 0- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[0- 0- 0- 1- 1- 1- 3- 0],[0- 0- 0- 576000- 576000- 576000- 2208000- 0],49.44043521534966,1461.2723756766416,5.9504e+11,8.30876e-11 +312001-2-2,[3- 1- 2- 0- 0- 1- 2- 0- 0- 2- 0- 0- 0],[1804800- 576000- 1363200- 0- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 2- 0- 0- 1- 2- 2],[1804800- 576000- 1363200- 0- 0- 576000- 1478400- 1766400],74.86450876219871,2151.391615741615,1.07505e+12,6.96382e-11 +010120-2-1,[0- 1- 0- 1- 2- 0- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 0- 576000- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 0- 1- 2- 0- 2- 1],[0- 576000- 0- 576000- 1363200- 0- 1478400- 806400],55.393812091107414,1629.508103780605,7.47522e+11,7.41033e-11 +331232-0-0,[3- 3- 1- 2- 3- 2- 0- 0- 0- 0- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 3- 1- 2- 3- 2- 0- 0],[1804800- 1804800- 576000- 1363200- 1804800- 1363200- 0- 0],41.45286418152087,1242.2642589577565,5.91275e+11,7.01076e-11 +300313-3-2,[3- 0- 0- 3- 1- 3- 3- 0- 0- 2- 0- 0- 0],[1804800- 0- 0- 1804800- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 0- 3- 1- 3- 3- 2],[1804800- 0- 0- 1804800- 576000- 1804800- 2208000- 1766400],100.31118433935242,2831.1971330757806,1.38698e+12,7.23235e-11 +212212-0-3,[2- 1- 2- 2- 1- 2- 0- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 2- 2- 1- 2- 0- 3],[1363200- 576000- 1363200- 1363200- 576000- 1363200- 0- 2400000],77.64870096681723,2228.228574933852,1.12712e+12,6.88912e-11 +000200-2-1,[0- 0- 0- 2- 0- 0- 2- 0- 0- 1- 0- 0- 0],[0- 0- 0- 1363200- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 0- 2- 0- 0- 2- 1],[0- 0- 0- 1363200- 0- 0- 1478400- 806400],53.67795105862796,1581.427014753162,6.45068e+11,8.32129e-11 +331300-1-1,[3- 3- 1- 3- 0- 0- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 3- 0- 0- 1- 1],[1804800- 1804800- 576000- 1804800- 0- 0- 652800- 806400],39.91953246091407,1191.4982837438865,5.62703e+11,7.09425e-11 +320030-0-1,[3- 2- 0- 0- 3- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 0- 0- 1804800- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 0- 0- 3- 0- 0- 1],[1804800- 1363200- 0- 0- 1804800- 0- 0- 806400],33.41458275443868,999.8141535754397,3.41795e+11,9.77621e-11 +211113-2-0,[2- 1- 1- 1- 1- 3- 2- 0- 0- 0- 0- 0- 0],[1363200- 576000- 576000- 576000- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 1- 1- 1- 1- 3- 2- 0],[1363200- 576000- 576000- 576000- 576000- 1804800- 1478400- 0],83.10337815974803,2393.3818559636447,1.19542e+12,6.95181e-11 +230010-0-3,[2- 3- 0- 0- 1- 0- 0- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 0- 0- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 0- 0- 1- 0- 0- 3],[1363200- 1804800- 0- 0- 576000- 0- 0- 2400000],62.432404434312446,1825.3055660772145,6.76237e+11,9.23233e-11 +110030-1-2,[1- 1- 0- 0- 3- 0- 1- 0- 0- 2- 0- 0- 0],[576000- 576000- 0- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 1- 0- 0- 3- 0- 1- 2],[576000- 576000- 0- 0- 1804800- 0- 652800- 1766400],62.47550258991279,1812.4355728718463,7.92459e+11,7.88375e-11 +311112-3-0,[3- 1- 1- 1- 1- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 576000- 576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 1- 1- 1- 2- 3- 0],[1804800- 576000- 576000- 576000- 576000- 1363200- 2208000- 0],68.80220362293224,2008.4215000988772,1.08944e+12,6.31537e-11 +211312-3-2,[2- 1- 1- 3- 1- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 576000- 576000- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 1- 3- 1- 2- 3- 2],[1363200- 576000- 576000- 1804800- 576000- 1363200- 2208000- 1766400],95.92889375212452,2702.35223678427,1.4961e+12,6.41193e-11 +230102-0-1,[2- 3- 0- 1- 0- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 0- 576000- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 0- 1- 0- 2- 0- 1],[1363200- 1804800- 0- 576000- 0- 1363200- 0- 806400],43.997684197279504,1326.196984980002,6.16183e+11,7.14036e-11 +231030-3-2,[2- 3- 1- 0- 3- 0- 3- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 1- 0- 3- 0- 3- 2],[1363200- 1804800- 576000- 0- 1804800- 0- 2208000- 1766400],82.38382518631481,2357.5711628397657,1.11593e+12,7.38253e-11 +232011-1-1,[2- 3- 2- 0- 1- 1- 1- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1363200- 0- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 2- 0- 1- 1- 1- 1],[1363200- 1804800- 1363200- 0- 576000- 576000- 652800- 806400],41.79400885543495,1238.9509269626467,6.09225e+11,6.86019e-11 +303320-3-0,[3- 0- 3- 3- 2- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 3- 2- 0- 3- 0],[1804800- 0- 1804800- 1804800- 1363200- 0- 2208000- 0],55.19558724107311,1609.2038527953416,6.66775e+11,8.27799e-11 +130120-1-2,[1- 3- 0- 1- 2- 0- 1- 0- 0- 2- 0- 0- 0],[576000- 1804800- 0- 576000- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 3- 0- 1- 2- 0- 1- 2],[576000- 1804800- 0- 576000- 1363200- 0- 652800- 1766400],63.397171813329194,1848.829384873307,8.41747e+11,7.53162e-11 +310221-1-2,[3- 1- 0- 2- 2- 1- 1- 0- 0- 2- 0- 0- 0],[1804800- 576000- 0- 1363200- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 0- 2- 2- 1- 1- 2],[1804800- 576000- 0- 1363200- 1363200- 576000- 652800- 1766400],65.55575801658108,1906.3007436702721,8.90469e+11,7.36194e-11 +223111-1-3,[2- 2- 3- 1- 1- 1- 1- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 3- 1- 1- 1- 1- 3],[1363200- 1363200- 1804800- 576000- 576000- 576000- 652800- 2400000],70.98037404504579,2036.1466493619737,9.38774e+11,7.56097e-11 +132020-2-0,[1- 3- 2- 0- 2- 0- 2- 0- 0- 0- 0- 0- 0],[576000- 1804800- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[1- 3- 2- 0- 2- 0- 2- 0],[576000- 1804800- 1363200- 0- 1363200- 0- 1478400- 0],45.307260481440075,1331.8781443066184,5.75478e+11,7.87298e-11 +221303-0-2,[2- 2- 1- 3- 0- 3- 0- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 576000- 1804800- 0- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 1- 3- 0- 3- 0- 2],[1363200- 1363200- 576000- 1804800- 0- 1804800- 0- 1766400],75.80363843935183,2191.795009003242,1.03817e+12,7.30166e-11 +300010-0-1,[3- 0- 0- 0- 1- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 0- 0- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 0- 0- 0- 1- 0- 0- 1],[1804800- 0- 0- 0- 576000- 0- 0- 806400],32.19128675614942,975.724684697627,2.96221e+11,1.08673e-10 +223132-3-1,[2- 2- 3- 1- 3- 2- 3- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 3- 1- 3- 2- 3- 1],[1363200- 1363200- 1804800- 576000- 1804800- 1363200- 2208000- 806400],79.37209238305049,2267.3604267642004,1.25334e+12,6.33285e-11 +232302-1-2,[2- 3- 2- 3- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 1363200- 1804800- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 2- 3- 0- 2- 1- 2],[1363200- 1804800- 1363200- 1804800- 0- 1363200- 652800- 1766400],75.2161891555095,2161.204478807848,1.09803e+12,6.8501e-11 +203231-0-3,[2- 0- 3- 2- 3- 1- 0- 0- 0- 3- 0- 0- 0],[1363200- 0- 1804800- 1363200- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 3- 2- 3- 1- 0- 3],[1363200- 0- 1804800- 1363200- 1804800- 576000- 0- 2400000],58.06554327021427,1703.8874411638349,7.02004e+11,8.2714e-11 +220021-0-2,[2- 2- 0- 0- 2- 1- 0- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 0- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 0- 2- 1- 0- 2],[1363200- 1363200- 0- 0- 1363200- 576000- 0- 1766400],56.004272107212,1630.6115263798954,6.59934e+11,8.48634e-11 +103011-1-2,[1- 0- 3- 0- 1- 1- 1- 0- 0- 2- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 3- 0- 1- 1- 1- 2],[576000- 0- 1804800- 0- 576000- 576000- 652800- 1766400],64.78673539211334,1887.8542751838984,8.3696e+11,7.74072e-11 +003021-2-2,[0- 0- 3- 0- 2- 1- 2- 0- 0- 2- 0- 0- 0],[0- 0- 1804800- 0- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 3- 0- 2- 1- 2- 2],[0- 0- 1804800- 0- 1363200- 576000- 1478400- 1766400],73.39332579173903,2108.3343497435,9.95211e+11,7.37465e-11 +031210-2-1,[0- 3- 1- 2- 1- 0- 2- 0- 0- 1- 0- 0- 0],[0- 1804800- 576000- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 3- 1- 2- 1- 0- 2- 1],[0- 1804800- 576000- 1363200- 576000- 0- 1478400- 806400],57.894025364056084,1708.0342621471962,7.9567e+11,7.27614e-11 +122013-2-2,[1- 2- 2- 0- 1- 3- 2- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1363200- 0- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 2- 0- 1- 3- 2- 2],[576000- 1363200- 1363200- 0- 576000- 1804800- 1478400- 1766400],75.39267355847271,2160.5917185605367,1.15445e+12,6.53061e-11 +130103-0-0,[1- 3- 0- 1- 0- 3- 0- 0- 0- 0- 0- 0- 0],[576000- 1804800- 0- 576000- 0- 1804800- 0- 0- 0- 0- 0- 0- 0],[1- 3- 0- 1- 0- 3- 0- 0],[576000- 1804800- 0- 576000- 0- 1804800- 0- 0],38.64387932607257,1149.5860113843992,4.10896e+11,9.40478e-11 +031030-3-2,[0- 3- 1- 0- 3- 0- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 1- 0- 3- 0- 3- 2],[0- 1804800- 576000- 0- 1804800- 0- 2208000- 1766400],16.330794716303327,503.6252033526771,1.16019e+11,1.4076e-10 +123230-1-0,[1- 2- 3- 2- 3- 0- 1- 0- 0- 0- 0- 0- 0],[576000- 1363200- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 3- 2- 3- 0- 1- 0],[576000- 1363200- 1804800- 1363200- 1804800- 0- 652800- 0],13.489304835433197,413.7443611499084,7.56621e+10,1.78284e-10 +232202-0-1,[2- 3- 2- 2- 0- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 2- 2- 0- 2- 0- 1],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 806400],18.319136905988163,558.3477755985728,1.88126e+11,9.7377e-11 +310231-3-3,[3- 1- 0- 2- 3- 1- 3- 0- 0- 3- 0- 0- 0],[1804800- 576000- 0- 1363200- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 0- 2- 3- 1- 3- 3],[1804800- 576000- 0- 1363200- 1804800- 576000- 2208000- 2400000],14.083885843166811,434.2315258983434,7.54722e+10,1.8661e-10 +332330-2-3,[3- 3- 2- 3- 3- 0- 2- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 1363200- 1804800- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 2- 3- 3- 0- 2- 3],[1804800- 1804800- 1363200- 1804800- 1804800- 0- 1478400- 2400000],13.969796365122303,419.52322436077486,7.56197e+10,1.84738e-10 +133131-2-0,[1- 3- 3- 1- 3- 1- 2- 0- 0- 0- 0- 0- 0],[576000- 1804800- 1804800- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 3- 3- 1- 3- 1- 2- 0],[576000- 1804800- 1804800- 576000- 1804800- 576000- 1478400- 0],13.718933518274895,408.2858788332955,7.57918e+10,1.81008e-10 +102010-2-3,[1- 0- 2- 0- 1- 0- 2- 0- 0- 3- 0- 0- 0],[576000- 0- 1363200- 0- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 2- 0- 1- 0- 2- 3],[576000- 0- 1363200- 0- 576000- 0- 1478400- 2400000],12.924854702335335,396.0649708043325,7.60372e+10,1.69981e-10 +322333-2-2,[3- 2- 2- 3- 3- 3- 2- 0- 0- 2- 0- 0- 0],[1804800- 1363200- 1363200- 1804800- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 2- 2- 3- 3- 3- 2- 2],[1804800- 1363200- 1363200- 1804800- 1804800- 1804800- 1478400- 1766400],25.362321035561887,760.4184454078646,2.506e+11,1.01206e-10 +131002-2-3,[1- 3- 1- 0- 0- 2- 2- 0- 0- 3- 0- 0- 0],[576000- 1804800- 576000- 0- 0- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 1- 0- 0- 2- 2- 3],[576000- 1804800- 576000- 0- 0- 1363200- 1478400- 2400000],18.118834151678566,550.8563690563017,1.88485e+11,9.61288e-11 +321032-1-3,[3- 2- 1- 0- 3- 2- 1- 0- 0- 3- 0- 0- 0],[1804800- 1363200- 576000- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[3- 2- 1- 0- 3- 2- 1- 3],[1804800- 1363200- 576000- 0- 1804800- 1363200- 652800- 2400000],17.977618394651746,547.3355103576089,1.88372e+11,9.54368e-11 +032033-1-2,[0- 3- 2- 0- 3- 3- 1- 0- 0- 2- 0- 0- 0],[0- 1804800- 1363200- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 2- 0- 3- 3- 1- 2],[0- 1804800- 1363200- 0- 1804800- 1804800- 652800- 1766400],24.592489908322676,745.5075209770739,2.5271e+11,9.73151e-11 +030211-3-2,[0- 3- 0- 2- 1- 1- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 0- 1363200- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 0- 2- 1- 1- 3- 2],[0- 1804800- 0- 1363200- 576000- 576000- 2208000- 1766400],13.650487301651792,422.4962322125926,7.53508e+10,1.81159e-10 +223202-3-2,[2- 2- 3- 2- 0- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 1804800- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 3- 2- 0- 2- 3- 2],[1363200- 1363200- 1804800- 1363200- 0- 1363200- 2208000- 1766400],17.984386490348996,539.5300748085291,1.88258e+11,9.55305e-11 +120330-0-0,[1- 2- 0- 3- 3- 0- 0- 0- 0- 0- 0- 0- 0],[576000- 1363200- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 0- 3- 3- 0- 0- 0],[576000- 1363200- 0- 1804800- 1804800- 0- 0- 0],13.832370091713534,411.9842188365759,7.65795e+10,1.80628e-10 +123122-1-2,[1- 2- 3- 1- 2- 2- 1- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 3- 1- 2- 2- 1- 2],[576000- 1363200- 1804800- 576000- 1363200- 1363200- 652800- 1766400],17.817170987597265,544.461115773839,1.87451e+11,9.50498e-11 +021212-1-1,[0- 2- 1- 2- 1- 2- 1- 0- 0- 1- 0- 0- 0],[0- 1363200- 576000- 1363200- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[0- 2- 1- 2- 1- 2- 1- 1],[0- 1363200- 576000- 1363200- 576000- 1363200- 652800- 806400],17.813632878987246,547.2259882125591,1.8832e+11,9.45924e-11 +303001-3-0,[3- 0- 3- 0- 0- 1- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 0- 0- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 0- 0- 1- 3- 0],[1804800- 0- 1804800- 0- 0- 576000- 2208000- 0],14.439976795029349,438.9760345271605,7.65773e+10,1.88567e-10 +033333-0-0,[0- 3- 3- 3- 3- 3- 0- 0- 0- 0- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 3- 3- 3- 3- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0],24.028068778138472,730.411225048072,2.5288e+11,9.50177e-11 diff --git a/experiment_automatization/summary_files_only/summary_fourth_experiments.csv b/experiment_automatization/summary_files_only/summary_fourth_experiments.csv new file mode 100755 index 0000000000000000000000000000000000000000..864601a5baa8a957dc34d9e49ab869b730dd2d21 --- /dev/null +++ b/experiment_automatization/summary_files_only/summary_fourth_experiments.csv @@ -0,0 +1,199 @@ +configurations,generic format,exact frequency,google pixel format,exact frequencies,phone energy,phone power,workload,energy by workload +110331-1-2,[1- 1- 0- 3- 3- 1- 1- 0- 0- 2- 0- 0- 0],[576000- 576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[1- 1- 0- 3- 3- 1- 1- 2],[576000- 576000- 0- 1804800- 1804800- 576000- 652800- 1766400],64.195799103128,1870.27221337168,887774000000,7.2311E-11 +231322-1-0,[2- 3- 1- 3- 2- 2- 1- 0- 0- 0- 0- 0- 0],[1363200- 1804800- 576000- 1804800- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[2- 3- 1- 3- 2- 2- 1- 0],[1363200- 1804800- 576000- 1804800- 1363200- 1363200- 652800- 0],48.4114598927455,1442.18368563072,768047000000,6.30319E-11 +203111-3-3,[2- 0- 3- 1- 1- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 0- 1804800- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 3- 1- 1- 1- 3- 3],[1363200- 0- 1804800- 576000- 576000- 576000- 2208000- 2400000],82.9156109905908,2370.44595570604,1124420000000,7.37408E-11 +222211-3-3,[2- 2- 2- 2- 1- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1363200- 1363200- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 2- 2- 1- 1- 3- 3],[1363200- 1363200- 1363200- 1363200- 576000- 576000- 2208000- 2400000],100.207122447555,2815.56321728583,1264290000000,7.92596E-11 +001213-3-1,[0- 0- 1- 2- 1- 3- 3- 0- 0- 1- 0- 0- 0],[0- 0- 576000- 1363200- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 1- 2- 1- 3- 3- 1],[0- 0- 576000- 1363200- 576000- 1804800- 2208000- 806400],82.9689480595376,2387.89201304909,1137720000000,7.29256E-11 +033331-1-2,[0- 3- 3- 3- 3- 1- 1- 0- 0- 2- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 3- 3- 3- 1- 1- 2],[0- 1804800- 1804800- 1804800- 1804800- 576000- 652800- 1766400],64.6497062836685,1880.86289806615,888481000000,7.27643E-11 +301032-1-2,[3- 0- 1- 0- 3- 2- 1- 0- 0- 2- 0- 0- 0],[1804800- 0- 576000- 0- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 1- 0- 3- 2- 1- 2],[1804800- 0- 576000- 0- 1804800- 1363200- 652800- 1766400],73.9118250482876,2126.96235327462,1063630000000,6.94902E-11 +220030-2-2,[2- 2- 0- 0- 3- 0- 2- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 0- 3- 0- 2- 2],[1363200- 1363200- 0- 0- 1804800- 0- 1478400- 1766400],72.9096660218277,2103.12260612319,1027130000000,7.09839E-11 +221230-3-0,[2- 2- 1- 2- 3- 0- 3- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 1- 2- 3- 0- 3- 0],[1363200- 1363200- 576000- 1363200- 1804800- 0- 2208000- 0],58.2884375590111,1697.69138927978,727308000000,8.01427E-11 +323210-1-0,[3- 2- 3- 2- 1- 0- 1- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[3- 2- 3- 2- 1- 0- 1- 0],[1804800- 1363200- 1804800- 1363200- 576000- 0- 652800- 0],32.3869731002721,983.335465202881,385836000000,8.39397E-11 +110321-0-0,[1- 1- 0- 3- 2- 1- 0- 0- 0- 0- 0- 0- 0],[576000- 576000- 0- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 1- 0- 3- 2- 1- 0- 0],[576000- 576000- 0- 1804800- 1363200- 576000- 0- 0],26.7121133566337,809.085756656435,207423000000,1.28781E-10 +102232-0-2,[1- 0- 2- 2- 3- 2- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 1363200- 1363200- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 2- 2- 3- 2- 0- 2],[576000- 0- 1363200- 1363200- 1804800- 1363200- 0- 1766400],65.8277383833758,1937.36044398195,988207000000,6.66133E-11 +231113-1-1,[2- 3- 1- 1- 1- 3- 1- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 576000- 576000- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 1- 1- 1- 3- 1- 1],[1363200- 1804800- 576000- 576000- 576000- 1804800- 652800- 806400],79.3851939063441,2275.0068767092,1194980000000,6.64322E-11 +121010-3-1,[1- 2- 1- 0- 1- 0- 3- 0- 0- 1- 0- 0- 0],[576000- 1363200- 576000- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 1- 0- 1- 0- 3- 1],[576000- 1363200- 576000- 0- 576000- 0- 2208000- 806400],70.2667978545078,2027.02256037143,898390000000,7.82141E-11 +311021-1-3,[3- 1- 1- 0- 2- 1- 1- 0- 0- 3- 0- 0- 0],[1804800- 576000- 576000- 0- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 1- 0- 2- 1- 1- 3],[1804800- 576000- 576000- 0- 1363200- 576000- 652800- 2400000],81.3667303591789,2322.68084468145,968465000000,8.40162E-11 +101123-0-3,[1- 0- 1- 1- 2- 3- 0- 0- 0- 3- 0- 0- 0],[576000- 0- 576000- 576000- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 1- 1- 2- 3- 0- 3],[576000- 0- 576000- 576000- 1363200- 1804800- 0- 2400000],83.5550372075793,2400.84690966198,1092070000000,7.65107E-11 +033033-1-1,[0- 3- 3- 0- 3- 3- 1- 0- 0- 1- 0- 0- 0],[0- 1804800- 1804800- 0- 1804800- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 3- 3- 0- 3- 3- 1- 1],[0- 1804800- 1804800- 0- 1804800- 1804800- 652800- 806400],65.4051401275013,1917.99172614488,930263000000,7.03082E-11 +323111-3-1,[3- 2- 3- 1- 1- 1- 3- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 1804800- 576000- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 3- 1- 1- 1- 3- 1],[1804800- 1363200- 1804800- 576000- 576000- 576000- 2208000- 806400],71.6230294037093,2102.50506161077,979622000000,7.31129E-11 +231332-2-3,[2- 3- 1- 3- 3- 2- 2- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 576000- 1804800- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 1- 3- 3- 2- 2- 3],[1363200- 1804800- 576000- 1804800- 1804800- 1363200- 1478400- 2400000],102.719273058889,2883.50279639025,1520280000000,6.7566E-11 +121113-1-3,[1- 2- 1- 1- 1- 3- 1- 0- 0- 3- 0- 0- 0],[576000- 1363200- 576000- 576000- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 1- 1- 1- 3- 1- 3],[576000- 1363200- 576000- 576000- 576000- 1804800- 652800- 2400000],91.8755525545871,2608.88945358657,1334240000000,6.88598E-11 +012010-2-1,[0- 1- 2- 0- 1- 0- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 1363200- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 2- 0- 1- 0- 2- 1],[0- 576000- 1363200- 0- 576000- 0- 1478400- 806400],54.7592147928153,1604.63609091677,743914000000,7.36096E-11 +213113-3-3,[2- 1- 3- 1- 1- 3- 3- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1804800- 576000- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 3- 1- 1- 3- 3- 3],[1363200- 576000- 1804800- 576000- 576000- 1804800- 2208000- 2400000],103.605542776513,2902.91249278236,1585470000000,6.53469E-11 +110030-0-1,[1- 1- 0- 0- 3- 0- 0- 0- 0- 1- 0- 0- 0],[576000- 576000- 0- 0- 1804800- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 0- 0- 3- 0- 0- 1],[576000- 576000- 0- 0- 1804800- 0- 0- 806400],34.2448289317877,1015.17835728213,340358000000,1.00614E-10 +113131-2-3,[1- 1- 3- 1- 3- 1- 2- 0- 0- 3- 0- 0- 0],[576000- 576000- 1804800- 576000- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[1- 1- 3- 1- 3- 1- 2- 3],[576000- 576000- 1804800- 576000- 1804800- 576000- 1478400- 2400000],96.2036865454932,2724.73766457732,1219380000000,7.88956E-11 +312331-2-2,[3- 1- 2- 3- 3- 1- 2- 0- 0- 2- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 2- 3- 3- 1- 2- 2],[1804800- 576000- 1363200- 1804800- 1804800- 576000- 1478400- 1766400],72.979973067832,2101.56054771559,1156550000000,6.31014E-11 +033333-0-2,[0- 3- 3- 3- 3- 3- 0- 0- 0- 2- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 3- 3- 3- 3- 0- 2],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 1766400],86.2801902841026,2479.16965493647,1160190000000,7.43673E-11 +013210-1-1,[0- 1- 3- 2- 1- 0- 1- 0- 0- 1- 0- 0- 0],[0- 576000- 1804800- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 3- 2- 1- 0- 1- 1],[0- 576000- 1804800- 1363200- 576000- 0- 652800- 806400],39.2183051603058,1161.33586277289,564900000000,6.94252E-11 +223033-0-0,[2- 2- 3- 0- 3- 3- 0- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 0- 3- 3- 0- 0],[1363200- 1363200- 1804800- 0- 1804800- 1804800- 0- 0],55.6549041743458,1645.80870241519,658846000000,8.44733E-11 +001200-2-2,[0- 0- 1- 2- 0- 0- 2- 0- 0- 2- 0- 0- 0],[0- 0- 576000- 1363200- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 1- 2- 0- 0- 2- 2],[0- 0- 576000- 1363200- 0- 0- 1478400- 1766400],70.0078582686629,2024.0442334743,972109000000,7.20165E-11 +013210-3-1,[0- 1- 3- 2- 1- 0- 3- 0- 0- 1- 0- 0- 0],[0- 576000- 1804800- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 3- 2- 1- 0- 3- 1],[0- 576000- 1804800- 1363200- 576000- 0- 2208000- 806400],79.1921814190437,2285.78262097144,940710000000,8.41834E-11 +300102-3-0,[3- 0- 0- 1- 0- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 0- 576000- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 0- 0- 1- 0- 2- 3- 0],[1804800- 0- 0- 576000- 0- 1363200- 2208000- 0],65.7590425822352,1919.52303565257,813702000000,8.08147E-11 +211331-0-2,[2- 1- 1- 3- 3- 1- 0- 0- 0- 2- 0- 0- 0],[1363200- 576000- 576000- 1804800- 1804800- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 1- 3- 3- 1- 0- 2],[1363200- 576000- 576000- 1804800- 1804800- 576000- 0- 1766400],56.046315848522,1640.68698477595,752107000000,7.45191E-11 +230023-3-0,[2- 3- 0- 0- 2- 3- 3- 0- 0- 0- 0- 0- 0],[1363200- 1804800- 0- 0- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 3- 0- 0- 2- 3- 3- 0],[1363200- 1804800- 0- 0- 1363200- 1804800- 2208000- 0],83.5387640803202,2402.35158644902,1051920000000,7.94155E-11 +212202-2-1,[2- 1- 2- 2- 0- 2- 2- 0- 0- 1- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 2- 2- 0- 2- 2- 1],[1363200- 576000- 1363200- 1363200- 0- 1363200- 1478400- 806400],70.0487654332769,2030.08258217072,1135860000000,6.16702E-11 +010023-0-1,[0- 1- 0- 0- 2- 3- 0- 0- 0- 1- 0- 0- 0],[0- 576000- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 0- 0- 2- 3- 0- 1],[0- 576000- 0- 0- 1363200- 1804800- 0- 806400],52.6346324100534,1553.81893903511,610977000000,8.61483E-11 +012112-2-0,[0- 1- 2- 1- 1- 2- 2- 0- 0- 0- 0- 0- 0],[0- 576000- 1363200- 576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0],[0- 1- 2- 1- 1- 2- 2- 0],[0- 576000- 1363200- 576000- 576000- 1363200- 1478400- 0],57.2873551037916,1681.14102018075,901273000000,6.35627E-11 +303122-3-1,[3- 0- 3- 1- 2- 2- 3- 0- 0- 1- 0- 0- 0],[1804800- 0- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 806400- 0- 0- 0],[3- 0- 3- 1- 2- 2- 3- 1],[1804800- 0- 1804800- 576000- 1363200- 1363200- 2208000- 806400],87.1615988005907,2488.12104456201,1230950000000,7.08084E-11 +332113-2-2,[3- 3- 2- 1- 1- 3- 2- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 1363200- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 2- 1- 1- 3- 2- 2],[1804800- 1804800- 1363200- 576000- 576000- 1804800- 1478400- 1766400],102.945501098208,2894.90136313869,1567090000000,6.56921E-11 +322231-2-1,[3- 2- 2- 2- 3- 1- 2- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 1363200- 1363200- 1804800- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 2- 2- 3- 1- 2- 1],[1804800- 1363200- 1363200- 1363200- 1804800- 576000- 1478400- 806400],58.6922029582491,1711.06751069328,880803000000,6.66349E-11 +103311-2-1,[1- 0- 3- 3- 1- 1- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 1804800- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 3- 3- 1- 1- 2- 1],[576000- 0- 1804800- 1804800- 576000- 576000- 1478400- 806400],57.3205072294823,1685.70755018442,847131000000,6.76643E-11 +100110-0-2,[1- 0- 0- 1- 1- 0- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 0- 576000- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 0- 1- 1- 0- 0- 2],[576000- 0- 0- 576000- 576000- 0- 0- 1766400],51.630790443296,1528.04381309481,603622000000,8.5535E-11 +212300-1-2,[2- 1- 2- 3- 0- 0- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1363200- 1804800- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 2- 3- 0- 0- 1- 2],[1363200- 576000- 1363200- 1804800- 0- 0- 652800- 1766400],62.9526389384084,1833.10211178646,841124000000,7.48435E-11 +000300-2-3,[0- 0- 0- 3- 0- 0- 2- 0- 0- 3- 0- 0- 0],[0- 0- 0- 1804800- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 0- 0- 3- 0- 0- 2- 3],[0- 0- 0- 1804800- 0- 0- 1478400- 2400000],90.2662722413003,2565.13281505654,998659000000,9.03875E-11 +030310-0-2,[0- 3- 0- 3- 1- 0- 0- 0- 0- 2- 0- 0- 0],[0- 1804800- 0- 1804800- 576000- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 0- 3- 1- 0- 0- 2],[0- 1804800- 0- 1804800- 576000- 0- 0- 1766400],52.6902862777189,1546.22117763269,611588000000,8.61532E-11 +331220-1-2,[3- 3- 1- 2- 2- 0- 1- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 1- 2- 2- 0- 1- 2],[1804800- 1804800- 576000- 1363200- 1363200- 0- 652800- 1766400],64.6001284096528,1877.82946371119,889727000000,7.26067E-11 +233212-0-1,[2- 3- 3- 2- 1- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 3- 2- 1- 2- 0- 1],[1363200- 1804800- 1804800- 1363200- 576000- 1363200- 0- 806400],52.1245882760953,1531.43386542136,816621000000,6.38296E-11 +310233-0-1,[3- 1- 0- 2- 3- 3- 0- 0- 0- 1- 0- 0- 0],[1804800- 576000- 0- 1363200- 1804800- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 1- 0- 2- 3- 3- 0- 1],[1804800- 576000- 0- 1363200- 1804800- 1804800- 0- 806400],65.8461101285994,1928.85601521739,885729000000,7.43411E-11 +031030-0-3,[0- 3- 1- 0- 3- 0- 0- 0- 0- 3- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 3- 1- 0- 3- 0- 0- 3],[0- 1804800- 576000- 0- 1804800- 0- 0- 2400000],67.1483257685157,1943.78292174215,698028000000,9.61972E-11 +031130-0-0,[0- 3- 1- 1- 3- 0- 0- 0- 0- 0- 0- 0- 0],[0- 1804800- 576000- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[0- 3- 1- 1- 3- 0- 0- 0],[0- 1804800- 576000- 576000- 1804800- 0- 0- 0],26.7184846004408,800.836388138237,163295000000,1.63621E-10 +101033-2-2,[1- 0- 1- 0- 3- 3- 2- 0- 0- 2- 0- 0- 0],[576000- 0- 576000- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 1- 0- 3- 3- 2- 2],[576000- 0- 576000- 0- 1804800- 1804800- 1478400- 1766400],99.1199512733933,2791.58802523125,1392390000000,7.11869E-11 +101312-2-1,[1- 0- 1- 3- 1- 2- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 576000- 1804800- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 1- 3- 1- 2- 2- 1],[576000- 0- 576000- 1804800- 576000- 1363200- 1478400- 806400],71.5812859564726,2061.58217530693,1122870000000,6.37485E-11 +212211-1-2,[2- 1- 2- 2- 1- 1- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 2- 2- 1- 1- 1- 2],[1363200- 576000- 1363200- 1363200- 576000- 576000- 652800- 1766400],66.3842172994299,1910.09080494196,918121000000,7.23044E-11 +103012-3-3,[1- 0- 3- 0- 1- 2- 3- 0- 0- 3- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 3- 0- 1- 2- 3- 3],[576000- 0- 1804800- 0- 576000- 1363200- 2208000- 2400000],90.7376428641244,2577.66725877269,1277590000000,7.10225E-11 +101300-3-3,[1- 0- 1- 3- 0- 0- 3- 0- 0- 3- 0- 0- 0],[576000- 0- 576000- 1804800- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 1- 3- 0- 0- 3- 3],[576000- 0- 576000- 1804800- 0- 0- 2208000- 2400000],75.3849371705881,2175.34856199377,928850000000,8.11594E-11 +220213-3-0,[2- 2- 0- 2- 1- 3- 3- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 0- 1363200- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 2- 0- 2- 1- 3- 3- 0],[1363200- 1363200- 0- 1363200- 576000- 1804800- 2208000- 0],69.1154876227722,2003.34695779363,1002220000000,6.89624E-11 +221013-2-1,[2- 2- 1- 0- 1- 3- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 576000- 0- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 1- 0- 1- 3- 2- 1],[1363200- 1363200- 576000- 0- 576000- 1804800- 1478400- 806400],79.5378105979585,2284.63404237756,1198670000000,6.63551E-11 +223020-1-0,[2- 2- 3- 0- 2- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 0- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 0- 2- 0- 1- 0],[1363200- 1363200- 1804800- 0- 1363200- 0- 652800- 0],32.3911267160719,972.157094387194,340610000000,9.50974E-11 +201133-0-3,[2- 0- 1- 1- 3- 3- 0- 0- 0- 3- 0- 0- 0],[1363200- 0- 576000- 576000- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 1- 1- 3- 3- 0- 3],[1363200- 0- 576000- 576000- 1804800- 1804800- 0- 2400000],86.4225033041374,2480.74125598788,1109700000000,7.78792E-11 +111202-3-1,[1- 1- 1- 2- 0- 2- 3- 0- 0- 1- 0- 0- 0],[576000- 576000- 576000- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 1- 2- 0- 2- 3- 1],[576000- 576000- 576000- 1363200- 0- 1363200- 2208000- 806400],77.6142915980758,2223.75481515976,1173790000000,6.61228E-11 +311111-2-3,[3- 1- 1- 1- 1- 1- 2- 0- 0- 3- 0- 0- 0],[1804800- 576000- 576000- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 1- 1- 1- 1- 2- 3],[1804800- 576000- 576000- 576000- 576000- 576000- 1478400- 2400000],80.579674343825,2304.09668122715,1148220000000,7.01779E-11 +212221-1-3,[2- 1- 2- 2- 2- 1- 1- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 2- 2- 2- 1- 1- 3],[1363200- 576000- 1363200- 1363200- 1363200- 576000- 652800- 2400000],71.2294033945321,2051.42727541455,942341000000,7.55877E-11 +121310-1-0,[1- 2- 1- 3- 1- 0- 1- 0- 0- 0- 0- 0- 0],[576000- 1363200- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 1- 3- 1- 0- 1- 0],[576000- 1363200- 576000- 1804800- 576000- 0- 652800- 0],33.5555977111976,1008.27016173545,384524000000,8.72653E-11 +133032-0-3,[1- 3- 3- 0- 3- 2- 0- 0- 0- 3- 0- 0- 0],[576000- 1804800- 1804800- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 3- 0- 3- 2- 0- 3],[576000- 1804800- 1804800- 0- 1804800- 1363200- 0- 2400000],78.8740772526803,2267.8568071095,1050630000000,7.50731E-11 +310020-0-3,[3- 1- 0- 0- 2- 0- 0- 0- 0- 3- 0- 0- 0],[1804800- 576000- 0- 0- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 0- 0- 2- 0- 0- 3],[1804800- 576000- 0- 0- 1363200- 0- 0- 2400000],63.3690752564047,1829.75861327323,677060000000,9.35945E-11 +022230-3-2,[0- 2- 2- 2- 3- 0- 3- 0- 0- 2- 0- 0- 0],[0- 1363200- 1363200- 1363200- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 2- 2- 3- 0- 3- 2],[0- 1363200- 1363200- 1363200- 1804800- 0- 2208000- 1766400],79.7127969833484,2290.15074169285,1097340000000,7.26418E-11 +222111-2-0,[2- 2- 2- 1- 1- 1- 2- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1363200- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[2- 2- 2- 1- 1- 1- 2- 0],[1363200- 1363200- 1363200- 576000- 576000- 576000- 1478400- 0],46.3133982052407,1387.10443358709,669726000000,6.91528E-11 +333201-1-1,[3- 3- 3- 2- 0- 1- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 1804800- 1363200- 0- 576000- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 3- 2- 0- 1- 1- 1],[1804800- 1804800- 1804800- 1363200- 0- 576000- 652800- 806400],41.1716606409971,1226.37855642177,602738000000,6.83077E-11 +333331-2-3,[3- 3- 3- 3- 3- 1- 2- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 1804800- 1804800- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 3- 3- 3- 1- 2- 3],[1804800- 1804800- 1804800- 1804800- 1804800- 576000- 1478400- 2400000],84.3646166621502,2404.68667801514,1166140000000,7.23452E-11 +223300-1-0,[2- 2- 3- 3- 0- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 3- 3- 0- 0- 1- 0],[1363200- 1363200- 1804800- 1804800- 0- 0- 652800- 0],32.1859127423429,970.219892749496,340653000000,9.4483E-11 +222021-0-0,[2- 2- 2- 0- 2- 1- 0- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 1363200- 0- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[2- 2- 2- 0- 2- 1- 0- 0],[1363200- 1363200- 1363200- 0- 1363200- 576000- 0- 0],28.6387646642511,860.523725575247,206752000000,1.38517E-10 +120302-1-1,[1- 2- 0- 3- 0- 2- 1- 0- 0- 1- 0- 0- 0],[576000- 1363200- 0- 1804800- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 0- 3- 0- 2- 1- 1],[576000- 1363200- 0- 1804800- 0- 1363200- 652800- 806400],50.3428670012474,1487.9371518763,788934000000,6.38113E-11 +031023-3-2,[0- 3- 1- 0- 2- 3- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 576000- 0- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 1- 0- 2- 3- 3- 2],[0- 1804800- 576000- 0- 1363200- 1804800- 2208000- 1766400],92.8249833568298,2613.63629230786,1309170000000,7.09037E-11 +022202-0-0,[0- 2- 2- 2- 0- 2- 0- 0- 0- 0- 0- 0- 0],[0- 1363200- 1363200- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[0- 2- 2- 2- 0- 2- 0- 0],[0- 1363200- 1363200- 1363200- 0- 1363200- 0- 0],35.8868812091206,1079.99658847123,390812000000,9.18265E-11 +031033-1-0,[0- 3- 1- 0- 3- 3- 1- 0- 0- 0- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 1- 0- 3- 3- 1- 0],[0- 1804800- 576000- 0- 1804800- 1804800- 652800- 0],57.5281823764323,1702.41208551111,703011000000,8.18311E-11 +002133-2-3,[0- 0- 2- 1- 3- 3- 2- 0- 0- 3- 0- 0- 0],[0- 0- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 0- 2- 1- 3- 3- 2- 3],[0- 0- 1363200- 576000- 1804800- 1804800- 1478400- 2400000],84.9404936835098,2431.03853475106,1227070000000,6.92222E-11 +312022-1-0,[3- 1- 2- 0- 2- 2- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 0- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 0- 2- 2- 1- 0],[1804800- 576000- 1363200- 0- 1363200- 1363200- 652800- 0],45.2436589650941,1346.10417223597,668619000000,6.76673E-11 +021113-1-2,[0- 2- 1- 1- 1- 3- 1- 0- 0- 2- 0- 0- 0],[0- 1363200- 576000- 576000- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 1- 1- 1- 3- 1- 2],[0- 1363200- 576000- 576000- 576000- 1804800- 652800- 1766400],82.6335756822963,2360.75601055871,1182760000000,6.9865E-11 +100000-0-2,[1- 0- 0- 0- 0- 0- 0- 0- 0- 2- 0- 0- 0],[576000- 0- 0- 0- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 0- 0- 0- 0- 0- 2],[576000- 0- 0- 0- 0- 0- 0- 1766400],50.7096930689716,1489.93256104484,510917000000,9.92523E-11 +121232-2-3,[1- 2- 1- 2- 3- 2- 2- 0- 0- 3- 0- 0- 0],[576000- 1363200- 576000- 1363200- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 1- 2- 3- 2- 2- 3],[576000- 1363200- 576000- 1363200- 1804800- 1363200- 1478400- 2400000],81.9077463484616,2344.15495135048,1296140000000,6.31936E-11 +303132-0-2,[3- 0- 3- 1- 3- 2- 0- 0- 0- 2- 0- 0- 0],[1804800- 0- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 3- 1- 3- 2- 0- 2],[1804800- 0- 1804800- 576000- 1804800- 1363200- 0- 1766400],69.5925937545452,2025.437864081,983338000000,7.07718E-11 +331303-2-1,[3- 3- 1- 3- 0- 3- 2- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 3- 0- 3- 2- 1],[1804800- 1804800- 576000- 1804800- 0- 1804800- 1478400- 806400],74.9625159265616,2166.24340849203,1135690000000,6.60061E-11 +303323-2-0,[3- 0- 3- 3- 2- 3- 2- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 3- 2- 3- 2- 0],[1804800- 0- 1804800- 1804800- 1363200- 1804800- 1478400- 0],59.6329403677947,1732.10454448323,904021000000,6.59641E-11 +210320-1-2,[2- 1- 0- 3- 2- 0- 1- 0- 0- 2- 0- 0- 0],[1363200- 576000- 0- 1804800- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 0- 3- 2- 0- 1- 2],[1363200- 576000- 0- 1804800- 1363200- 0- 652800- 1766400],64.768131410946,1886.11244657427,840461000000,7.70626E-11 +122220-2-3,[1- 2- 2- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0],[576000- 1363200- 1363200- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 2- 2- 2- 2- 0- 2- 3],[576000- 1363200- 1363200- 1363200- 1363200- 0- 1478400- 2400000],79.5738884766809,2279.01909909133,1118250000000,7.11593E-11 +231021-3-3,[2- 3- 1- 0- 2- 1- 3- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 576000- 0- 1363200- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 1- 0- 2- 1- 3- 3],[1363200- 1804800- 576000- 0- 1363200- 576000- 2208000- 2400000],77.6473695933206,2229.09359288995,1111960000000,6.98293E-11 +310302-1-2,[3- 1- 0- 3- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1804800- 576000- 0- 1804800- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 0- 3- 0- 2- 1- 2],[1804800- 576000- 0- 1804800- 0- 1363200- 652800- 1766400],75.6785562491319,2184.85849450219,1068880000000,7.08017E-11 +331220-0-1,[3- 3- 1- 2- 2- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 2- 2- 0- 0- 1],[1804800- 1804800- 576000- 1363200- 1363200- 0- 0- 806400],36.9581904467489,1104.71471486871,433988000000,8.51595E-11 +312321-1-0,[3- 1- 2- 3- 2- 1- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 1363200- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 3- 2- 1- 1- 0],[1804800- 576000- 1363200- 1804800- 1363200- 576000- 652800- 0],34.5550819751672,1050.42967499237,429951000000,8.03698E-11 +023300-2-1,[0- 2- 3- 3- 0- 0- 2- 0- 0- 1- 0- 0- 0],[0- 1363200- 1804800- 1804800- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 2- 3- 3- 0- 0- 2- 1],[0- 1363200- 1804800- 1804800- 0- 0- 1478400- 806400],55.1474477747145,1626.33930390567,755228000000,7.30209E-11 +331312-0-2,[3- 3- 1- 3- 1- 2- 0- 0- 0- 2- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[3- 3- 1- 3- 1- 2- 0- 2],[1804800- 1804800- 576000- 1804800- 576000- 1363200- 0- 1766400],72.3253528074643,2088.15508296704,1092930000000,6.61756E-11 +130333-0-0,[1- 3- 0- 3- 3- 3- 0- 0- 0- 0- 0- 0- 0],[576000- 1804800- 0- 1804800- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[1- 3- 0- 3- 3- 3- 0- 0],[576000- 1804800- 0- 1804800- 1804800- 1804800- 0- 0],57.5070787061249,1691.37314035169,659131000000,8.72468E-11 +310330-3-0,[3- 1- 0- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[3- 1- 0- 3- 3- 0- 3- 0],[1804800- 576000- 0- 1804800- 1804800- 0- 2208000- 0],51.7596710203295,1536.76814563853,647698000000,7.99133E-11 +203110-1-0,[2- 0- 3- 1- 1- 0- 1- 0- 0- 0- 0- 0- 0],[1363200- 0- 1804800- 576000- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[2- 0- 3- 1- 1- 0- 1- 0],[1363200- 0- 1804800- 576000- 576000- 0- 652800- 0],31.3934447994613,958.812485398494,341309000000,9.19795E-11 +002102-3-1,[0- 0- 2- 1- 0- 2- 3- 0- 0- 1- 0- 0- 0],[0- 0- 1363200- 576000- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 2- 1- 0- 2- 3- 1],[0- 0- 1363200- 576000- 0- 1363200- 2208000- 806400],76.0798450282377,2213.36217229475,1015320000000,7.49319E-11 +210032-2-1,[2- 1- 0- 0- 3- 2- 2- 0- 0- 1- 0- 0- 0],[1363200- 576000- 0- 0- 1804800- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 0- 0- 3- 2- 2- 1],[1363200- 576000- 0- 0- 1804800- 1363200- 1478400- 806400],67.2323504939425,1961.74043516125,1025160000000,6.55823E-11 +201120-0-2,[2- 0- 1- 1- 2- 0- 0- 0- 0- 2- 0- 0- 0],[1363200- 0- 576000- 576000- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 1- 1- 2- 0- 0- 2],[1363200- 0- 576000- 576000- 1363200- 0- 0- 1766400],54.4639625494408,1595.56845470602,659458000000,8.2589E-11 +233220-2-3,[2- 3- 3- 2- 2- 0- 2- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 1363200- 0- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 3- 2- 2- 0- 2- 3],[1363200- 1804800- 1804800- 1363200- 1363200- 0- 1478400- 2400000],83.7034659994173,2395.2012575701,1150120000000,7.2778E-11 +231002-0-2,[2- 3- 1- 0- 0- 2- 0- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 576000- 0- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 1- 0- 0- 2- 0- 2],[1363200- 1804800- 576000- 0- 0- 1363200- 0- 1766400],65.1406964237598,1890.11845638514,887229000000,7.34204E-11 +030330-3-0,[0- 3- 0- 3- 3- 0- 3- 0- 0- 0- 0- 0- 0],[0- 1804800- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[0- 3- 0- 3- 3- 0- 3- 0],[0- 1804800- 0- 1804800- 1804800- 0- 2208000- 0],50.8317348445158,1493.90192542791,596880000000,8.51624E-11 +133012-3-3,[1- 3- 3- 0- 1- 2- 3- 0- 0- 3- 0- 0- 0],[576000- 1804800- 1804800- 0- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 3- 0- 1- 2- 3- 3],[576000- 1804800- 1804800- 0- 576000- 1363200- 2208000- 2400000],95.6220428328611,2705.469220067,1401550000000,6.82259E-11 +321323-0-1,[3- 2- 1- 3- 2- 3- 0- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 576000- 1804800- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 1- 3- 2- 3- 0- 1],[1804800- 1363200- 576000- 1804800- 1363200- 1804800- 0- 806400],62.5618690617415,1824.05256420031,907657000000,6.89268E-11 +203332-2-2,[2- 0- 3- 3- 3- 2- 2- 0- 0- 2- 0- 0- 0],[1363200- 0- 1804800- 1804800- 1804800- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 3- 3- 3- 2- 2- 2],[1363200- 0- 1804800- 1804800- 1804800- 1363200- 1478400- 1766400],91.4259968153942,2597.60556727538,1406680000000,6.49942E-11 +020230-3-3,[0- 2- 0- 2- 3- 0- 3- 0- 0- 3- 0- 0- 0],[0- 1363200- 0- 1363200- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[0- 2- 0- 2- 3- 0- 3- 3],[0- 1363200- 0- 1363200- 1804800- 0- 2208000- 2400000],75.2120882234259,2174.51505890649,979660000000,7.67737E-11 +123032-0-0,[1- 2- 3- 0- 3- 2- 0- 0- 0- 0- 0- 0- 0],[576000- 1363200- 1804800- 0- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[1- 2- 3- 0- 3- 2- 0- 0],[576000- 1363200- 1804800- 0- 1804800- 1363200- 0- 0],39.9085203282099,1189.67688769923,490700000000,8.13298E-11 +112000-1-1,[1- 1- 2- 0- 0- 0- 1- 0- 0- 1- 0- 0- 0],[576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 2- 0- 0- 0- 1- 1],[576000- 576000- 1363200- 0- 0- 0- 652800- 806400],37.8409560260374,1143.71525504781,513470000000,7.36965E-11 +233223-1-3,[2- 3- 3- 2- 2- 3- 1- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 1804800- 1363200- 1363200- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 3- 2- 2- 3- 1- 3],[1363200- 1804800- 1804800- 1363200- 1363200- 1804800- 652800- 2400000],97.3671383278909,2744.37057995681,1365030000000,7.13297E-11 +201011-3-1,[2- 0- 1- 0- 1- 1- 3- 0- 0- 1- 0- 0- 0],[1363200- 0- 576000- 0- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 0- 1- 0- 1- 1- 3- 1],[1363200- 0- 576000- 0- 576000- 576000- 2208000- 806400],67.8209046191028,1972.82179667341,875436000000,7.7471E-11 +023023-2-2,[0- 2- 3- 0- 2- 3- 2- 0- 0- 2- 0- 0- 0],[0- 1363200- 1804800- 0- 1363200- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 2- 3- 0- 2- 3- 2- 2],[0- 1363200- 1804800- 0- 1363200- 1804800- 1478400- 1766400],94.0135655715655,2669.4366634626,1350220000000,6.96283E-11 +110203-3-1,[1- 1- 0- 2- 0- 3- 3- 0- 0- 1- 0- 0- 0],[576000- 576000- 0- 1363200- 0- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 1- 0- 2- 0- 3- 3- 1],[576000- 576000- 0- 1363200- 0- 1804800- 2208000- 806400],74.9403190398345,2164.65930622075,1087320000000,6.8922E-11 +123013-0-2,[1- 2- 3- 0- 1- 3- 0- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1804800- 0- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 3- 0- 1- 3- 0- 2],[576000- 1363200- 1804800- 0- 576000- 1804800- 0- 1766400],79.8767027494463,2271.85489367355,1075840000000,7.42459E-11 +030013-2-3,[0- 3- 0- 0- 1- 3- 2- 0- 0- 3- 0- 0- 0],[0- 1804800- 0- 0- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[0- 3- 0- 0- 1- 3- 2- 3],[0- 1804800- 0- 0- 576000- 1804800- 1478400- 2400000],89.776899533513,2560.24579498843,1243600000000,7.21911E-11 +211233-3-3,[2- 1- 1- 2- 3- 3- 3- 0- 0- 3- 0- 0- 0],[1363200- 576000- 576000- 1363200- 1804800- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 1- 2- 3- 3- 3- 3],[1363200- 576000- 576000- 1363200- 1804800- 1804800- 2208000- 2400000],99.8453916327805,2809.63237033538,1531480000000,6.51954E-11 +312133-1-0,[3- 1- 2- 1- 3- 3- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 576000- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 1- 3- 3- 1- 0],[1804800- 576000- 1363200- 576000- 1804800- 1804800- 652800- 0],71.0356581632197,2054.13542328703,975387000000,7.28282E-11 +103011-3-0,[1- 0- 3- 0- 1- 1- 3- 0- 0- 0- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 0- 3- 0- 1- 1- 3- 0],[576000- 0- 1804800- 0- 576000- 576000- 2208000- 0],57.5176175818552,1676.45729857417,677999000000,8.48344E-11 +331013-1-1,[3- 3- 1- 0- 1- 3- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 0- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 0- 1- 3- 1- 1],[1804800- 1804800- 576000- 0- 576000- 1804800- 652800- 806400],72.6506326213233,2104.20806449202,1069900000000,6.79041E-11 +232202-1-2,[2- 3- 2- 2- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 2- 2- 0- 2- 1- 2],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 652800- 1766400],78.5356318543746,2257.44999428932,1172800000000,6.69642E-11 +122020-2-1,[1- 2- 2- 0- 2- 0- 2- 0- 0- 1- 0- 0- 0],[576000- 1363200- 1363200- 0- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 2- 0- 2- 0- 2- 1],[576000- 1363200- 1363200- 0- 1363200- 0- 1478400- 806400],56.5693073110482,1671.00786549145,806364000000,7.01536E-11 +002101-2-2,[0- 0- 2- 1- 0- 1- 2- 0- 0- 2- 0- 0- 0],[0- 0- 1363200- 576000- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 2- 1- 0- 1- 2- 2],[0- 0- 1363200- 576000- 0- 576000- 1478400- 1766400],73.251940060295,2114.06166031722,1024450000000,7.15037E-11 +222311-2-1,[2- 2- 2- 3- 1- 1- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 1363200- 1804800- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 2- 3- 1- 1- 2- 1],[1363200- 1363200- 1363200- 1804800- 576000- 576000- 1478400- 806400],58.7321270588738,1698.79681728492,887255000000,6.61953E-11 +122222-1-1,[1- 2- 2- 2- 2- 2- 1- 0- 0- 1- 0- 0- 0],[576000- 1363200- 1363200- 1363200- 1363200- 1363200- 0- 0- 0- 806400- 0- 0- 0],[1- 2- 2- 2- 2- 2- 1- 1],[576000- 1363200- 1363200- 1363200- 1363200- 1363200- 652800- 806400],55.7442277111113,1628.13950567142,982802000000,5.67197E-11 +302310-0-3,[3- 0- 2- 3- 1- 0- 0- 0- 0- 3- 0- 0- 0],[1804800- 0- 1363200- 1804800- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 0- 2- 3- 1- 0- 0- 3],[1804800- 0- 1363200- 1804800- 576000- 0- 0- 2400000],73.6624240556838,2147.3759794993,778591000000,9.46099E-11 +100023-2-1,[1- 0- 0- 0- 2- 3- 2- 0- 0- 1- 0- 0- 0],[576000- 0- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 0- 0- 2- 3- 2- 1],[576000- 0- 0- 0- 1363200- 1804800- 1478400- 806400],75.6622282738419,2187.16362546056,1020690000000,7.41285E-11 +223101-2-3,[2- 2- 3- 1- 0- 1- 2- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 0- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 3- 1- 0- 1- 2- 3],[1363200- 1363200- 1804800- 576000- 0- 576000- 1478400- 2400000],93.4131245697236,2644.5999677679,1190120000000,7.84905E-11 +102113-3-1,[1- 0- 2- 1- 1- 3- 3- 0- 0- 1- 0- 0- 0],[576000- 0- 1363200- 576000- 576000- 1804800- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 2- 1- 1- 3- 3- 1],[576000- 0- 1363200- 576000- 576000- 1804800- 2208000- 806400],86.641218027865,2474.78413671184,1231560000000,7.03508E-11 +210110-3-1,[2- 1- 0- 1- 1- 0- 3- 0- 0- 1- 0- 0- 0],[1363200- 576000- 0- 576000- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[2- 1- 0- 1- 1- 0- 3- 1],[1363200- 576000- 0- 576000- 576000- 0- 2208000- 806400],69.8226407220911,2034.82765363686,879587000000,7.93812E-11 +133120-3-1,[1- 3- 3- 1- 2- 0- 3- 0- 0- 1- 0- 0- 0],[576000- 1804800- 1804800- 576000- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[1- 3- 3- 1- 2- 0- 3- 1],[576000- 1804800- 1804800- 576000- 1363200- 0- 2208000- 806400],72.5120663430038,2108.67013761083,946532000000,7.66082E-11 +220110-2-0,[2- 2- 0- 1- 1- 0- 2- 0- 0- 0- 0- 0- 0],[1363200- 1363200- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0- 0],[2- 2- 0- 1- 1- 0- 2- 0],[1363200- 1363200- 0- 576000- 576000- 0- 1478400- 0],42.6214864172658,1285.32355317926,576130000000,7.39789E-11 +000022-2-2,[0- 0- 0- 0- 2- 2- 2- 0- 0- 2- 0- 0- 0],[0- 0- 0- 0- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 0- 0- 2- 2- 2- 2],[0- 0- 0- 0- 1363200- 1363200- 1478400- 1766400],76.4971891147909,2215.38655995498,1092470000000,7.00222E-11 +331011-1-0,[3- 3- 1- 0- 1- 1- 1- 0- 0- 0- 0- 0- 0],[1804800- 1804800- 576000- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 3- 1- 0- 1- 1- 1- 0],[1804800- 1804800- 576000- 0- 576000- 576000- 652800- 0],33.4260041380091,1005.8580069447,385489000000,8.67107E-11 +313120-1-0,[3- 1- 3- 1- 2- 0- 1- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1804800- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[3- 1- 3- 1- 2- 0- 1- 0],[1804800- 576000- 1804800- 576000- 1363200- 0- 652800- 0],32.0011057465816,963.491545911804,385750000000,8.29581E-11 +033323-1-0,[0- 3- 3- 3- 2- 3- 1- 0- 0- 0- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 3- 3- 2- 3- 1- 0],[0- 1804800- 1804800- 1804800- 1363200- 1804800- 652800- 0],62.5543914533039,1833.75082428562,839388000000,7.45238E-11 +203132-1-0,[2- 0- 3- 1- 3- 2- 1- 0- 0- 0- 0- 0- 0],[1363200- 0- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[2- 0- 3- 1- 3- 2- 1- 0],[1363200- 0- 1804800- 576000- 1804800- 1363200- 652800- 0],44.0672441700072,1321.8612944609,668521000000,6.59175E-11 +011221-2-1,[0- 1- 1- 2- 2- 1- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 576000- 1363200- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 1- 2- 2- 1- 2- 1],[0- 576000- 576000- 1363200- 1363200- 576000- 1478400- 806400],54.9134481539672,1617.61572019261,819865000000,6.69786E-11 +310331-2-0,[3- 1- 0- 3- 3- 1- 2- 0- 0- 0- 0- 0- 0],[1804800- 576000- 0- 1804800- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 1- 0- 3- 3- 1- 2- 0],[1804800- 576000- 0- 1804800- 1804800- 576000- 1478400- 0],44.3851855395692,1323.94006135988,621300000000,7.14392E-11 +213313-3-2,[2- 1- 3- 3- 1- 3- 3- 0- 0- 2- 0- 0- 0],[1363200- 576000- 1804800- 1804800- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 3- 3- 1- 3- 3- 2],[1363200- 576000- 1804800- 1804800- 576000- 1804800- 2208000- 1766400],112.252246650916,3114.47717676695,1644520000000,6.82584E-11 +331213-0-3,[3- 3- 1- 2- 1- 3- 0- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 576000- 1804800- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 1- 2- 1- 3- 0- 3],[1804800- 1804800- 576000- 1363200- 576000- 1804800- 0- 2400000],89.0597439439495,2528.0126146004,1209910000000,7.36086E-11 +130100-1-3,[1- 3- 0- 1- 0- 0- 1- 0- 0- 3- 0- 0- 0],[576000- 1804800- 0- 576000- 0- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 0- 1- 0- 0- 1- 3],[576000- 1804800- 0- 576000- 0- 0- 652800- 2400000],77.6226342959476,2245.57120948842,870626000000,8.91573E-11 +120131-2-0,[1- 2- 0- 1- 3- 1- 2- 0- 0- 0- 0- 0- 0],[576000- 1363200- 0- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 2- 0- 1- 3- 1- 2- 0],[576000- 1363200- 0- 576000- 1804800- 576000- 1478400- 0],45.342545639677,1346.25144155264,622642000000,7.28228E-11 +022011-1-0,[0- 2- 2- 0- 1- 1- 1- 0- 0- 0- 0- 0- 0],[0- 1363200- 1363200- 0- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[0- 2- 2- 0- 1- 1- 1- 0],[0- 1363200- 1363200- 0- 576000- 576000- 652800- 0],31.3418994560934,936.950973087085,341243000000,9.18463E-11 +100221-3-1,[1- 0- 0- 2- 2- 1- 3- 0- 0- 1- 0- 0- 0],[576000- 0- 0- 1363200- 1363200- 576000- 0- 0- 0- 806400- 0- 0- 0],[1- 0- 0- 2- 2- 1- 3- 1],[576000- 0- 0- 1363200- 1363200- 576000- 2208000- 806400],80.0526614822044,2308.23710094083,929019000000,8.6169E-11 +020100-0-0,[0- 2- 0- 1- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 1363200- 0- 576000- 0- 0- 0- 0- 0- 0- 0- 0- 0],[0- 2- 0- 1- 0- 0- 0- 0],[0- 1363200- 0- 576000- 0- 0- 0- 0],23.5175293800191,721.862597545539,77422300000,3.03757E-10 +312302-3-0,[3- 1- 2- 3- 0- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 1363200- 1804800- 0- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 2- 3- 0- 2- 3- 0],[1804800- 576000- 1363200- 1804800- 0- 1363200- 2208000- 0],76.6951102201836,2208.61867204852,1047870000000,7.31914E-11 +323322-3-0,[3- 2- 3- 3- 2- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1804800- 1804800- 1363200- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 2- 3- 3- 2- 2- 3- 0],[1804800- 1363200- 1804800- 1804800- 1363200- 1363200- 2208000- 0],71.5079965571832,2086.15882477151,1103560000000,6.47976E-11 +220023-2-1,[2- 2- 0- 0- 2- 3- 2- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 0- 0- 1363200- 1804800- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 0- 0- 2- 3- 2- 1],[1363200- 1363200- 0- 0- 1363200- 1804800- 1478400- 806400],84.777250997072,2431.20599679527,1167130000000,7.26374E-11 +203300-2-2,[2- 0- 3- 3- 0- 0- 2- 0- 0- 2- 0- 0- 0],[1363200- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 0- 3- 3- 0- 0- 2- 2],[1363200- 0- 1804800- 1804800- 0- 0- 1478400- 1766400],72.5489714103032,2093.64289518736,1013330000000,7.15946E-11 +322032-2-0,[3- 2- 2- 0- 3- 2- 2- 0- 0- 0- 0- 0- 0],[1804800- 1363200- 1363200- 0- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 2- 2- 0- 3- 2- 2- 0],[1804800- 1363200- 1363200- 0- 1804800- 1363200- 1478400- 0],58.262720853322,1699.8367445321,904706000000,6.43996E-11 +220322-3-2,[2- 2- 0- 3- 2- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 1804800- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 3- 2- 2- 3- 2],[1363200- 1363200- 0- 1804800- 1363200- 1363200- 2208000- 1766400],98.0625210176743,2763.71855167368,1450630000000,6.76E-11 +000111-3-0,[0- 0- 0- 1- 1- 1- 3- 0- 0- 0- 0- 0- 0],[0- 0- 0- 576000- 576000- 576000- 0- 0- 0- 0- 0- 0- 0],[0- 0- 0- 1- 1- 1- 3- 0],[0- 0- 0- 576000- 576000- 576000- 2208000- 0],49.4404352153497,1461.27237567664,595040000000,8.30876E-11 +312001-2-2,[3- 1- 2- 0- 0- 1- 2- 0- 0- 2- 0- 0- 0],[1804800- 576000- 1363200- 0- 0- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 2- 0- 0- 1- 2- 2],[1804800- 576000- 1363200- 0- 0- 576000- 1478400- 1766400],74.8645087621987,2151.39161574162,1075050000000,6.96382E-11 +010120-2-1,[0- 1- 0- 1- 2- 0- 2- 0- 0- 1- 0- 0- 0],[0- 576000- 0- 576000- 1363200- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 1- 0- 1- 2- 0- 2- 1],[0- 576000- 0- 576000- 1363200- 0- 1478400- 806400],55.3938120911074,1629.50810378061,747522000000,7.41033E-11 +331232-0-0,[3- 3- 1- 2- 3- 2- 0- 0- 0- 0- 0- 0- 0],[1804800- 1804800- 576000- 1363200- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 3- 1- 2- 3- 2- 0- 0],[1804800- 1804800- 576000- 1363200- 1804800- 1363200- 0- 0],41.4528641815209,1242.26425895776,591275000000,7.01076E-11 +300313-3-2,[3- 0- 0- 3- 1- 3- 3- 0- 0- 2- 0- 0- 0],[1804800- 0- 0- 1804800- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 0- 0- 3- 1- 3- 3- 2],[1804800- 0- 0- 1804800- 576000- 1804800- 2208000- 1766400],100.311184339352,2831.19713307578,1386980000000,7.23235E-11 +212212-0-3,[2- 1- 2- 2- 1- 2- 0- 0- 0- 3- 0- 0- 0],[1363200- 576000- 1363200- 1363200- 576000- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[2- 1- 2- 2- 1- 2- 0- 3],[1363200- 576000- 1363200- 1363200- 576000- 1363200- 0- 2400000],77.6487009668172,2228.22857493385,1127120000000,6.88912E-11 +000200-2-1,[0- 0- 0- 2- 0- 0- 2- 0- 0- 1- 0- 0- 0],[0- 0- 0- 1363200- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 0- 0- 2- 0- 0- 2- 1],[0- 0- 0- 1363200- 0- 0- 1478400- 806400],53.677951058628,1581.42701475316,645068000000,8.32129E-11 +331300-1-1,[3- 3- 1- 3- 0- 0- 1- 0- 0- 1- 0- 0- 0],[1804800- 1804800- 576000- 1804800- 0- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 3- 1- 3- 0- 0- 1- 1],[1804800- 1804800- 576000- 1804800- 0- 0- 652800- 806400],39.9195324609141,1191.49828374389,562703000000,7.09425E-11 +320030-0-1,[3- 2- 0- 0- 3- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 1363200- 0- 0- 1804800- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 2- 0- 0- 3- 0- 0- 1],[1804800- 1363200- 0- 0- 1804800- 0- 0- 806400],33.4145827544387,999.81415357544,341795000000,9.77621E-11 +211113-2-0,[2- 1- 1- 1- 1- 3- 2- 0- 0- 0- 0- 0- 0],[1363200- 576000- 576000- 576000- 576000- 1804800- 0- 0- 0- 0- 0- 0- 0],[2- 1- 1- 1- 1- 3- 2- 0],[1363200- 576000- 576000- 576000- 576000- 1804800- 1478400- 0],83.103378159748,2393.38185596364,1195420000000,6.95181E-11 +230010-0-3,[2- 3- 0- 0- 1- 0- 0- 0- 0- 3- 0- 0- 0],[1363200- 1804800- 0- 0- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[2- 3- 0- 0- 1- 0- 0- 3],[1363200- 1804800- 0- 0- 576000- 0- 0- 2400000],62.4324044343125,1825.30556607721,676237000000,9.23233E-11 +110030-1-2,[1- 1- 0- 0- 3- 0- 1- 0- 0- 2- 0- 0- 0],[576000- 576000- 0- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 1- 0- 0- 3- 0- 1- 2],[576000- 576000- 0- 0- 1804800- 0- 652800- 1766400],62.4755025899128,1812.43557287185,792459000000,7.88375E-11 +311112-3-0,[3- 1- 1- 1- 1- 2- 3- 0- 0- 0- 0- 0- 0],[1804800- 576000- 576000- 576000- 576000- 1363200- 0- 0- 0- 0- 0- 0- 0],[3- 1- 1- 1- 1- 2- 3- 0],[1804800- 576000- 576000- 576000- 576000- 1363200- 2208000- 0],68.8022036229322,2008.42150009888,1089440000000,6.31537E-11 +211312-3-2,[2- 1- 1- 3- 1- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 576000- 576000- 1804800- 576000- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 1- 1- 3- 1- 2- 3- 2],[1363200- 576000- 576000- 1804800- 576000- 1363200- 2208000- 1766400],95.9288937521245,2702.35223678427,1496100000000,6.41193E-11 +230102-0-1,[2- 3- 0- 1- 0- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 0- 576000- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 0- 1- 0- 2- 0- 1],[1363200- 1804800- 0- 576000- 0- 1363200- 0- 806400],43.9976841972795,1326.19698498,616183000000,7.14036E-11 +231030-3-2,[2- 3- 1- 0- 3- 0- 3- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 1- 0- 3- 0- 3- 2],[1363200- 1804800- 576000- 0- 1804800- 0- 2208000- 1766400],82.3838251863148,2357.57116283977,1115930000000,7.38253E-11 +232011-1-1,[2- 3- 2- 0- 1- 1- 1- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1363200- 0- 576000- 576000- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 2- 0- 1- 1- 1- 1],[1363200- 1804800- 1363200- 0- 576000- 576000- 652800- 806400],41.794008855435,1238.95092696265,609225000000,6.86019E-11 +303320-3-0,[3- 0- 3- 3- 2- 0- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 1804800- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 3- 2- 0- 3- 0],[1804800- 0- 1804800- 1804800- 1363200- 0- 2208000- 0],55.1955872410731,1609.20385279534,666775000000,8.27799E-11 +130120-1-2,[1- 3- 0- 1- 2- 0- 1- 0- 0- 2- 0- 0- 0],[576000- 1804800- 0- 576000- 1363200- 0- 0- 0- 0- 1766400- 0- 0- 0],[1- 3- 0- 1- 2- 0- 1- 2],[576000- 1804800- 0- 576000- 1363200- 0- 652800- 1766400],63.3971718133292,1848.82938487331,841747000000,7.53162E-11 +310221-1-2,[3- 1- 0- 2- 2- 1- 1- 0- 0- 2- 0- 0- 0],[1804800- 576000- 0- 1363200- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[3- 1- 0- 2- 2- 1- 1- 2],[1804800- 576000- 0- 1363200- 1363200- 576000- 652800- 1766400],65.5557580165811,1906.30074367027,890469000000,7.36194E-11 +223111-1-3,[2- 2- 3- 1- 1- 1- 1- 0- 0- 3- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 576000- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 2- 3- 1- 1- 1- 1- 3],[1363200- 1363200- 1804800- 576000- 576000- 576000- 652800- 2400000],70.9803740450458,2036.14664936197,938774000000,7.56097E-11 +132020-2-0,[1- 3- 2- 0- 2- 0- 2- 0- 0- 0- 0- 0- 0],[576000- 1804800- 1363200- 0- 1363200- 0- 0- 0- 0- 0- 0- 0- 0],[1- 3- 2- 0- 2- 0- 2- 0],[576000- 1804800- 1363200- 0- 1363200- 0- 1478400- 0],45.3072604814401,1331.87814430662,575478000000,7.87298E-11 +221303-0-2,[2- 2- 1- 3- 0- 3- 0- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 576000- 1804800- 0- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 1- 3- 0- 3- 0- 2],[1363200- 1363200- 576000- 1804800- 0- 1804800- 0- 1766400],75.8036384393518,2191.79500900324,1038170000000,7.30166E-11 +300010-0-1,[3- 0- 0- 0- 1- 0- 0- 0- 0- 1- 0- 0- 0],[1804800- 0- 0- 0- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[3- 0- 0- 0- 1- 0- 0- 1],[1804800- 0- 0- 0- 576000- 0- 0- 806400],32.1912867561494,975.724684697627,296221000000,1.08673E-10 +223132-3-1,[2- 2- 3- 1- 3- 2- 3- 0- 0- 1- 0- 0- 0],[1363200- 1363200- 1804800- 576000- 1804800- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 2- 3- 1- 3- 2- 3- 1],[1363200- 1363200- 1804800- 576000- 1804800- 1363200- 2208000- 806400],79.3720923830505,2267.3604267642,1253340000000,6.33285E-11 +232302-1-2,[2- 3- 2- 3- 0- 2- 1- 0- 0- 2- 0- 0- 0],[1363200- 1804800- 1363200- 1804800- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 3- 2- 3- 0- 2- 1- 2],[1363200- 1804800- 1363200- 1804800- 0- 1363200- 652800- 1766400],75.2161891555095,2161.20447880785,1098030000000,6.8501E-11 +203231-0-3,[2- 0- 3- 2- 3- 1- 0- 0- 0- 3- 0- 0- 0],[1363200- 0- 1804800- 1363200- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[2- 0- 3- 2- 3- 1- 0- 3],[1363200- 0- 1804800- 1363200- 1804800- 576000- 0- 2400000],58.0655432702143,1703.88744116384,702004000000,8.2714E-11 +220021-0-2,[2- 2- 0- 0- 2- 1- 0- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 0- 0- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 0- 0- 2- 1- 0- 2],[1363200- 1363200- 0- 0- 1363200- 576000- 0- 1766400],56.004272107212,1630.6115263799,659934000000,8.48634E-11 +103011-1-2,[1- 0- 3- 0- 1- 1- 1- 0- 0- 2- 0- 0- 0],[576000- 0- 1804800- 0- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[1- 0- 3- 0- 1- 1- 1- 2],[576000- 0- 1804800- 0- 576000- 576000- 652800- 1766400],64.7867353921133,1887.8542751839,836960000000,7.74072E-11 +003021-2-2,[0- 0- 3- 0- 2- 1- 2- 0- 0- 2- 0- 0- 0],[0- 0- 1804800- 0- 1363200- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 0- 3- 0- 2- 1- 2- 2],[0- 0- 1804800- 0- 1363200- 576000- 1478400- 1766400],73.393325791739,2108.3343497435,995211000000,7.37465E-11 +031210-2-1,[0- 3- 1- 2- 1- 0- 2- 0- 0- 1- 0- 0- 0],[0- 1804800- 576000- 1363200- 576000- 0- 0- 0- 0- 806400- 0- 0- 0],[0- 3- 1- 2- 1- 0- 2- 1],[0- 1804800- 576000- 1363200- 576000- 0- 1478400- 806400],57.8940253640561,1708.0342621472,795670000000,7.27614E-11 +122013-2-2,[1- 2- 2- 0- 1- 3- 2- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1363200- 0- 576000- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 2- 0- 1- 3- 2- 2],[576000- 1363200- 1363200- 0- 576000- 1804800- 1478400- 1766400],75.3926735584727,2160.59171856054,1154450000000,6.53061E-11 +130103-0-0,[1- 3- 0- 1- 0- 3- 0- 0- 0- 0- 0- 0- 0],[576000- 1804800- 0- 576000- 0- 1804800- 0- 0- 0- 0- 0- 0- 0],[1- 3- 0- 1- 0- 3- 0- 0],[576000- 1804800- 0- 576000- 0- 1804800- 0- 0],38.6438793260726,1149.5860113844,410896000000,9.40478E-11 +031030-3-2,[0- 3- 1- 0- 3- 0- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 576000- 0- 1804800- 0- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 1- 0- 3- 0- 3- 2],[0- 1804800- 576000- 0- 1804800- 0- 2208000- 1766400],16.3307947163033,503.625203352677,116019000000,1.4076E-10 +123230-1-0,[1- 2- 3- 2- 3- 0- 1- 0- 0- 0- 0- 0- 0],[576000- 1363200- 1804800- 1363200- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 3- 2- 3- 0- 1- 0],[576000- 1363200- 1804800- 1363200- 1804800- 0- 652800- 0],13.4893048354332,413.744361149908,75662100000,1.78284E-10 +232202-0-1,[2- 3- 2- 2- 0- 2- 0- 0- 0- 1- 0- 0- 0],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 0- 0- 806400- 0- 0- 0],[2- 3- 2- 2- 0- 2- 0- 1],[1363200- 1804800- 1363200- 1363200- 0- 1363200- 0- 806400],18.3191369059882,558.347775598573,188126000000,9.7377E-11 +310231-3-3,[3- 1- 0- 2- 3- 1- 3- 0- 0- 3- 0- 0- 0],[1804800- 576000- 0- 1363200- 1804800- 576000- 0- 0- 0- 2400000- 0- 0- 0],[3- 1- 0- 2- 3- 1- 3- 3],[1804800- 576000- 0- 1363200- 1804800- 576000- 2208000- 2400000],14.0838858431668,434.231525898343,75472200000,1.8661E-10 +332330-2-3,[3- 3- 2- 3- 3- 0- 2- 0- 0- 3- 0- 0- 0],[1804800- 1804800- 1363200- 1804800- 1804800- 0- 0- 0- 0- 2400000- 0- 0- 0],[3- 3- 2- 3- 3- 0- 2- 3],[1804800- 1804800- 1363200- 1804800- 1804800- 0- 1478400- 2400000],13.9697963651223,419.523224360775,75619700000,1.84738E-10 +133131-2-0,[1- 3- 3- 1- 3- 1- 2- 0- 0- 0- 0- 0- 0],[576000- 1804800- 1804800- 576000- 1804800- 576000- 0- 0- 0- 0- 0- 0- 0],[1- 3- 3- 1- 3- 1- 2- 0],[576000- 1804800- 1804800- 576000- 1804800- 576000- 1478400- 0],13.7189335182749,408.285878833296,75791800000,1.81008E-10 +102010-2-3,[1- 0- 2- 0- 1- 0- 2- 0- 0- 3- 0- 0- 0],[576000- 0- 1363200- 0- 576000- 0- 0- 0- 0- 2400000- 0- 0- 0],[1- 0- 2- 0- 1- 0- 2- 3],[576000- 0- 1363200- 0- 576000- 0- 1478400- 2400000],12.9248547023353,396.064970804333,76037200000,1.69981E-10 +322333-2-2,[3- 2- 2- 3- 3- 3- 2- 0- 0- 2- 0- 0- 0],[1804800- 1363200- 1363200- 1804800- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[3- 2- 2- 3- 3- 3- 2- 2],[1804800- 1363200- 1363200- 1804800- 1804800- 1804800- 1478400- 1766400],25.3623210355619,760.418445407865,250600000000,1.01206E-10 +131002-2-3,[1- 3- 1- 0- 0- 2- 2- 0- 0- 3- 0- 0- 0],[576000- 1804800- 576000- 0- 0- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[1- 3- 1- 0- 0- 2- 2- 3],[576000- 1804800- 576000- 0- 0- 1363200- 1478400- 2400000],18.1188341516786,550.856369056302,188485000000,9.61288E-11 +321032-1-3,[3- 2- 1- 0- 3- 2- 1- 0- 0- 3- 0- 0- 0],[1804800- 1363200- 576000- 0- 1804800- 1363200- 0- 0- 0- 2400000- 0- 0- 0],[3- 2- 1- 0- 3- 2- 1- 3],[1804800- 1363200- 576000- 0- 1804800- 1363200- 652800- 2400000],17.9776183946517,547.335510357609,188372000000,9.54368E-11 +032033-1-2,[0- 3- 2- 0- 3- 3- 1- 0- 0- 2- 0- 0- 0],[0- 1804800- 1363200- 0- 1804800- 1804800- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 2- 0- 3- 3- 1- 2],[0- 1804800- 1363200- 0- 1804800- 1804800- 652800- 1766400],24.5924899083227,745.507520977074,252710000000,9.73151E-11 +030211-3-2,[0- 3- 0- 2- 1- 1- 3- 0- 0- 2- 0- 0- 0],[0- 1804800- 0- 1363200- 576000- 576000- 0- 0- 0- 1766400- 0- 0- 0],[0- 3- 0- 2- 1- 1- 3- 2],[0- 1804800- 0- 1363200- 576000- 576000- 2208000- 1766400],13.6504873016518,422.496232212593,75350800000,1.81159E-10 +223202-3-2,[2- 2- 3- 2- 0- 2- 3- 0- 0- 2- 0- 0- 0],[1363200- 1363200- 1804800- 1363200- 0- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[2- 2- 3- 2- 0- 2- 3- 2],[1363200- 1363200- 1804800- 1363200- 0- 1363200- 2208000- 1766400],17.984386490349,539.530074808529,188258000000,9.55305E-11 +120330-0-0,[1- 2- 0- 3- 3- 0- 0- 0- 0- 0- 0- 0- 0],[576000- 1363200- 0- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0- 0],[1- 2- 0- 3- 3- 0- 0- 0],[576000- 1363200- 0- 1804800- 1804800- 0- 0- 0],13.8323700917135,411.984218836576,76579500000,1.80628E-10 +123122-1-2,[1- 2- 3- 1- 2- 2- 1- 0- 0- 2- 0- 0- 0],[576000- 1363200- 1804800- 576000- 1363200- 1363200- 0- 0- 0- 1766400- 0- 0- 0],[1- 2- 3- 1- 2- 2- 1- 2],[576000- 1363200- 1804800- 576000- 1363200- 1363200- 652800- 1766400],17.8171709875973,544.461115773839,187451000000,9.50498E-11 +021212-1-1,[0- 2- 1- 2- 1- 2- 1- 0- 0- 1- 0- 0- 0],[0- 1363200- 576000- 1363200- 576000- 1363200- 0- 0- 0- 806400- 0- 0- 0],[0- 2- 1- 2- 1- 2- 1- 1],[0- 1363200- 576000- 1363200- 576000- 1363200- 652800- 806400],17.8136328789872,547.225988212559,188320000000,9.45924E-11 +303001-3-0,[3- 0- 3- 0- 0- 1- 3- 0- 0- 0- 0- 0- 0],[1804800- 0- 1804800- 0- 0- 576000- 0- 0- 0- 0- 0- 0- 0],[3- 0- 3- 0- 0- 1- 3- 0],[1804800- 0- 1804800- 0- 0- 576000- 2208000- 0],14.4399767950293,438.976034527161,76577300000,1.88567E-10 +033333-0-0,[0- 3- 3- 3- 3- 3- 0- 0- 0- 0- 0- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0- 0- 0- 0- 0- 0],[0- 3- 3- 3- 3- 3- 0- 0],[0- 1804800- 1804800- 1804800- 1804800- 1804800- 0- 0],24.0280687781385,730.411225048072,252880000000,9.50177E-11 diff --git a/experiment_log_file.txt b/experiment_log_file.txt new file mode 100755 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391